nixamp 0.7.20 → 0.7.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -147,7 +147,7 @@ publish:
147
147
 
148
148
  ```
149
149
  List this stream at https://nixamp.com/directory so anyone can find it?
150
- It publishes http://198.51.100.7:4321/v/Lk1EM_mP977e1VT — listen only,
150
+ It publishes http://198.51.100.7:4321/view/Lk1EM_mP977e1VT — listen only,
151
151
  not the controls. [Y/n]
152
152
  ```
153
153
 
package/dist/admin.js CHANGED
@@ -29,7 +29,7 @@ export function resolveTarget(argv) {
29
29
  " Or administer another machine, with its share link:\n" +
30
30
  " nixamp admin --url https://server1.you.nixamp.com:4321 --key KEY\n" +
31
31
  " The URL and key are the two halves of the link that server printed:\n" +
32
- " https://host:4321/a/KEY");
32
+ " https://host:4321/admin/KEY");
33
33
  }
34
34
  const url_ = daemonUrl(state);
35
35
  // Talking to our own daemon, whose certificate names somewhere else. Nothing
package/dist/server.d.ts CHANGED
@@ -164,6 +164,16 @@ export interface Engine {
164
164
  replace(tracks: Track[], root: string): void;
165
165
  /** The library, arriving after the server was already listening. */
166
166
  fill(tracks: Track[], root: string): void;
167
+ /**
168
+ * This track turned out to have a picture after all.
169
+ *
170
+ * Whether a track is a film is worked out when it is added, and for an
171
+ * address with no extension that means asking ffprobe. A track added before
172
+ * that was asked -- or by an older nixamp -- keeps the wrong answer forever,
173
+ * and every remote goes on putting a television channel into an audio
174
+ * element. Streaming it is the moment the truth is known for certain.
175
+ */
176
+ sawPicture(index: number): void;
167
177
  /**
168
178
  * Play something as well as everything here.
169
179
  *
@@ -273,6 +283,7 @@ export declare class PlayerEngine implements Engine {
273
283
  * being removed, playback stops -- there is nothing to keep playing.
274
284
  */
275
285
  drop(group: string): number;
286
+ sawPicture(index: number): void;
276
287
  groups(): string[];
277
288
  /**
278
289
  * The library, arriving after the server was already listening.
@@ -301,6 +312,7 @@ export declare class EmptyEngine implements Engine {
301
312
  trackPath(): undefined;
302
313
  replace(): void;
303
314
  fill(): void;
315
+ sawPicture(): void;
304
316
  add(): number;
305
317
  drop(): number;
306
318
  groups(): string[];
package/dist/server.js CHANGED
@@ -581,6 +581,15 @@ export class PlayerEngine {
581
581
  this.push(true);
582
582
  return removed;
583
583
  }
584
+ sawPicture(index) {
585
+ const track = this.tracks[index];
586
+ if (!track || track.picture === true)
587
+ return;
588
+ this.tracks = this.tracks.map((one, at) => (at === index ? { ...one, picture: true } : one));
589
+ // The list changed in a way a client acts on -- which element it plays the
590
+ // track in -- so it has to go out rather than wait for the next change.
591
+ this.push(true);
592
+ }
584
593
  groups() {
585
594
  const seen = [];
586
595
  for (const track of this.tracks) {
@@ -660,6 +669,7 @@ export class EmptyEngine {
660
669
  }
661
670
  replace() { }
662
671
  fill() { }
672
+ sawPicture() { }
663
673
  add() {
664
674
  return 0;
665
675
  }
@@ -1588,9 +1598,31 @@ export function createHandler(engine, options) {
1588
1598
  return;
1589
1599
  }
1590
1600
  if (request.method === "DELETE") {
1591
- const id = url.searchParams.get("id");
1592
- if (id)
1593
- options.directory.withdraw(id);
1601
+ const id = url.searchParams.get("id") ?? "";
1602
+ const listing = options.directory.list().find((one) => one.id === id);
1603
+ if (!listing) {
1604
+ // Already gone, or never here. Saying so plainly rather than
1605
+ // pretending to have done something.
1606
+ json(response, 404, { error: "no such listing" });
1607
+ return;
1608
+ }
1609
+ // Taking a stream out of a public directory is the owner's to do.
1610
+ //
1611
+ // This asked nobody anything: a listing id is in every copy of the
1612
+ // list, so anyone who could read the directory could empty it of other
1613
+ // people's streams. The publisher already sends its token; it was
1614
+ // simply never looked at.
1615
+ const who = options.accounts ? await options.accounts.whoIs(tokenFrom(request.headers)) : null;
1616
+ const mine = listing.ownerId !== "" && who !== null && who.id === listing.ownerId;
1617
+ if (!mine) {
1618
+ json(response, 403, {
1619
+ error: listing.ownerId === ""
1620
+ ? "that listing has no owner to prove; it leaves the list when it stops renewing"
1621
+ : "only the account that published a stream can take it off the list",
1622
+ });
1623
+ return;
1624
+ }
1625
+ options.directory.withdraw(id);
1594
1626
  json(response, 200, { ok: true });
1595
1627
  return;
1596
1628
  }
@@ -2090,6 +2122,11 @@ export function createHandler(engine, options) {
2090
2122
  // the picture, and whether there is a picture to keep at all.
2091
2123
  const codecs = await codecsOf({ ffmpeg: [], ffprobe: options.ffprobe ?? ["ffprobe"], play: null }, file);
2092
2124
  if (codecs.video !== "") {
2125
+ // Told back to the playlist, so an entry that was added before this
2126
+ // could be asked stops claiming to be a song. Without it a track
2127
+ // added by an older nixamp goes to an audio element for ever, and
2128
+ // the only cure is noticing and adding it again.
2129
+ engine.sawPicture(index);
2093
2130
  pipeFfmpeg(request, response, file, options.ffmpeg ?? ["ffmpeg"], videoArgs(codecs, capKbps), "video/mp4");
2094
2131
  return;
2095
2132
  }
package/dist/session.js CHANGED
@@ -515,7 +515,7 @@ export async function servers(argv, fetcher = fetch) {
515
515
  if (state === null) {
516
516
  console.error("nixamp: no daemon is running here.\n" +
517
517
  " Start one: nixamp daemon start ~/Music\n" +
518
- " Or give the share link of the one you mean: https://host:4321/a/KEY");
518
+ " Or give the share link of the one you mean: https://host:4321/admin/KEY");
519
519
  return 1;
520
520
  }
521
521
  // The address worth remembering is the one somebody else can open.
package/dist/share.d.ts CHANGED
@@ -85,22 +85,30 @@ export declare function reachableAddresses(host: string, port: number, publicUrl
85
85
  url: string;
86
86
  }[];
87
87
  /**
88
- * The two paths a key can arrive on, and what each one says about itself.
88
+ * The paths a key can arrive on, and what each one says about itself.
89
89
  *
90
- * `/a/` administers and `/v/` only views. There used to be a `/s/` that meant
91
- * neither -- just "here is a key" -- which is why somebody handed one of two
92
- * identical-looking links had no way to tell which they were holding, and
93
- * reported the controls as missing when they were never going to be there.
94
- * A link should say what it is before anybody clicks it.
90
+ * `/admin/` administers and `/view/` only views. There used to be a `/s/`
91
+ * that meant neither -- just "here is a key" -- which is why somebody handed
92
+ * one of two identical-looking links had no way to tell which they were
93
+ * holding, and reported the controls as missing when they were never going to
94
+ * be there. A link should say what it is before anybody clicks it.
95
+ *
96
+ * `/a/` and `/v/` are the same two doors under shorter names they were briefly
97
+ * given. Both are read, because a link somebody was handed yesterday should
98
+ * not stop working because the spelling got clearer -- and because a player
99
+ * and the server it connects to are not upgraded on the same afternoon, which
100
+ * is exactly how a working server came to report itself as switched off.
101
+ * Links are written the long way.
95
102
  */
96
- export declare const KEY_PATHS: readonly ["/a/", "/v/"];
103
+ export declare const KEY_PATHS: readonly ["/admin/", "/view/", "/a/", "/v/"];
97
104
  /**
98
105
  * The key in a share link, and what the link claimed to be.
99
106
  *
100
- * Both halves, because a label nobody checks is a label that can lie. `/a/`
101
- * means this administers and `/v/` means this only views; handed the other
107
+ * Both halves, because a label nobody checks is a label that can lie.
108
+ * `/admin/` means this administers and `/view/` means this only views; given
109
+ * the other
102
110
  * key, a path would otherwise have said one thing and done the other -- and
103
- * the dangerous direction is real: a `/v/` link built around the control key
111
+ * the dangerous direction is real: a `/view/` link built around the control key
104
112
  * reads as view-only to the person you send it to and hands them the controls.
105
113
  */
106
114
  export declare function keyInPath(path: string): {
package/dist/share.js CHANGED
@@ -242,22 +242,30 @@ export function reachableAddresses(host, port, publicUrl = "", scheme = "http")
242
242
  ];
243
243
  }
244
244
  /**
245
- * The two paths a key can arrive on, and what each one says about itself.
245
+ * The paths a key can arrive on, and what each one says about itself.
246
246
  *
247
- * `/a/` administers and `/v/` only views. There used to be a `/s/` that meant
248
- * neither -- just "here is a key" -- which is why somebody handed one of two
249
- * identical-looking links had no way to tell which they were holding, and
250
- * reported the controls as missing when they were never going to be there.
251
- * A link should say what it is before anybody clicks it.
247
+ * `/admin/` administers and `/view/` only views. There used to be a `/s/`
248
+ * that meant neither -- just "here is a key" -- which is why somebody handed
249
+ * one of two identical-looking links had no way to tell which they were
250
+ * holding, and reported the controls as missing when they were never going to
251
+ * be there. A link should say what it is before anybody clicks it.
252
+ *
253
+ * `/a/` and `/v/` are the same two doors under shorter names they were briefly
254
+ * given. Both are read, because a link somebody was handed yesterday should
255
+ * not stop working because the spelling got clearer -- and because a player
256
+ * and the server it connects to are not upgraded on the same afternoon, which
257
+ * is exactly how a working server came to report itself as switched off.
258
+ * Links are written the long way.
252
259
  */
253
- export const KEY_PATHS = ["/a/", "/v/"];
260
+ export const KEY_PATHS = ["/admin/", "/view/", "/a/", "/v/"];
254
261
  /**
255
262
  * The key in a share link, and what the link claimed to be.
256
263
  *
257
- * Both halves, because a label nobody checks is a label that can lie. `/a/`
258
- * means this administers and `/v/` means this only views; handed the other
264
+ * Both halves, because a label nobody checks is a label that can lie.
265
+ * `/admin/` means this administers and `/view/` means this only views; given
266
+ * the other
259
267
  * key, a path would otherwise have said one thing and done the other -- and
260
- * the dangerous direction is real: a `/v/` link built around the control key
268
+ * the dangerous direction is real: a `/view/` link built around the control key
261
269
  * reads as view-only to the person you send it to and hands them the controls.
262
270
  */
263
271
  export function keyInPath(path) {
@@ -275,13 +283,13 @@ export function keyInPath(path) {
275
283
  // A key that is not valid percent-encoding is taken as written; it will
276
284
  // fail to match anything, which is the right answer either way.
277
285
  }
278
- return { key, wants: prefix === "/a/" ? "control" : "listen" };
286
+ return { key, wants: prefix === "/admin/" || prefix === "/a/" ? "control" : "listen" };
279
287
  }
280
288
  return null;
281
289
  }
282
290
  /** The full link, key and all. `admin` picks the shape that says which it is. */
283
291
  export function shareLink(base, key, admin = true) {
284
- return key === null ? base : `${base}${admin ? "/a/" : "/v/"}${key}`;
292
+ return key === null ? base : `${base}${admin ? "/admin/" : "/view/"}${key}`;
285
293
  }
286
294
  /**
287
295
  * The same stream, as bytes rather than as a page.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nixamp",
3
- "version": "0.7.20",
3
+ "version": "0.7.22",
4
4
  "description": "It really whips the terminal's ass. A Winamp-shaped audio player for your terminal.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/admin.ts CHANGED
@@ -66,7 +66,7 @@ export function resolveTarget(argv: string[]): AdminOptions {
66
66
  " Or administer another machine, with its share link:\n" +
67
67
  " nixamp admin --url https://server1.you.nixamp.com:4321 --key KEY\n" +
68
68
  " The URL and key are the two halves of the link that server printed:\n" +
69
- " https://host:4321/a/KEY",
69
+ " https://host:4321/admin/KEY",
70
70
  );
71
71
  }
72
72
  const url_ = daemonUrl(state);
package/src/server.ts CHANGED
@@ -437,6 +437,16 @@ export interface Engine {
437
437
  replace(tracks: Track[], root: string): void;
438
438
  /** The library, arriving after the server was already listening. */
439
439
  fill(tracks: Track[], root: string): void;
440
+ /**
441
+ * This track turned out to have a picture after all.
442
+ *
443
+ * Whether a track is a film is worked out when it is added, and for an
444
+ * address with no extension that means asking ffprobe. A track added before
445
+ * that was asked -- or by an older nixamp -- keeps the wrong answer forever,
446
+ * and every remote goes on putting a television channel into an audio
447
+ * element. Streaming it is the moment the truth is known for certain.
448
+ */
449
+ sawPicture(index: number): void;
440
450
  /**
441
451
  * Play something as well as everything here.
442
452
  *
@@ -760,6 +770,15 @@ export class PlayerEngine implements Engine {
760
770
  return removed;
761
771
  }
762
772
 
773
+ sawPicture(index: number): void {
774
+ const track = this.tracks[index];
775
+ if (!track || track.picture === true) return;
776
+ this.tracks = this.tracks.map((one, at) => (at === index ? { ...one, picture: true } : one));
777
+ // The list changed in a way a client acts on -- which element it plays the
778
+ // track in -- so it has to go out rather than wait for the next change.
779
+ this.push(true);
780
+ }
781
+
763
782
  groups(): string[] {
764
783
  const seen: string[] = [];
765
784
  for (const track of this.tracks) {
@@ -836,6 +855,7 @@ export class EmptyEngine implements Engine {
836
855
  }
837
856
  replace(): void {}
838
857
  fill(): void {}
858
+ sawPicture(): void {}
839
859
  add(): number {
840
860
  return 0;
841
861
  }
@@ -1948,8 +1968,33 @@ export function createHandler(engine: Engine, options: HandlerOptions) {
1948
1968
  return;
1949
1969
  }
1950
1970
  if (request.method === "DELETE") {
1951
- const id = url.searchParams.get("id");
1952
- if (id) options.directory.withdraw(id);
1971
+ const id = url.searchParams.get("id") ?? "";
1972
+ const listing = options.directory.list().find((one) => one.id === id);
1973
+ if (!listing) {
1974
+ // Already gone, or never here. Saying so plainly rather than
1975
+ // pretending to have done something.
1976
+ json(response, 404, { error: "no such listing" });
1977
+ return;
1978
+ }
1979
+
1980
+ // Taking a stream out of a public directory is the owner's to do.
1981
+ //
1982
+ // This asked nobody anything: a listing id is in every copy of the
1983
+ // list, so anyone who could read the directory could empty it of other
1984
+ // people's streams. The publisher already sends its token; it was
1985
+ // simply never looked at.
1986
+ const who = options.accounts ? await options.accounts.whoIs(tokenFrom(request.headers)) : null;
1987
+ const mine = listing.ownerId !== "" && who !== null && who.id === listing.ownerId;
1988
+ if (!mine) {
1989
+ json(response, 403, {
1990
+ error: listing.ownerId === ""
1991
+ ? "that listing has no owner to prove; it leaves the list when it stops renewing"
1992
+ : "only the account that published a stream can take it off the list",
1993
+ });
1994
+ return;
1995
+ }
1996
+
1997
+ options.directory.withdraw(id);
1953
1998
  json(response, 200, { ok: true });
1954
1999
  return;
1955
2000
  }
@@ -2475,6 +2520,11 @@ export function createHandler(engine: Engine, options: HandlerOptions) {
2475
2520
  // the picture, and whether there is a picture to keep at all.
2476
2521
  const codecs = await codecsOf({ ffmpeg: [], ffprobe: options.ffprobe ?? ["ffprobe"], play: null }, file);
2477
2522
  if (codecs.video !== "") {
2523
+ // Told back to the playlist, so an entry that was added before this
2524
+ // could be asked stops claiming to be a song. Without it a track
2525
+ // added by an older nixamp goes to an audio element for ever, and
2526
+ // the only cure is noticing and adding it again.
2527
+ engine.sawPicture(index);
2478
2528
  pipeFfmpeg(request, response, file, options.ffmpeg ?? ["ffmpeg"], videoArgs(codecs, capKbps), "video/mp4");
2479
2529
  return;
2480
2530
  }
package/src/session.ts CHANGED
@@ -586,7 +586,7 @@ export async function servers(argv: string[], fetcher: typeof fetch = fetch): Pr
586
586
  console.error(
587
587
  "nixamp: no daemon is running here.\n" +
588
588
  " Start one: nixamp daemon start ~/Music\n" +
589
- " Or give the share link of the one you mean: https://host:4321/a/KEY",
589
+ " Or give the share link of the one you mean: https://host:4321/admin/KEY",
590
590
  );
591
591
  return 1;
592
592
  }
package/src/share.ts CHANGED
@@ -272,23 +272,31 @@ export function reachableAddresses(
272
272
  }
273
273
 
274
274
  /**
275
- * The two paths a key can arrive on, and what each one says about itself.
275
+ * The paths a key can arrive on, and what each one says about itself.
276
276
  *
277
- * `/a/` administers and `/v/` only views. There used to be a `/s/` that meant
278
- * neither -- just "here is a key" -- which is why somebody handed one of two
279
- * identical-looking links had no way to tell which they were holding, and
280
- * reported the controls as missing when they were never going to be there.
281
- * A link should say what it is before anybody clicks it.
277
+ * `/admin/` administers and `/view/` only views. There used to be a `/s/`
278
+ * that meant neither -- just "here is a key" -- which is why somebody handed
279
+ * one of two identical-looking links had no way to tell which they were
280
+ * holding, and reported the controls as missing when they were never going to
281
+ * be there. A link should say what it is before anybody clicks it.
282
+ *
283
+ * `/a/` and `/v/` are the same two doors under shorter names they were briefly
284
+ * given. Both are read, because a link somebody was handed yesterday should
285
+ * not stop working because the spelling got clearer -- and because a player
286
+ * and the server it connects to are not upgraded on the same afternoon, which
287
+ * is exactly how a working server came to report itself as switched off.
288
+ * Links are written the long way.
282
289
  */
283
- export const KEY_PATHS = ["/a/", "/v/"] as const;
290
+ export const KEY_PATHS = ["/admin/", "/view/", "/a/", "/v/"] as const;
284
291
 
285
292
  /**
286
293
  * The key in a share link, and what the link claimed to be.
287
294
  *
288
- * Both halves, because a label nobody checks is a label that can lie. `/a/`
289
- * means this administers and `/v/` means this only views; handed the other
295
+ * Both halves, because a label nobody checks is a label that can lie.
296
+ * `/admin/` means this administers and `/view/` means this only views; given
297
+ * the other
290
298
  * key, a path would otherwise have said one thing and done the other -- and
291
- * the dangerous direction is real: a `/v/` link built around the control key
299
+ * the dangerous direction is real: a `/view/` link built around the control key
292
300
  * reads as view-only to the person you send it to and hands them the controls.
293
301
  */
294
302
  export function keyInPath(path: string): { key: string; wants: Scope } | null {
@@ -303,14 +311,14 @@ export function keyInPath(path: string): { key: string; wants: Scope } | null {
303
311
  // A key that is not valid percent-encoding is taken as written; it will
304
312
  // fail to match anything, which is the right answer either way.
305
313
  }
306
- return { key, wants: prefix === "/a/" ? "control" : "listen" };
314
+ return { key, wants: prefix === "/admin/" || prefix === "/a/" ? "control" : "listen" };
307
315
  }
308
316
  return null;
309
317
  }
310
318
 
311
319
  /** The full link, key and all. `admin` picks the shape that says which it is. */
312
320
  export function shareLink(base: string, key: string | null, admin = true): string {
313
- return key === null ? base : `${base}${admin ? "/a/" : "/v/"}${key}`;
321
+ return key === null ? base : `${base}${admin ? "/admin/" : "/view/"}${key}`;
314
322
  }
315
323
 
316
324
  /**
@@ -1 +1 @@
1
- import{t as e}from"./index-DH3yIa7s.js";var t=3;async function n(n){let{media:r,src:i,isTv:a}=n,{default:o}=await e(async()=>{let{default:e}=await import(`./hls-n74Cnh8A.js`);return{default:e}},[]);if(!o.isSupported())return n.onError(`This browser cannot play HLS streams.`),{destroy:()=>void 0,levels:()=>[]};let s=new o({...a?{maxBufferLength:60,maxMaxBufferLength:120,backBufferLength:30,liveSyncDurationCount:4}:{backBufferLength:90},enableWorker:!0}),c=0,l=!1;s.on(o.Events.ERROR,(e,r)=>{if(!l&&r.fatal){if(c>=t){n.onError(`This stream kept failing and has been stopped.`),s.destroy();return}switch(c+=1,r.type){case o.ErrorTypes.NETWORK_ERROR:n.onNotice(`Reconnecting…`),s.startLoad();break;case o.ErrorTypes.MEDIA_ERROR:n.onNotice(`Recovering…`),s.recoverMediaError();break;default:n.onError(`This stream could not be played.`),s.destroy()}}}),s.on(o.Events.MANIFEST_PARSED,()=>{l||(n.onNotice(null),n.onReady?.({live:s.levels.length>0&&!Number.isFinite(r.duration),levels:u()}))}),s.on(o.Events.LEVEL_LOADED,(e,t)=>{l||n.onReady?.({live:t.details.live,levels:u()})}),s.on(o.Events.FRAG_BUFFERED,()=>{l||n.onNotice(null)});function u(){return s.levels.map((e,t)=>({index:t,height:e.height||null,bitrate:e.bitrate||null,label:e.height?`${String(e.height)}p`:`${String(Math.round((e.bitrate||0)/1e3))}k`}))}return s.loadSource(i),s.attachMedia(r),{destroy(){l=!0,s.destroy()},levels:u,setLevel(e){s.currentLevel=e},currentLevel:()=>s.autoLevelEnabled?-1:s.currentLevel}}export{n as createHlsEngine};
1
+ import{t as e}from"./index-BjUE4krU.js";var t=3;async function n(n){let{media:r,src:i,isTv:a}=n,{default:o}=await e(async()=>{let{default:e}=await import(`./hls-n74Cnh8A.js`);return{default:e}},[]);if(!o.isSupported())return n.onError(`This browser cannot play HLS streams.`),{destroy:()=>void 0,levels:()=>[]};let s=new o({...a?{maxBufferLength:60,maxMaxBufferLength:120,backBufferLength:30,liveSyncDurationCount:4}:{backBufferLength:90},enableWorker:!0}),c=0,l=!1;s.on(o.Events.ERROR,(e,r)=>{if(!l&&r.fatal){if(c>=t){n.onError(`This stream kept failing and has been stopped.`),s.destroy();return}switch(c+=1,r.type){case o.ErrorTypes.NETWORK_ERROR:n.onNotice(`Reconnecting…`),s.startLoad();break;case o.ErrorTypes.MEDIA_ERROR:n.onNotice(`Recovering…`),s.recoverMediaError();break;default:n.onError(`This stream could not be played.`),s.destroy()}}}),s.on(o.Events.MANIFEST_PARSED,()=>{l||(n.onNotice(null),n.onReady?.({live:s.levels.length>0&&!Number.isFinite(r.duration),levels:u()}))}),s.on(o.Events.LEVEL_LOADED,(e,t)=>{l||n.onReady?.({live:t.details.live,levels:u()})}),s.on(o.Events.FRAG_BUFFERED,()=>{l||n.onNotice(null)});function u(){return s.levels.map((e,t)=>({index:t,height:e.height||null,bitrate:e.bitrate||null,label:e.height?`${String(e.height)}p`:`${String(Math.round((e.bitrate||0)/1e3))}k`}))}return s.loadSource(i),s.attachMedia(r),{destroy(){l=!0,s.destroy()},levels:u,setLevel(e){s.currentLevel=e},currentLevel:()=>s.autoLevelEnabled?-1:s.currentLevel}}export{n as createHlsEngine};
@@ -0,0 +1 @@
1
+ (function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),t.credentials=e.crossOrigin===`use-credentials`?`include`:e.crossOrigin===`anonymous`?`omit`:`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})();function e(e){if(!Number.isFinite(e)||e<0)return`--:--`;let t=Math.floor(e),n=Math.floor(t/60),r=t%60;return`${String(n).padStart(2,`0`)}:${String(r).padStart(2,`0`)}`}function t(e){return e.artist?`${e.artist} — ${e.title}`:e.title}function n(e){let t=e.split(`/`).pop()??e,n=t.lastIndexOf(`.`);return n>0?t.slice(0,n):t}var r=new Set([`mp4`,`webm`,`mkv`,`mov`,`m4v`,`ogv`,`avi`]);function i(e,t=``){if(t.startsWith(`video/`))return!0;if(t.startsWith(`audio/`))return!1;let n=e.lastIndexOf(`.`);return n>0&&r.has(e.slice(n+1).toLowerCase())}var a=`modulepreload`,o=function(e){return`/`+e},s={},c=function(e,t,n){let r=Promise.resolve();if(t&&t.length>0){let e=document.getElementsByTagName(`link`),i=document.querySelector(`meta[property=csp-nonce]`),c=i?.nonce||i?.getAttribute(`nonce`);function l(e){return Promise.all(e.map(e=>Promise.resolve(e).then(e=>({status:`fulfilled`,value:e}),e=>({status:`rejected`,reason:e}))))}function u(e){return import.meta.resolve?import.meta.resolve(e):new URL(e,import.meta.url).href}r=l(t.map(t=>{if(t=o(t,n),t=u(t),t in s)return;s[t]=!0;let r=t.endsWith(`.css`);for(let n=e.length-1;n>=0;n--){let i=e[n];if(i.href===t&&(!r||i.rel===`stylesheet`))return}let i=document.createElement(`link`);if(i.rel=r?`stylesheet`:a,r||(i.as=`script`),i.crossOrigin=``,i.href=t,c&&i.setAttribute(`nonce`,c),document.head.appendChild(i),r)return new Promise((e,n)=>{i.addEventListener(`load`,e),i.addEventListener(`error`,()=>n(Error(`Unable to preload CSS for ${t}`)))})}))}function i(e){let t=new Event(`vite:preloadError`,{cancelable:!0});if(t.payload=e,window.dispatchEvent(t),!t.defaultPrevented)throw e}return r.then(t=>{for(let e of t||[])e.status===`rejected`&&i(e.reason);return e().catch(i)})},l=[[/\.m3u8$/i,`hls`],[/\.(ts|mts|m2ts|mpegts)$/i,`mpegts`],[/\.(mp3|m4a|aac|oga|ogg|opus|wav|flac)$/i,`audio`],[/\.(mp4|m4v|webm|mov|ogv)$/i,`mp4`]],u=[[/mpegurl/i,`hls`],[/mp2t|mpeg-?ts/i,`mpegts`],[/^audio\//i,`audio`],[/^video\//i,`mp4`]];function d(e){if(e.kind)return e.kind;if(e.mimeType){for(let[t,n]of u)if(t.test(e.mimeType))return n}let t=f(e.src);for(let[e,n]of l)if(e.test(t))return n;return`unknown`}function f(e){try{return new URL(e,`https://placeholder.invalid`).pathname}catch{return e.split(/[?#]/)[0]??e}}function p(e=globalThis,t=null){let n=e.MediaSource!==void 0,r=!1;try{let e=t??(typeof document>`u`?null:document.createElement(`video`));r=e?e.canPlayType(`application/vnd.apple.mpegurl`)!==``||e.canPlayType(`application/x-mpegURL`)!==``:!1}catch{r=!1}return{mediaSource:n,nativeHls:r}}function m(e,t){let n=d(e);switch(n){case`hls`:return t.mediaSource?{engine:`hls`,kind:n}:t.nativeHls?{engine:`native`,kind:n}:{engine:`native`,kind:n,unplayable:`This browser cannot play HLS streams.`};case`mpegts`:return t.mediaSource?{engine:`mpegts`,kind:n}:{engine:`mpegts`,kind:n,unplayable:`This browser cannot play transport streams.`};default:return{engine:`native`,kind:n}}}async function h(e,t){let n=t.capabilities??p(),r=m({src:t.src,...t.kind?{kind:t.kind}:{},...t.mimeType?{mimeType:t.mimeType}:{}},n),i=()=>void 0,a={media:e,src:t.src,isTv:t.isTv??!1,live:t.live??r.kind===`mpegts`,onError:t.onError??i,onNotice:t.onNotice??i,...t.onReady?{onReady:t.onReady}:{}};if(r.unplayable)return t.onError?.(r.unplayable),{destroy:i,engine:r.engine,kind:r.kind,levels:()=>[],unplayable:r.unplayable};let o,s=t.engines?.[r.engine];if(s)o=await s(a);else if(r.engine===`hls`){let{createHlsEngine:e}=await c(async()=>{let{createHlsEngine:e}=await import(`./hls-3VKVEQE3-C2NU6wnG.js`);return{createHlsEngine:e}},[]);o=await e(a)}else if(r.engine===`mpegts`){let{createMpegtsEngine:e}=await c(async()=>{let{createMpegtsEngine:e}=await import(`./mpegts-LO6RVLD6-h1JlF4Fz.js`);return{createMpegtsEngine:e}},[]);o=await e(a,{withCredentials:t.withCredentials??!1,unplayableAdvice:t.unplayableAdvice??``})}else{let{createNativeEngine:e}=await c(async()=>{let{createNativeEngine:e}=await import(`./native-C7JTKWJH-BUyIoj0P.js`);return{createNativeEngine:e}},[]);o=await e(a)}return{destroy:()=>{o.destroy()},engine:r.engine,kind:r.kind,levels:o.levels,...o.setLevel?{setLevel:o.setLevel}:{},...o.currentLevel?{currentLevel:o.currentLevel}:{}}}var g=new Set([`mp3`,`flac`,`ogg`,`oga`,`opus`,`m4a`,`aac`,`wav`,`wma`,`aiff`,`aif`,`alac`,`mp4`,`webm`,`mkv`,`mov`,`m4v`,`ogv`]);function _(e,t=``){if(t.startsWith(`audio/`)||t.startsWith(`video/`))return!0;let n=e.lastIndexOf(`.`);return n>0&&g.has(e.slice(n+1).toLowerCase())}function v(e,t){return e.localeCompare(t,void 0,{numeric:!0,sensitivity:`base`})}function ee(e){return e.filter(e=>_(e.name,e.type)).sort((e,t)=>v(y(e),y(t))).map(e=>({title:n(e.name),artist:``,album:b(y(e)),duration:0,url:URL.createObjectURL(e),video:i(e.name,e.type),objectUrl:!0}))}function y(e){return e.webkitRelativePath||e.name}function b(e){let t=e.split(`/`);return t.length>1?t[t.length-2]:``}function te(e){for(let t of e)t.objectUrl&&URL.revokeObjectURL(t.url)}var x=2048;function S(e,t){return e||t===`hls`||t===`mpegts`}var ne=class{elements;handlers;attached=null;context=null;analyser=null;wired=new WeakSet;active;frequencies=new Uint8Array;constructor(e,t){this.elements=e,this.handlers=t,this.active=e.audio;for(let t of[e.audio,e.video])t.crossOrigin=`anonymous`,t.addEventListener(`timeupdate`,()=>{t===this.active&&this.handlers.onTime(t.currentTime,Number.isFinite(t.duration)?t.duration:0)}),t.addEventListener(`loadedmetadata`,()=>{t===this.active&&this.handlers.onTime(t.currentTime,Number.isFinite(t.duration)?t.duration:0)}),t.addEventListener(`ended`,()=>{t===this.active&&this.handlers.onEnded()}),t.addEventListener(`play`,()=>{t===this.active&&this.handlers.onState(!0)}),t.addEventListener(`pause`,()=>{t===this.active&&this.handlers.onState(!1)}),t.addEventListener(`error`,()=>{t===this.active&&this.handlers.onError(C(t))})}get playing(){return!this.active.paused&&!this.active.ended}get position(){return this.active.currentTime}get duration(){return Number.isFinite(this.active.duration)?this.active.duration:0}get showingVideo(){return this.active===this.elements.video}ensureGraph(e){let t=globalThis.AudioContext??globalThis.webkitAudioContext;if(t){if(this.context??=new t,this.analyser||(this.analyser=this.context.createAnalyser(),this.analyser.fftSize=x,this.analyser.smoothingTimeConstant=.6,this.analyser.connect(this.context.destination),this.frequencies=new Uint8Array(this.analyser.frequencyBinCount)),!this.wired.has(e))try{this.context.createMediaElementSource(e).connect(this.analyser),this.wired.add(e)}catch{this.wired.add(e)}this.context.resume()}}read(){return this.analyser&&this.analyser.getByteFrequencyData(this.frequencies),this.frequencies}levels(){if(!this.analyser)return[0,0];let e=this.read(),t=0;for(let n of e)t+=n;let n=e.length===0?0:t/e.length/255;return[Math.min(1,n*2.2),Math.min(1,n*2.2)]}async load(e,t){let n=e.objectUrl?e.video?`mp4`:`audio`:d({src:e.url}),r=S(e.video,n)?this.elements.video:this.elements.audio;r!==this.active&&(this.active.pause(),this.active.removeAttribute(`src`),this.active.load(),this.active=r),this.attached?.destroy(),this.attached=null;try{this.attached=await h(this.active,{src:e.url,kind:n,unplayableAdvice:`VLC or mpv will play it; nixamp can only hand it to your browser.`,onError:e=>this.handlers.onError(e),onNotice:e=>{e&&this.handlers.onError(e)}})}catch(e){this.handlers.onError(e instanceof Error?e.message:`that would not play`);return}t&&await this.play()}async play(){this.ensureGraph(this.active);try{await this.active.play()}catch(e){this.handlers.onError(e instanceof Error?e.message:`playback was refused`)}}pause(){this.active.pause()}stop(){this.active.pause(),this.active.currentTime=0,this.attached?.destroy(),this.attached=null}seek(e){Number.isFinite(e)&&(this.active.currentTime=Math.max(0,e))}set volume(e){this.elements.audio.volume=e,this.elements.video.volume=e}get volume(){return this.active.volume}};function C(e){switch(e.error?.code){case MediaError.MEDIA_ERR_ABORTED:return`playback was aborted`;case MediaError.MEDIA_ERR_NETWORK:return`the network dropped mid-track`;case MediaError.MEDIA_ERR_DECODE:return`this browser could not decode that`;case MediaError.MEDIA_ERR_SRC_NOT_SUPPORTED:return`this browser cannot play that format`;default:return`playback failed`}}function w(){return{revision:0,tracks:[],trackCount:0,index:0,playing:!1,position:0,bars:[],levels:[0,0],silent:!0,note:``,root:``}}function re(e,t){return{...t,tracks:t.tracks??e.tracks}}function T(e){let t=e.trim();if(t===``)return``;/^https?:\/\//i.test(t)||(t=`http://${t}`);let n;try{n=new URL(t)}catch{return``}let r=n.pathname.replace(/\/+$/,``);return r=r.replace(/\/api(\/.*)?$/,``),`${n.origin}${r}`}function E(e,t,n=``){let r=`${e===``?``:T(e)}${t.startsWith(`/`)?t:`/${t}`}`;return n?`${r}${r.includes(`?`)?`&`:`?`}k=${encodeURIComponent(n)}`:r}function ie(e){let t=e.trim();if(t===``)return{base:``,key:``};let n;try{n=new URL(/^https?:\/\//i.test(t)?t:`http://${t}`)}catch{return{base:``,key:``}}let r=/^\/(?:admin|view|a|v)\/([^/]+)\/?$/.exec(n.pathname),i=r?.[1]??n.searchParams.get(`k`)??``;return r&&(n.pathname=`/`),n.searchParams.delete(`k`),{base:T(`${n.origin}${n.pathname}`),key:decodeURIComponent(i)}}function D(e,t,n=0,r=``){return E(e,n>0?`/api/media/${t}?kbps=${Math.round(n)}`:`/api/media/${t}`,r)}function O(e){if(typeof e!=`object`||!e)return null;let t=e,n=w(),r=(e,t)=>typeof e==`number`&&Number.isFinite(e)?e:t,i=Array.isArray(t.levels)?t.levels:[],a=Array.isArray(t.tracks)?t.tracks.map(e=>{let t=typeof e==`object`&&e?e:{};return{title:typeof t.title==`string`?t.title:`Untitled`,artist:typeof t.artist==`string`?t.artist:``,album:typeof t.album==`string`?t.album:``,duration:r(t.duration,0),...t.video===!0?{video:!0}:{},...typeof t.group==`string`&&t.group!==``?{group:t.group}:{}}}):void 0;return{revision:r(t.revision,0),...a?{tracks:a}:{},trackCount:r(t.trackCount,a?.length??0),index:r(t.index,0),playing:t.playing===!0,position:r(t.position,0),bars:Array.isArray(t.bars)?t.bars.map(e=>r(e,0)):[],levels:[r(i[0],0),r(i[1],0)],silent:t.silent===!0,note:typeof t.note==`string`?t.note:``,root:typeof t.root==`string`?t.root:n.root}}var ae=class{handlers;source=null;base=``;key=``;shape=`/admin/`;lastRevision=-1;constructor(e){this.handlers=e}get address(){return this.base}url(e){return E(this.base,e,this.key)}get shareLink(){return this.base===``?``:this.key===``?this.base:`${this.base}${this.shape}${this.key}`}get connected(){return this.source!==null}connect(e){let{base:t,key:n}=ie(e);this.close(),this.base=t,this.key=n,this.shape=/\/(?:view|v)\/[^/]+\/?$/.test(e.trim())?`/view/`:`/admin/`,this.lastRevision=-1,this.handlers.onStatus(`connecting`);let r=new EventSource(E(t,`/api/events`,n));this.source=r,r.onopen=()=>this.handlers.onStatus(`live`),r.onmessage=e=>{let t=O(k(e.data));t&&(t.revision<this.lastRevision||(this.lastRevision=t.revision,this.handlers.onStatus(`live`),this.handlers.onSnapshot(t)))},r.onerror=()=>{this.handlers.onStatus(`error`,`reconnecting…`)}}async send(e){if(this.base===``&&!this.connected)return;let t=await fetch(E(this.base,`/api/command`,this.key),{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify(e)});if(!t.ok){this.handlers.onStatus(`error`,`command refused (${t.status})`);return}let n=O(await t.json());n&&this.handlers.onSnapshot(n)}media(e,t=0){return D(this.base,e,t,this.key)}close(){this.source?.close(),this.source=null}};function k(e){try{return JSON.parse(e)}catch{return null}}async function oe(e,t,n=``){try{let r=await fetch(E(e,`/api/state`,n),{signal:t});return r.ok?O(await r.json()):null}catch{return null}}function se(e){if(!/^https:\/\//i.test(e))return``;let t;try{t=new URL(e).hostname.replace(/^\[|\]$/g,``)}catch{return``}return/^\d{1,3}(\.\d{1,3}){3}$/.test(t)||t.includes(`:`)?`That is an https address for a bare IP, and a certificate is issued for a name — a browser refuses it before it asks anything. Use the server's name instead (the address it printed first), or connect over http.`:``}async function ce(e,t=``,n){let r;try{r=await fetch(E(e,`/api/state`,t),{signal:n})}catch{return``}return r.ok?``:r.status===401?t===``?`That server needs its share link. Paste the whole link — the one with /admin/ or /view/ in it — or sign in as its owner.`:`That share link is not accepted by that server. It may have been restarted, which gives it a new one.`:r.status===403?`That link can listen but not drive this server.`:r.status===429?`That server is asking us to slow down. Try again in a moment.`:``}async function A(e,t,n=``){try{let r=await fetch(E(e,`/api/health`,n),{signal:t});if(!r.ok)return null;let i=await r.json();return i.name===`nixamp`?i.version??`unknown`:null}catch{return null}}function le(e,t=globalThis.location?.protocol){return t!==`https:`||!/^http:\/\//i.test(e.trim())?``:`This page is https, and a browser refuses every request from an https page to an http one. Open that address directly, or give the server a certificate: nixamp serve --tls-cert cert.pem --tls-key key.pem.`}var j=.14,M=.02;function ue(e,t){let n=[];for(let r=0;r<=e;r++){let i=r/e,a=Math.round(1*(t/1)**i),o=n[n.length-1];n.push(o===void 0?a:Math.max(a,o+1))}return n}function de(e,t){let n=[];for(let r=0;r+1<t.length;r++){let i=Math.min(t[r],e.length),a=Math.min(Math.max(t[r+1],i+1),e.length),o=0,s=0;for(let t=i;t<a;t++)o+=e[t],s++;n.push(s===0?0:o/s/255)}return n}function fe(e,t,n=j){return t.map((t,r)=>{let i=e[r]??0;return t>=i?t:Math.max(t,i-n)})}function N(e,t,n=M){return t.map((t,r)=>Math.max(t,(e[r]??0)-n))}function pe(e,t,n,r,i){let{width:a,height:o}=t;if(a<=0||o<=0||n.length===0)return;e.clearRect(0,0,a,o);let s=a/n.length,c=Math.max(1,s*.72),l=Math.max(2,o*.012);e.fillStyle=i.bar,n.forEach((t,n)=>{let r=Math.max(1,t*(o-l*2));e.fillRect(n*s+(s-c)/2,o-r,c,r)}),e.fillStyle=i.peak,r.forEach((t,n)=>{let r=o-Math.max(1,t*(o-l*2))-l*2;e.fillRect(n*s+(s-c)/2,Math.max(0,r),c,l)})}var me=`nixamp.remote`,he=`nixamp.volume`,ge=`nixamp.listenHere`;function P(e){let t=document.getElementById(e);if(!t)throw Error(`nixamp: #${e} is missing from the shell`);return t}function F(){let n={status:P(`status`),source:P(`source`),install:P(`install`),video:P(`video`),audio:P(`audio`),title:P(`title-line`),album:P(`album-line`),elapsed:P(`elapsed`),total:P(`total`),seek:P(`seek`),fullscreen:P(`fullscreen`),canvas:P(`spectrum`),glyphs:P(`glyphs`),levels:P(`levels`),playlist:P(`playlist`),playlistTitle:P(`playlist-panel`),note:P(`note`),files:P(`files`),folder:P(`folder`),remoteUrl:P(`remote-url`),remoteForm:P(`remote-form`),remoteState:P(`remote-state`),disconnect:P(`disconnect`),browse:P(`browse`),accountForm:P(`account-form`),accountEmail:P(`account-email`),accountPassword:P(`account-password`),accountSubmit:P(`account-submit`),accountToggle:P(`account-toggle`),accountProviders:P(`account-providers`),accountPanel:P(`account-panel`),accountElsewhere:P(`account-elsewhere`),accountSignOut:P(`account-signout`),accountNote:P(`account-note`),adminPanel:P(`admin-panel`),adminNote:P(`admin-note`),adminSaid:P(`admin-said`),adminConnections:P(`admin-connections`),publishPanel:P(`publish-panel`),publishNote:P(`publish-note`),publishList:P(`publish-list`),adminRestream:P(`admin-restream`),adminReplace:P(`admin-replace`),adminSource:P(`admin-source`),directory:P(`directory`),recentNote:P(`recent-note`),recentList:P(`recent-list`),followingNote:P(`following-note`),followingList:P(`following-list`),serversPanel:P(`servers-panel`),serversNote:P(`servers-note`),serversList:P(`servers-list`),notifyPanel:P(`notify-panel`),notifyNote:P(`notify-note`),notifyWeb:P(`notify-web`),notifyEmail:P(`notify-email`),notifySms:P(`notify-sms`),notifyPhone:P(`notify-phone`),notifyPhoneForm:P(`notify-phone-form`),notifyPhoneNote:P(`notify-phone-note`),directoryNote:P(`directory-note`),directoryList:P(`directory-list`),onairPanel:P(`onair-panel`),onairNote:P(`onair-note`),onairList:P(`onair-list`),sharePanel:P(`share-panel`),shareNote:P(`share-note`),shareLink:P(`share-link`),shareCopy:P(`share-copy`),sharePhone:P(`share-phone`),shareSend:P(`share-send`),liveControls:P(`live-controls`),goLive:P(`go-live`),stopLive:P(`stop-live`),shareTo:P(`share-to`),listenOnly:P(`listen-only`),listenHere:P(`listen-here`),volume:P(`volume`),prev:P(`prev`),playPause:P(`play-pause`),stop:P(`stop`),next:P(`next`)},r=`local`,i=[],a=0,o=w(),s=`idle`,c=``,l=`Pick files, or connect to a nixamp running somewhere else.`,u=!1,d=-1,f=``,p=Array(24).fill(0),m=Array(24).fill(0),h=[],g=()=>r===`remote`&&!n.listenHere.checked,_=new ne({audio:n.audio,video:n.video},{onTime:(e,t)=>{let n=i[a];r===`local`&&n&&t>0&&n.duration!==t&&(n.duration=t),I()},onEnded:()=>j(1),onState:()=>I(),onError:e=>{l=e,I()}}),v=new ae({onSnapshot:e=>{o=re(o,e),g()&&(p=e.bars.length>0?e.bars:p,m=N(m,p)),I()},onStatus:(e,t)=>{s=e,c=t??``,I()}}),y=()=>r===`remote`?o.tracks.length:i.length,b=()=>r===`remote`?g()||d<0?o.index:Math.min(d,Math.max(0,o.tracks.length-1)):a,x=()=>{let e=r===`remote`?o.tracks[b()]:i[b()];return e?t(e):`Nothing loaded.`},S=()=>(r===`remote`?o.tracks[b()]:i[b()])?.album||`—`,C=()=>g()?o.tracks[b()]?.duration??0:_.duration,T=()=>g()?o.position:_.position,E=()=>g()?o.playing:_.playing;async function D(e){if(r===`remote`){if(g()){await v.send({type:`play`,index:e});return}await O(e);return}let t=i[e];t&&(a=e,await _.load(t,!0),B(t.video),V(),I())}async function O(e){let t=o.tracks[e];t&&(d=e,await _.load({title:t.title,artist:t.artist,album:t.album,duration:t.duration,url:v.media(e,0),video:t.video===!0,objectUrl:!1},!0),B(t.video===!0),V())}async function k(){if(g()){await v.send({type:`toggle`});return}y()!==0&&(_.playing?_.pause():_.position>0?await _.play():await D(b()),I())}async function j(e){let t=y();if(t!==0){if(g()){await v.send({type:e>0?`next`:`prev`});return}await D((b()+e+t)%t)}}async function M(){if(g()){await v.send({type:`stop`});return}_.stop(),p=Array(24).fill(0),m=[...p],I()}let F=e=>`▁▂▃▄▅▆▇█`[Math.max(0,Math.min(7,Math.round(e*7)))];function I(){let t=y(),a=E();n.status.textContent=a?`▶ PLAYING`:`■ STOPPED`,n.status.dataset.playing=String(a),n.title.textContent=x(),n.album.textContent=S();let d=T(),f=C();n.elapsed.textContent=e(d),n.total.textContent=f>0?e(f):`--:--`,u||(n.seek.value=String(f>0?Math.round(d/f*1e3):0),n.seek.disabled=f<=0||g()),n.playPause.textContent=a?`❚❚`:`▶`,n.playPause.setAttribute(`aria-label`,a?`Pause`:`Play`),n.playlistTitle.dataset.title=`Playlist (${t})`,n.source.textContent=r===`remote`?`remote · ${v.address.replace(/^https?:\/\//,``)||`—`}`:i.length>0?`local · ${i.length} files`:`no source`,n.remoteState.textContent=r===`remote`?`${s}${c?` — ${c}`:``}`:`not connected`,n.remoteState.dataset.status=r===`remote`?s:`idle`,n.disconnect.hidden=r!==`remote`;let m=r===`remote`&&o.note!==``?o.note:l;n.note.textContent=m,n.note.hidden=m===``,_e(),n.glyphs.textContent=p.map(F).join(``);let[h,ee]=g()?o.levels:_.levels();n.levels.textContent=`L${`▮`.repeat(Math.round(h*6)).padEnd(6,`·`)} R${`▮`.repeat(Math.round(ee*6)).padEnd(6,`·`)}`}let L=``,R=-1;function _e(){let a=r===`remote`?o.tracks.map(e=>({name:t(e),seconds:e.duration,group:e.group??``})):i.map(e=>({name:t(e),seconds:e.duration,group:``})),s=`${r}:${a.map(e=>`${e.name}@${e.seconds}@${e.group}`).join(`|`)}`;if(s!==L){L=s;let t=[],r=``,i=a.some(e=>e.group!==``);a.forEach((n,a)=>{n.group!==r&&(i||n.group!==``)&&(r=n.group,t.push(ve(n.group)));let o=document.createElement(`li`);o.className=`row`,o.dataset.index=String(a);let s=document.createElement(`span`);s.className=`n`,s.textContent=String(a+1).padStart(2,` `);let c=document.createElement(`span`);c.className=`name`,c.textContent=n.name;let l=document.createElement(`span`);l.className=`time`,l.textContent=n.seconds>0?e(n.seconds):`--:--`,o.append(s,c,l),t.push(o)}),n.playlist.replaceChildren(...t)}let c=b(),l=E(),u;for(let e of Array.from(n.playlist.children)){let t=e,n=Number(t.dataset.index),r=Number.isInteger(n)&&n===c;t.classList.toggle(`selected`,r),t.classList.toggle(`playing`,r&&l),r&&(u=t)}c!==R&&(R=c,u?.scrollIntoView({block:`nearest`}))}function ve(e){let t=document.createElement(`li`);t.className=`group`;let r=document.createElement(`span`);if(r.className=`group-name`,r.textContent=e===``?`This server's library`:e,t.append(r),e!==``&&!n.adminPanel.hidden){let n=document.createElement(`button`);n.type=`button`,n.className=`group-remove`,n.textContent=`×`,n.title=`Remove ${e} from the playlist`,n.setAttribute(`aria-label`,`Remove ${e} from the playlist`),n.addEventListener(`click`,t=>{t.stopPropagation(),ye(e)}),t.append(n)}return t}async function ye(e){try{let t=await fetch(v.url(`/api/source/remove`),{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({group:e})}),n=await t.json();W(t.ok?`Removed ${n.removed??0} tracks from ${e}.`:n.error??`that did not work`)}catch{W(`could not reach the server`)}}function z(){let t=n.canvas,r=Math.min(2,globalThis.devicePixelRatio||1),i=Math.round(t.clientWidth*r),a=Math.round(t.clientHeight*r);i>0&&a>0&&(t.width!==i||t.height!==a)&&(t.width=i,t.height=a);let s=t.getContext(`2d`);if(g())m=N(m,p);else{let e=_.read();e.length>0&&(h.length!==25&&(h=ue(24,e.length)),p=fe(p,de(e,h)),m=N(m,p))}if(s){let e=getComputedStyle(document.documentElement);pe(s,{width:t.width,height:t.height},p,m,{bar:e.getPropertyValue(`--green`).trim()||`#4af689`,peak:e.getPropertyValue(`--green-dim`).trim()||`#227a4a`,background:`transparent`})}if(E()){n.glyphs.textContent=p.map(F).join(``);let[t,r]=g()?o.levels:_.levels();n.levels.textContent=`L${`▮`.repeat(Math.round(t*6)).padEnd(6,`·`)} R${`▮`.repeat(Math.round(r*6)).padEnd(6,`·`)}`,n.elapsed.textContent=e(T());let i=C();!u&&i>0&&(n.seek.value=String(Math.round(T()/i*1e3)))}requestAnimationFrame(z)}function B(e){n.video.hidden=!e,n.fullscreen.hidden=!e}function V(){`mediaSession`in navigator&&(navigator.mediaSession.metadata=new MediaMetadata({title:x(),album:S(),artist:`nixamp`,artwork:[{src:`/icons/icon-512.png`,sizes:`512x512`,type:`image/png`}]}),navigator.mediaSession.setActionHandler(`play`,()=>void k()),navigator.mediaSession.setActionHandler(`pause`,()=>void k()),navigator.mediaSession.setActionHandler(`nexttrack`,()=>void j(1)),navigator.mediaSession.setActionHandler(`previoustrack`,()=>void j(-1)))}n.playlist.addEventListener(`click`,e=>{let t=e.target.closest(`li`),n=Number(t?.dataset.index);Number.isInteger(n)&&D(n)}),n.fullscreen.addEventListener(`click`,()=>{let e=n.video;if(document.fullscreenElement){document.exitFullscreen().catch(()=>{});return}if(typeof e.requestFullscreen==`function`){e.requestFullscreen().catch(()=>{e.webkitEnterFullscreen?.()});return}e.webkitEnterFullscreen?.()}),n.prev.addEventListener(`click`,()=>void j(-1)),n.next.addEventListener(`click`,()=>void j(1)),n.stop.addEventListener(`click`,()=>void M()),n.playPause.addEventListener(`click`,()=>void k()),n.seek.addEventListener(`input`,()=>{u=!0}),n.seek.addEventListener(`change`,()=>{let e=C();e>0&&_.seek(Number(n.seek.value)/1e3*e),u=!1}),n.volume.addEventListener(`input`,()=>{let e=Number(n.volume.value)/100;_.volume=e;try{localStorage.setItem(he,String(e))}catch{}});let be=e=>{e.addEventListener(`change`,()=>{let t=ee(Array.from(e.files??[]));if(t.length===0){l=`Nothing playable in that selection.`,I();return}te(i),i=t,a=0,r=`local`,v.close(),l=``,D(0)})};be(n.files),be(n.folder),n.remoteForm.addEventListener(`submit`,e=>{e.preventDefault();let t=n.remoteUrl.value,{base:i,key:a}=ie(t);if(i===``){l=`That is not an address.`,I();return}(async()=>{s=`connecting`,I();let e=le(i);if(e){s=`error`,c=e,l=e,r=`local`,I();return}if(await A(i,void 0,a)===null){s=`error`;let e=se(i);c=e?`needs the server's name`:`not answering`,l=e||`Nothing answered at ${i}. If that is your machine, it is off or nixamp is not running on it; otherwise check the address.`,r=`local`,I();return}let n=await ce(i,a);if(n){s=`error`,c=n,l=n,r=`local`,I();return}r=`remote`,l=``;try{localStorage.setItem(me,t.trim())}catch{}v.connect(t),Q(),He(!0),G(),X(),I()})()});let H=async()=>{n.directory.hidden=!1,n.directoryNote.textContent=`Looking for live streams…`,n.directoryList.replaceChildren();let e;try{let t=await fetch(`/api/directory`);if(!t.ok)throw Error(String(t.status));let n=await t.json();e=n.streams??[],ke(n.recent??[])}catch{n.directoryNote.textContent=`The directory is not answering. Type an address instead.`;return}if(e.length===0){n.directoryNote.textContent=`Nobody is streaming right now.`;return}n.directoryNote.textContent=`${e.length} live ${e.length===1?`stream`:`streams`}:`;for(let t of e){let e=document.createElement(`li`),r=document.createElement(`button`);r.type=`button`;let i=document.createElement(`span`);i.className=`name`,i.textContent=t.name;let a=document.createElement(`span`);a.className=`detail`;let o=[t.nowPlaying,`${t.tracks} tracks`].filter(Boolean);if(t.code&&o.push(t.callers?`☎ ${t.code} · ${t.callers} on the phone`:`☎ ${t.code}`),a.textContent=o.join(` · `),r.append(i,a),r.addEventListener(`click`,()=>{n.remoteUrl.value=t.url,n.directory.hidden=!0,n.remoteForm.requestSubmit()}),e.append(r),t.ownerId&&J&&t.ownerId!==J&&e.append(Me(t.ownerId,t.name)),t.ownerId&&J&&t.ownerId===J){let r=document.createElement(`button`);r.type=`button`,r.className=`ghost`,r.textContent=`Take off the list`,r.addEventListener(`click`,e=>{e.stopPropagation(),r.disabled=!0,(async()=>{try{let e=await fetch(`/api/directory?id=${encodeURIComponent(t.id)}`,{method:`DELETE`}),r=await e.json().catch(()=>({}));n.directoryNote.textContent=e.ok?`${t.name} is off the list.`:r.error??`that did not work`}catch{n.directoryNote.textContent=`could not reach the directory`}finally{await H()}})()}),e.append(r)}n.directoryList.append(e)}};if(location.pathname.replace(/\/+$/,``)===`/directory`){document.body.classList.add(`route-directory`);let e=document.getElementById(`directory-back`);e&&(e.hidden=!1),H()}let U=null,xe=e=>e===`cgnat`?`mobile or tailscale`:e===`private`?`your network`:e===`local`?`this machine`:e===`public`?`the internet`:e,Se=e=>e===`events`?`watching the panel`:e===`page`?`opened the page`:e===`media`?`playing a track`:e===`stream`?`listening live`:e,Ce=``,we=``,Te=e=>{let t=e.map(e=>`${e.address}|${e.kind}|${e.track}|${Math.round(e.bytes/4096)}|${e.endedAt}`).join(`~`);if(t===Ce)return;Ce=t,n.adminConnections.replaceChildren();let r=document.createElement(`tr`);for(let e of[`Where`,`Network`,`Kind`,`Client`,`Track`,`Sent`]){let t=document.createElement(`th`);t.textContent=e,r.append(t)}n.adminConnections.append(r);for(let t of e.slice(0,40)){let e=document.createElement(`tr`);t.endedAt!==null&&(e.className=`ended`);let r=[[t.address,``],[xe(t.network),`network-${t.network}`],[Se(t.kind),``],[t.agent,``],[t.track||`—`,``],[`${Math.round(t.bytes/1024)} KiB`,``]];for(let[t,n]of r){let r=document.createElement(`td`);r.textContent=t,n&&(r.className=n),e.append(r)}n.adminConnections.append(e)}};function W(e){n.adminSaid.textContent=e,n.adminSaid.hidden=e===``}let Ee=async()=>{try{let e=await fetch(v.url(`/api/connections`));if(!e.ok)return;let t=await e.json(),r=(t.connections??[]).filter(e=>e.endedAt===null&&e.kind!==`media`&&e.kind!==`stream`).length,i=t.active??0;n.adminNote.textContent=r===0?`${i} listening now.`:`${i} listening now, and ${r} with the page open.`,Te(t.connections??[]),De(t.publish??[],(t.channels??[]).map(e=>e.id)),Q()}catch{n.adminNote.textContent=`lost touch with the server`}};function De(e,t){n.publishPanel.hidden=e.length===0;let r=`${e.map(e=>`${e.id}=${e.url}`).join(`~`)}::${t.join(`,`)}`;if(r===we)return;if(we=r,e.length===0){n.publishList.replaceChildren();return}let i=e.length-t.length;n.publishNote.textContent=`Point OBS, Larix or ffmpeg at one of these. One publisher per URL — ${e.length} at once, ${i} free right now.`,n.publishList.replaceChildren(...e.map(e=>{let n=t.includes(e.id),r=document.createElement(`li`);n&&(r.className=`in-use`);let i=document.createElement(`span`);i.className=`slot`,i.textContent=n?`${e.id} · live`:e.id;let a=document.createElement(`input`);a.type=`text`,a.readOnly=!0,a.value=e.url,a.setAttribute(`aria-label`,`RTMP URL for ${e.id}`);let o=document.createElement(`button`);return o.type=`button`,o.className=`ghost`,o.textContent=`Copy`,o.addEventListener(`click`,()=>{a.select(),navigator.clipboard?.writeText(e.url).catch(()=>{})}),r.append(i,a,o),r}))}let G=async()=>{if(r!==`remote`){n.adminPanel.hidden=!0,n.publishPanel.hidden=!0,U&&clearInterval(U),U=null;return}let e=!1,t=null,i=!1;try{let n=await fetch(v.url(`/api/admin`));if(n.ok){let r=await n.json();e=r.allowed===!0,t=r.as??null,i=r.claimed===!0}}catch{e=!1}if(n.adminPanel.hidden=!e,U&&clearInterval(U),U=null,X(),n.listenOnly.hidden=e,!e){n.listenOnly.textContent=i?`This is a listen-only link: you can hear this server but not change what it plays. Use its control link — the first one it printed — or sign in as its owner.`:`This is a listen-only link: you can hear this server but not change what it plays. Use its control link, the first one it printed.`;return}n.adminNote.textContent=t===`owner`?`You own this server.`:`You hold this server's control link.`,Ee(),U=setInterval(()=>void Ee(),2e3)};n.adminRestream.addEventListener(`submit`,e=>{e.preventDefault();let t=n.adminSource.value.trim();if(!t)return;W(`Reading ${t}…`);let r=n.adminReplace.checked;(async()=>{try{let e=await fetch(v.url(`/api/source`),{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({source:t,...r?{replace:!0}:{}})}),i=await e.json();W(e.ok?r?`Now serving ${t}.`:i.added===0?`Everything there was already in the playlist.`:`Added ${i.added??0} tracks from ${t}.`:i.error??`that did not work`),e.ok&&(n.adminSource.value=``,X(),Q())}catch{W(`could not reach the server`)}})()});let Oe=e=>{let t=Math.max(1,Math.round((Date.now()-e)/6e4));if(t<60)return`${t} minute${t===1?``:`s`} ago`;let n=Math.round(t/60);return`${n} hour${n===1?``:`s`} ago`},ke=e=>{n.recentList.replaceChildren();let t=J?e.filter(e=>e.ownerId&&e.ownerId!==J):[];if(n.recentNote.hidden=t.length===0,t.length!==0)for(let e of t){let t=document.createElement(`li`),r=document.createElement(`span`);r.className=`recent-label`;let i=document.createElement(`span`);i.className=`name`,i.textContent=e.name;let a=document.createElement(`span`);a.className=`detail`,a.textContent=e.nowPlaying?`${e.nowPlaying} · ended ${Oe(e.endedAt)}`:`ended ${Oe(e.endedAt)}`,r.append(i,a),t.append(r,Me(e.ownerId,e.name)),n.recentList.append(t)}},Ae=async()=>{n.serversList.replaceChildren();try{let e=await fetch(`/api/v1/servers`);if(!e.ok){n.serversPanel.hidden=!0;return}let t=(await e.json()).servers??[];n.serversPanel.hidden=!1,n.serversNote.textContent=t.length===0?"No servers yet. `nixamp server add --here` remembers the one you are running.":`The machines on your account. Open one, or forget it.`;for(let e of t){let t=document.createElement(`li`),r=document.createElement(`span`);r.className=`recent-label`;let i=document.createElement(`span`);i.className=`name`,i.textContent=e.name;let a=document.createElement(`span`);a.className=`detail`,a.textContent=e.url,r.append(i,a);let o=document.createElement(`button`);o.type=`button`,o.className=`button`,o.textContent=`Open`,o.addEventListener(`click`,()=>{n.remoteUrl.value=e.key?`${e.url}/admin/${e.key}`:e.url,n.remoteForm.requestSubmit()}),A(e.url).then(n=>{if(n!==null){a.textContent=`${e.url} · ${n}`;return}a.textContent=`${e.url} · not answering`,t.classList.add(`offline`),o.disabled=!0,o.title=`That machine is not answering. Start nixamp on it.`});let s=document.createElement(`button`);s.type=`button`,s.className=`ghost`,s.textContent=`Forget`,s.addEventListener(`click`,()=>{(async()=>{s.disabled=!0;try{await fetch(`/api/v1/servers/${encodeURIComponent(e.id)}`,{method:`DELETE`}),await Ae()}catch{s.disabled=!1}})()}),t.append(r,o,s),n.serversList.append(t)}}catch{n.serversPanel.hidden=!0}},je=async()=>{n.followingList.replaceChildren();try{let e=await fetch(`/api/v1/follows`);if(!e.ok){n.followingNote.hidden=!0;return}let t=(await e.json()).following??[];n.followingNote.hidden=t.length===0;for(let e of t){let t=document.createElement(`li`),r=document.createElement(`span`);r.className=`recent-label`;let i=document.createElement(`span`);i.className=`name`,i.textContent=e.name||`a nixamp`;let a=document.createElement(`span`);a.className=`detail`,a.textContent=e.live?`live now`:`not streaming`,r.append(i,a);let o=document.createElement(`button`);o.type=`button`,o.className=`ghost follow`,o.textContent=`Unfollow`,o.addEventListener(`click`,()=>{(async()=>{o.disabled=!0;try{await fetch(`/api/v1/follows/${encodeURIComponent(e.id)}`,{method:`DELETE`}),t.remove(),n.followingList.children.length===0&&(n.followingNote.hidden=!0)}finally{o.disabled=!1}})()}),t.append(r,o),n.followingList.append(t)}}catch{n.followingNote.hidden=!0}},Me=(e,t)=>{let n=document.createElement(`button`);n.type=`button`,n.className=`ghost follow`,n.textContent=`Follow`,n.setAttribute(`aria-label`,`Follow ${t}`);let r=e=>{n.textContent=e?`Following`:`Follow`,n.dataset.following=e?`yes`:`no`};return(async()=>{try{let t=await fetch(`/api/v1/follows/${encodeURIComponent(e)}`);t.ok&&r((await t.json()).following===!0)}catch{}})(),n.addEventListener(`click`,()=>{(async()=>{let t=n.dataset.following===`yes`;n.disabled=!0;try{(await fetch(`/api/v1/follows/${encodeURIComponent(e)}`,{method:t?`DELETE`:`PUT`,headers:{"content-type":`application/json`},body:t?void 0:`{}`})).ok&&(r(!t),je())}catch{}finally{n.disabled=!1}})()}),n},Ne=e=>{let t=(e+`=`.repeat((4-e.length%4)%4)).replace(/-/g,`+`).replace(/_/g,`/`),n=atob(t),r=new Uint8Array(new ArrayBuffer(n.length));for(let e=0;e<n.length;e+=1)r[e]=n.charCodeAt(e);return r},Pe=()=>`serviceWorker`in navigator&&`PushManager`in window&&`Notification`in window,Fe=async()=>{if(!Pe())return n.notifyNote.textContent=`This browser cannot show notifications.`,!1;if(Notification.permission===`denied`)return n.notifyNote.textContent=`This browser is blocking notifications. Allow them in site settings first.`,!1;if(await Notification.requestPermission()!==`granted`)return n.notifyNote.textContent=`Not allowed, so nothing will be sent here.`,!1;try{let e=await navigator.serviceWorker.ready,{publicKey:t}=await(await fetch(`/api/v1/notify/key`)).json();if(!t)return n.notifyNote.textContent=`This server is not set up to send notifications.`,!1;let r=await e.pushManager.getSubscription()??await e.pushManager.subscribe({userVisibleOnly:!0,applicationServerKey:Ne(t)}),i=await fetch(`/api/v1/notify/subscribe`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify(r.toJSON())});if(!i.ok)throw Error(String(i.status));return n.notifyNote.textContent=`This device will be told.`,!0}catch{return n.notifyNote.textContent=`Could not set this device up.`,!1}},Ie=async()=>{try{let e=await(await navigator.serviceWorker.ready).pushManager.getSubscription();if(!e)return;await fetch(`/api/v1/notify/subscribe?endpoint=${encodeURIComponent(e.endpoint)}`,{method:`DELETE`}),await e.unsubscribe()}catch{}},K=async e=>{try{let t=await fetch(`/api/v1/notify/prefs`,{method:`PUT`,headers:{"content-type":`application/json`},body:JSON.stringify(e)}),r=await t.json();n.notifyPhoneNote.textContent=t.ok?``:r.error??`that did not save`,t.ok&&typeof r.phone==`string`&&(n.notifyPhone.value=r.phone)}catch{n.notifyPhoneNote.textContent=`could not reach nixamp.com`}},Le=async()=>{try{let e=await fetch(`/api/v1/notify/prefs`);if(!e.ok)return;let t=await e.json();n.notifyEmail.checked=t.wantsEmail!==!1,n.notifySms.checked=t.wantsSms===!0,n.notifyPhone.value=t.phone??``;let r=Pe()&&Notification.permission===`granted`?await(await navigator.serviceWorker.ready).pushManager.getSubscription()!==null:!1;n.notifyWeb.checked=t.wantsWeb!==!1&&r,n.notifyNote.textContent=r?`Get told when someone you follow goes live.`:`Turn on “On this device” to be told here.`}catch{}};n.notifyWeb.addEventListener(`change`,()=>{(async()=>{if(n.notifyWeb.checked){let e=await Fe();n.notifyWeb.checked=e,await K({wantsWeb:e});return}await Ie(),await K({wantsWeb:!1}),n.notifyNote.textContent=`Turn on “On this device” to be told here.`})()}),n.notifyEmail.addEventListener(`change`,()=>{K({wantsEmail:n.notifyEmail.checked})}),n.notifySms.addEventListener(`change`,()=>{(async()=>{if(n.notifySms.checked&&!n.notifyPhone.value.trim()){n.notifyPhoneNote.textContent=`Add a phone number first.`,n.notifySms.checked=!1,n.notifyPhone.focus();return}await K({wantsSms:n.notifySms.checked})})()}),n.notifyPhoneForm.addEventListener(`submit`,e=>{e.preventDefault(),K({phone:n.notifyPhone.value.trim()})});let q=!1,J=``,Y=e=>{let t=e!==null;n.notifyPanel.hidden=!t,t?(Le(),je(),Ae()):(n.serversPanel.hidden=!0,n.followingNote.hidden=!0,n.followingList.replaceChildren(),n.recentNote.hidden=!0,n.recentList.replaceChildren()),n.accountForm.hidden=t,n.accountProviders.hidden=t||n.accountProviders.childElementCount===0,n.accountSignOut.hidden=!t,n.accountNote.textContent=t?`Signed in as ${e}.`:q?`Create an account on nixamp.com.`:`Sign in to nixamp.com to publish and get paid.`,n.accountSubmit.textContent=q?`Create account`:`Sign in`,n.accountToggle.textContent=q?`I have one`:`Create one`,n.accountPassword.autocomplete=q?`new-password`:`current-password`},Re=async()=>{let e=[],t=!1;try{let n=await fetch(`/api/v1/auth/providers`);n.ok&&(t=!0,e=(await n.json()).providers??[])}catch{}n.accountProviders.replaceChildren(),n.accountProviders.hidden=e.length===0,n.accountPanel.hidden=!t,n.accountElsewhere.hidden=t;for(let t of e){let e=document.createElement(`a`);e.className=`button`,e.href=`/api/v1/${encodeURIComponent(t.id)}/oauth/start`,e.textContent=`Continue with ${t.name}`,n.accountProviders.append(e)}},ze=async()=>{try{let e=await fetch(`/api/v1/auth/me`),t=await e.json();J=e.ok?t.account?.id??``:``,Y(e.ok?t.account?.email??`you`:null)}catch{J=``,Y(null)}Be()};function Be(){if(f===``)return;if(J===``){n.accountNote.textContent=`Sign in to watch the stream you were sent.`,n.accountPanel.scrollIntoView({behavior:`smooth`,block:`center`});return}let e=f;f=``,n.remoteUrl.value=e,n.remoteForm.requestSubmit()}n.accountToggle.addEventListener(`click`,()=>{q=!q,Y(null)}),n.accountForm.addEventListener(`submit`,e=>{e.preventDefault();let t=n.accountEmail.value.trim(),r=n.accountPassword.value;(async()=>{n.accountSubmit.disabled=!0;try{let e=await fetch(`/api/v1/auth/${q?`signup`:`login`}`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({email:t,password:r})}),i=await e.json();if(!e.ok){n.accountNote.textContent=i.error??`that did not work`;return}J=i.account?.id??``,n.accountPassword.value=``,Y(i.account?.email??t),G(),Be()}catch{n.accountNote.textContent=`could not reach nixamp.com`}finally{n.accountSubmit.disabled=!1}})()}),n.accountSignOut.addEventListener(`click`,()=>{(async()=>{try{await fetch(`/api/v1/auth/logout`,{method:`POST`})}catch{}J=``,Y(null),G()})()});try{let e=new URL(globalThis.location.href).searchParams.get(`url`)??``;e!==``&&(f=e,n.remoteUrl.value=e,l=`Sign in to watch this stream.`,globalThis.history?.replaceState(null,``,globalThis.location.pathname))}catch{}Re(),ze(),G(),n.browse.addEventListener(`click`,()=>{if(!n.directory.hidden){n.directory.hidden=!0;return}H(),n.directory.scrollIntoView({behavior:`smooth`,block:`nearest`})}),n.disconnect.addEventListener(`click`,()=>{v.close(),n.listenOnly.hidden=!0,d=-1,n.sharePanel.hidden=!0,n.publishPanel.hidden=!0,n.adminPanel.hidden=!0,n.onairPanel.hidden=!0,He(!1),r=`local`,s=`idle`,c=``,I()});async function X(){if(r!==`remote`||v.shareLink===``){n.sharePanel.hidden=!0;return}n.sharePanel.hidden=!1;let e=v.shareLink,t=globalThis.location.origin;n.shareLink.value=e.startsWith(`https://`)?`${t}/?url=${encodeURIComponent(e)}`:e,n.shareNote.textContent=`Anyone with this link can watch. They sign in once, then it opens.`,n.sharePhone.hidden=!0,n.shareSend.hidden=!0,n.liveControls.hidden=!0;let i=``;try{let e=await fetch(`/api/directory`);e.ok&&(i=(await e.json()).callIn??``)}catch{}let a=null;try{let r=await fetch(v.url(`/api/live/state`));r.ok&&(a=await r.json()),a?.url&&(e=a.url,n.shareLink.value=e.startsWith(`https://`)?`${t}/?url=${encodeURIComponent(e)}`:e)}catch{}if(a){if(n.liveControls.hidden=n.adminPanel.hidden||!a.possible,n.goLive.hidden=a.live,n.stopLive.hidden=!a.live,n.sharePhone.hidden=!1,!a.live){n.sharePhone.textContent=a.possible?`Not listed, so nobody can find this in the directory. Go live to list it, with a phone number and a code anyone can call.`:`This machine has no address the world can reach, so it cannot be listed.`;return}if(!i){n.sharePhone.textContent=`Listed. The code for the phone line is ${a.code}.`,n.shareSend.hidden=!1;return}n.sharePhone.replaceChildren(document.createTextNode(`To talk about it, call `),Ge(i),document.createTextNode(` and key `),Ge(a.code),document.createTextNode(`. That is a room with everyone else watching — not the stream itself.`)),n.shareSend.hidden=!1}}let Ve=``,Z=null,He=e=>{Z&&clearInterval(Z),Z=null,e&&(Z=setInterval(()=>void Q(),6e3))};async function Q(){if(r!==`remote`){n.onairPanel.hidden=!0;return}let e;try{let t=await fetch(v.url(`/api/streams`));if(!t.ok){n.onairPanel.hidden=!0;return}e=await t.json()}catch{n.onairPanel.hidden=!0;return}n.onairPanel.hidden=!1;let t=JSON.stringify(e);if(t===Ve)return;Ve=t,n.onairNote.textContent=e.channels.length===0?`One stream, from this server's own playlist.`:`${e.channels.length+1} streams: this server's playlist, and ${e.channels.length} publishing into it.`;let i=[];i.push(Ue({title:e.server.name,detail:[e.server.nowPlaying||`nothing loaded`,`${e.server.tracks} track${e.server.tracks===1?``:`s`}`,e.server.live&&e.server.code?`☎ ${e.server.code}`:`not listed`].join(` · `),onPlay:()=>{D(b())},link:e.server.live?e.server.url:``}));for(let t of e.channels)i.push(Ue({title:t.name,detail:`live over ${t.via} · ${t.listeners} listening`,onPlay:()=>{_.load({title:t.name,artist:``,album:``,duration:0,url:v.url(`/api/channels/${encodeURIComponent(t.id)}`),video:!0,objectUrl:!1},!0),B(!0)},link:``}));n.onairList.replaceChildren(...i)}function Ue(e){let t=document.createElement(`li`),n=document.createElement(`span`);n.className=`recent-label`;let r=document.createElement(`span`);r.className=`name`,r.textContent=e.title;let i=document.createElement(`span`);i.className=`detail`,i.textContent=e.detail,n.append(r,i);let a=document.createElement(`button`);if(a.type=`button`,a.className=`button`,a.textContent=`Play`,a.addEventListener(`click`,e.onPlay),t.append(n,a),e.link){let n=document.createElement(`button`);n.type=`button`,n.className=`ghost`,n.textContent=`Copy link`,n.addEventListener(`click`,()=>{let t=globalThis.location.origin,n=e.link.startsWith(`https://`)?`${t}/?url=${encodeURIComponent(e.link)}`:e.link;navigator.clipboard?.writeText(n).catch(()=>{})}),t.append(n)}return t}let We=async e=>{n.goLive.disabled=!0,n.stopLive.disabled=!0,n.shareNote.textContent=e?`Going live…`:`Taking it off the list…`;try{let t=await fetch(v.url(e?`/api/live/start`:`/api/live/stop`),{method:`POST`}),r=await t.json();n.shareNote.textContent=t.ok?e?`Live. Anyone can call and key ${r.code??``} to talk about it.`:`Taken off the list. The link still works for anybody who has it.`:r.error??`that did not work`}catch{n.shareNote.textContent=`could not reach the server`}finally{n.goLive.disabled=!1,n.stopLive.disabled=!1,await X()}};n.goLive.addEventListener(`click`,()=>void We(!0)),n.stopLive.addEventListener(`click`,()=>void We(!1));function Ge(e){let t=document.createElement(`b`);return t.textContent=e,t}n.shareCopy.addEventListener(`click`,()=>{n.shareLink.select(),navigator.clipboard?.writeText(n.shareLink.value).then(()=>{n.shareNote.textContent=`Copied. Send it to anybody.`},()=>{n.shareNote.textContent=`Copy it from the box above.`})}),n.shareSend.addEventListener(`submit`,e=>{e.preventDefault();let t=n.shareTo.value.trim();t!==``&&(async()=>{n.shareNote.textContent=`Sending…`;try{let e=await fetch(`/api/v1/invite`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({to:t,stream:v.shareLink})}),r=await e.json();n.shareNote.textContent=e.ok?`Sent to ${r.sent??t}.`:r.error??`that did not send`,e.ok&&(n.shareTo.value=``)}catch{n.shareNote.textContent=`could not send that`}})()}),n.listenHere.addEventListener(`change`,()=>{try{localStorage.setItem(ge,n.listenHere.checked?`1`:`0`)}catch{}r===`remote`&&(async()=>{n.listenHere.checked?(await v.send({type:`stop`}),await O(o.index)):(_.stop(),d=-1),I()})()}),document.addEventListener(`keydown`,e=>{let t=e.target;if(!(t&&/^(INPUT|TEXTAREA|SELECT)$/.test(t.tagName)))switch(e.key){case` `:e.preventDefault(),k();return;case`s`:M();return;case`n`:case`ArrowRight`:j(1);return;case`p`:case`ArrowLeft`:j(-1);return;case`ArrowDown`:e.preventDefault(),D(Math.min(y()-1,b()+1));return;case`ArrowUp`:e.preventDefault(),D(Math.max(0,b()-1));return}});let $=null;globalThis.addEventListener(`beforeinstallprompt`,e=>{e.preventDefault(),$=e,n.install.hidden=!1}),n.install.addEventListener(`click`,()=>{$?.prompt(),$=null,n.install.hidden=!0});try{let e=localStorage.getItem(he);e!==null&&(n.volume.value=String(Math.round(Number(e)*100)),_.volume=Number(e));let t=localStorage.getItem(me);t&&(n.remoteUrl.value=t),localStorage.getItem(ge)===`0`&&(n.listenHere.checked=!1)}catch{}(async()=>{if(n.remoteUrl.value!==``)return;let e=globalThis.location.origin;if(await A(e)===null)return;let t=await oe(e);t&&t.trackCount!==0&&(n.remoteUrl.value=e,r=`remote`,l=``,v.connect(e),I())})(),I(),requestAnimationFrame(z)}F(),`serviceWorker`in navigator&&globalThis.addEventListener(`load`,()=>{navigator.serviceWorker.register(`/sw.js`).catch(()=>{})});export{c as t};