|  |  |  | 
|---|
|  |  |  | "hauptmenue.json", | 
|---|
|  |  |  | "data/tpl/app-menu.txt", | 
|---|
|  |  |  | ".west", | 
|---|
|  |  |  | "8em"); | 
|---|
|  |  |  | "6em"); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | document.querySelector('.hamburger').addEventListener('click', function (e) { | 
|---|
|  |  |  | self.menue_umschalten(); | 
|---|
|  |  |  | 
|---|
|  |  |  | self.addEvtListener('#mi-player', 'click', self.abspieler_liste); | 
|---|
|  |  |  | self.addEvtListener('#mi-listen', 'click', self.abspielliste_liste); | 
|---|
|  |  |  | self.addEvtListener('#mi-list', 'click', self.titel_liste); | 
|---|
|  |  |  | self.addEvtListener('#mi-live', 'click', self.livestream_liste); | 
|---|
|  |  |  | self.addEvtListener('#mi-devices', 'click', self.geraet_liste); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | self.fusszeile_umschalten(); | 
|---|
|  |  |  | self.seitenleiste_umschalten(); | 
|---|
|  |  |  | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /* ---------------- Entitaets-Listen ----------------- */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.livestream_selection = function() { | 
|---|
|  |  |  | document.querySelector('.breadcrumb-behaelter').textContent = ''; | 
|---|
|  |  |  | document.querySelector('.bereich-name').textContent = 'Livestream-Auswahl'; | 
|---|
|  |  |  | self.http_get('../api/store/Livestream/liste/', function(responseText) { | 
|---|
|  |  |  | self.vorlage_laden_und_fuellen("data/tpl/livestream_liste.txt", JSON.parse(responseText), function (html) { | 
|---|
|  |  |  | document.querySelector(".zentraler-inhalt").innerHTML = html; | 
|---|
|  |  |  | self.addEvtListener('.entity-eintrag', 'click', function (event) { | 
|---|
|  |  |  | var t = event.target; | 
|---|
|  |  |  | self.removeClassMulti('selected'); | 
|---|
|  |  |  | t.classList.add('selected'); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // auf der obersten Ebene werden die Kataloge angezeigt, | 
|---|
|  |  |  | // darunter der Inhalt des aktuellen Pfades | 
|---|
|  |  |  | 
|---|
|  |  |  | self.addEvtListener('.entity-eintrag', 'click', function (event) { | 
|---|
|  |  |  | var t = event.target; | 
|---|
|  |  |  | self.katName = t.textContent; | 
|---|
|  |  |  | self.http_get('../api/store/Ablageort/' + t.textContent, function(responseText) { | 
|---|
|  |  |  | var ablageort = JSON.parse(responseText); | 
|---|
|  |  |  | self.ortPfad = ablageort.url; | 
|---|
|  |  |  | self.media_liste(); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | if(self.katName !== "Livestreams") { | 
|---|
|  |  |  | self.http_get('../api/store/Ablageort/' + t.textContent, function(responseText) { | 
|---|
|  |  |  | var ablageort = JSON.parse(responseText); | 
|---|
|  |  |  | self.ortPfad = ablageort.url; | 
|---|
|  |  |  | self.media_liste(); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | self.livestream_selection(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.geraet_schalt_liste = function() { | 
|---|
|  |  |  | self.entitaet_liste('Geräte schalten','../api/store/Geraet/liste/', | 
|---|
|  |  |  | "data/tpl/geraet_schalt_liste.txt", '../api/store/Geraet/', | 
|---|
|  |  |  | "self.form_geraet_status", function(responseText) { | 
|---|
|  |  |  | var geraet = JSON.parse(responseText); | 
|---|
|  |  |  | self.geraet_status_form(geraet); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.geraet_liste = function() { | 
|---|
|  |  |  | self.entitaet_liste('Geräte','../api/store/Geraet/liste/', | 
|---|
|  |  |  | "data/tpl/geraet_liste.txt", '../api/store/Geraet/', | 
|---|
|  |  |  | "self.geraet_form", function(responseText) { | 
|---|
|  |  |  | var geraet = JSON.parse(responseText); | 
|---|
|  |  |  | self.geraet_form(geraet); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.ablageort_liste = function() { | 
|---|
|  |  |  | self.entitaet_liste('Kataloge','../api/store/Ablageort/liste/', | 
|---|
|  |  |  | "data/tpl/ablageort_liste.txt", '../api/store/Ablageort/', | 
|---|
|  |  |  | 
|---|
|  |  |  | "self.abspieler_form", function(responseText) { | 
|---|
|  |  |  | var abspieler = JSON.parse(responseText); | 
|---|
|  |  |  | self.abspieler_form(abspieler); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.livestream_liste = function() { | 
|---|
|  |  |  | self.entitaet_liste('Livestream','../api/store/Livestream/liste/', | 
|---|
|  |  |  | "data/tpl/livestream_liste.txt", '../api/store/Livestream/', | 
|---|
|  |  |  | "self.livestream_form", function(responseText) { | 
|---|
|  |  |  | var livestream = JSON.parse(responseText); | 
|---|
|  |  |  | self.livestream_form(livestream); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | '#abspieler-name', function() { | 
|---|
|  |  |  | self.abspieler_auswahl_fuellen(); | 
|---|
|  |  |  | self.abspieler_liste(); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.livestream_form = function(ls) { | 
|---|
|  |  |  | self.entitaet_form('Livestream', ls, ls.name, | 
|---|
|  |  |  | "data/tpl/form_livestream.txt", '../api/store/Livestream/', | 
|---|
|  |  |  | '#livestream-name', function() { | 
|---|
|  |  |  | self.livestream_liste(); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.geraet_form = function(ge) { | 
|---|
|  |  |  | self.entitaet_form('Gerät', ge, ge.name, | 
|---|
|  |  |  | "data/tpl/form_geraet.txt", '../api/store/Geraet/', | 
|---|
|  |  |  | '#geraet-name', function() { | 
|---|
|  |  |  | self.geraet_liste(); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.geraet_status_form = function(ge) { | 
|---|
|  |  |  | self.entitaet_form('Gerät', ge, ge.name, | 
|---|
|  |  |  | "data/tpl/form_geraet_status.txt", '../api/store/Geraet/', | 
|---|
|  |  |  | '#geraet-name', function() { | 
|---|
|  |  |  | self.geraet_schalt_liste(); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | this.play = function() { | 
|---|
|  |  |  | var bereichName = document.querySelector('.bereich-name').textContent; | 
|---|
|  |  |  | if(bereichName === '') { | 
|---|
|  |  |  | var elem = document.querySelector(".selected"); | 
|---|
|  |  |  | var titel = self.titelErmitteln(document.querySelector(".selected")); | 
|---|
|  |  |  | //var titelName = elem.textContent; | 
|---|
|  |  |  | /* | 
|---|
|  |  |  | var titelName = elem.attributes.dateiName.nodeValue; | 
|---|
|  |  |  | var album = elem.attributes.album.nodeValue; | 
|---|
|  |  |  | var interpret = elem.attributes.interpret.nodeValue; | 
|---|
|  |  |  | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | titel = new Titel(titelName, self.mediaPfad + '/', self.ortPfad, interpret, anzName, album); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | var player_sel = document.querySelector('#abspieler'); | 
|---|
|  |  |  | var playername = player_sel.value; | 
|---|
|  |  |  | /* | 
|---|
|  |  |  | self.http_put('../api/alist/' + plname, JSON.stringify(titel), function(responseText) { | 
|---|
|  |  |  | //self.meldung_mit_timeout(responseText, 1500); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | var playername = document.querySelector('#abspieler').value; | 
|---|
|  |  |  | /* | 
|---|
|  |  |  | HTTP POST /mz/api/strg/abspieler/play mit Titel im Body | 
|---|
|  |  |  |  | 
|---|
|  |  |  | HTTP GET /mz/api/strg/abspieler/play/[url] | 
|---|
|  |  |  |  | 
|---|
|  |  |  | url: /media/test/M/Muenchener-Freiheit/01-Ohne-Dich-schlaf-ich-heut-Nacht-nicht-ein.mp3 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /mz/api/strg/abspieler/play/media/test/M/Muenchener-Freiheit/01-Ohne-Dich-schlaf-ich-heut-Nacht-nicht-ein.mp3 | 
|---|
|  |  |  | url: /media/test/M/Muenchener-Freiheit/01-Ohne-Dich-schlaf-ich-heut-Nacht-nicht-ein.mp3 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | console.log('plname: ' + playername + ' url: ' + titel.katalogUrl + titel.pfad + titel.name); | 
|---|
|  |  |  | self.http_get('../api/strg/' + playername + titel.katalogUrl + titel.pfad + titel.name, function(responseText) { | 
|---|
|  |  |  | self.http_post('../api/strg/' + playername + '/titel', JSON.stringify(titel), function(responseText) { | 
|---|
|  |  |  | self.meldung_mit_timeout(responseText, 1500); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } else if(bereichName === 'Livestream-Auswahl') { | 
|---|
|  |  |  | var streamName = document.querySelector(".selected").textContent; | 
|---|
|  |  |  | var playername = document.querySelector('#abspieler').value; | 
|---|
|  |  |  | var stream = new Livestream(streamName, '-'); | 
|---|
|  |  |  | self.http_post('../api/strg/' + playername + '/stream', JSON.stringify(stream), function(responseText) { | 
|---|
|  |  |  | self.meldung_mit_timeout(responseText, 1500); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | var abs = document.querySelector('#abspieler').value; | 
|---|
|  |  |  | var lst = document.querySelector('#playlist').value; | 
|---|
|  |  |  | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.titelDazu = function() { | 
|---|
|  |  |  | var elem = document.querySelector(".selected"); | 
|---|
|  |  |  | var titel = self.titelErmitteln(document.querySelector(".selected")); | 
|---|
|  |  |  | //var titelName = elem.textContent; | 
|---|
|  |  |  | /* | 
|---|
|  |  |  | var titelName = elem.attributes.dateiName.nodeValue; | 
|---|
|  |  |  | var album = elem.attributes.album.nodeValue; | 
|---|
|  |  |  | var interpret = elem.attributes.interpret.nodeValue; | 
|---|
|  |  |  | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | titel = new Titel(titelName, self.mediaPfad + '/', self.ortPfad, interpret, anzName, album); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | var plname = document.querySelector('#playlist').value; | 
|---|
|  |  |  | self.http_put('../api/alist/' + plname, JSON.stringify(titel), function(responseText) { | 
|---|
|  |  |  | //self.meldung_mit_timeout(responseText, 1500); | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | this.handle_submit = function(event, existingKey, putUrl, keySelector, cb) { | 
|---|
|  |  |  | event.preventDefault(); | 
|---|
|  |  |  | console.log('handle submit, key: ' + event.target.id); | 
|---|
|  |  |  | const data = new FormData(event.target); | 
|---|
|  |  |  | const value = Object.fromEntries(data.entries()); | 
|---|
|  |  |  | //console.log({ value }); | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.removeClassMulti = function(selector) { | 
|---|
|  |  |  | document.querySelectorAll('.' + selector).forEach(elem => { elem.classList.remove(selector); }); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | self.titelErmitteln = function(elem) { | 
|---|
|  |  |  | var titelName = elem.attributes.dateiName.nodeValue; | 
|---|
|  |  |  | var album = elem.attributes.album.nodeValue; | 
|---|
|  |  |  | var interpret = elem.attributes.interpret.nodeValue; | 
|---|
|  |  |  | var anzName = elem.attributes.titelAnzName.nodeValue; | 
|---|
|  |  |  | var titel; | 
|---|
|  |  |  | if(self.mediaPfad.endsWith('/')) { | 
|---|
|  |  |  | titel = new Titel(titelName, self.mediaPfad, self.ortPfad, interpret, anzName, album); | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | titel = new Titel(titelName, self.mediaPfad + '/', self.ortPfad, interpret, anzName, album); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return titel; | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /* --------------------- asynchroner HTTP Client ----------------- */ | 
|---|
|  |  |  | 
|---|
|  |  |  | this.url = u; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | function Livestream(n, u) { | 
|---|
|  |  |  | this.name = n; | 
|---|
|  |  |  | this.url = u; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | function Abspielliste(n) { | 
|---|
|  |  |  | this.name = n; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | this.interpret = i; | 
|---|
|  |  |  | this.titelAnzName = t; | 
|---|
|  |  |  | this.album  = a; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | function Geraet(n, e, a, s) { | 
|---|
|  |  |  | this.name = n; | 
|---|
|  |  |  | this.einUrl = e; | 
|---|
|  |  |  | this.ausUrl = a; | 
|---|
|  |  |  | this.statusUrl = s; | 
|---|
|  |  |  | } | 
|---|