@applicaster/zapp-react-native-utils 16.0.0-rc.59 → 16.0.0-rc.60

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.
@@ -498,6 +498,15 @@ export function HooksManager({
498
498
  presentUI
499
499
  );
500
500
  } catch (e) {
501
+ // Without this the failure is invisible: the hook stops right after the
502
+ // "Executing hook" line, with nothing in the log explaining why and no
503
+ // remaining hook ever running.
504
+ logHookEvent(
505
+ hooksManagerLogger.error,
506
+ `runInBackground: hook ${hookPlugin.identifier} threw: ${e?.message}`,
507
+ { hook: hookPlugin, payload, error: e, stack: e?.stack }
508
+ );
509
+
501
510
  hookPlugin.setStateAndNotify(HOOKS_EVENTS.ERROR, {
502
511
  error: e,
503
512
  hookPlugin,
@@ -19,6 +19,12 @@ export const { log_verbose, log_debug, log_info, log_error } = createLogger({
19
19
  parent: utilsLogger,
20
20
  });
21
21
 
22
+ /**
23
+ * Mirrors `initial_value` for `audio_live_player_update_interval` in
24
+ * `defaultManifestConfigurations/player.js`.
25
+ */
26
+ const DEFAULT_LIVE_CONTENT_UPDATE_INTERVAL_SECONDS = 60;
27
+
22
28
  type ChapterMarkerOriginal = {
23
29
  id: string;
24
30
  title: string;
@@ -40,11 +46,6 @@ export type LiveMetadataConfig = {
40
46
  updateInterval: number;
41
47
  };
42
48
 
43
- export type TitleSummaryEvent = {
44
- title: string | number;
45
- summary: string | number;
46
- };
47
-
48
49
  type ChapterMarkersObserverProps = {
49
50
  player: Player;
50
51
  };
@@ -66,11 +67,9 @@ export class OverlaysObserver {
66
67
  readonly chapterSubject: BehaviorSubject<ChapterMarkerEvent>;
67
68
  private playNextSubject: BehaviorSubject<PlayNextState>;
68
69
  private liveMetadataSubject: BehaviorSubject<LiveMetadataEvent>;
69
- private titleSummarySubject: BehaviorSubject<TitleSummaryEvent>;
70
- private feedUrl: string;
71
- private reloadData: () => void;
72
- private updateTitleAndDescription: (data: any) => void;
73
- private feedDataInterval: any;
70
+ private liveContentInterval: any;
71
+ private liveContentGeneration = 0;
72
+ private _liveEntry: ZappEntry | null = null;
74
73
  private liveMetadataUpdateInterval: any;
75
74
  private releasePlayerObserver?: () => void;
76
75
  readonly entry: ZappEntry;
@@ -86,41 +85,140 @@ export class OverlaysObserver {
86
85
  this.player = player;
87
86
  this.entry = player.getEntry();
88
87
 
89
- this.titleSummarySubject = new BehaviorSubject<TitleSummaryEvent>({
90
- title: this.entry?.title || "",
91
- summary: this.entry?.summary || "",
92
- });
93
-
94
88
  this.liveMetadataSubject = new BehaviorSubject<LiveMetadataEvent>(
95
89
  this.entry?.extensions?.liveMetadata || null
96
90
  );
97
91
 
98
92
  this.chapterMarkerEvents = this.prepareChapterMarkers();
99
93
  this.releasePlayerObserver = this.subscribeToPlayerEvents();
100
- this.feedUrl = "";
101
- this.reloadData = () => {};
102
- this.updateTitleAndDescription = () => {};
103
- this.feedDataInterval = null;
94
+ this.liveContentInterval = null;
104
95
  this.liveMetadataUpdateInterval = null;
105
96
  void this.preparePlayNext();
106
97
  void this.prepareLiveMetadata();
107
98
  }
108
99
 
109
- private setupFeedDataInterval(interval: number) {
110
- if (this.feedUrl && this.reloadData && this.updateTitleAndDescription) {
111
- this.feedDataInterval = setInterval(() => {
112
- this.reloadData();
113
- }, interval * 1000);
100
+ /**
101
+ * Polls the live feed and pushes each loaded entry into the player, which
102
+ * re-resolves its Title/Subtitle and publishes on its content channel.
103
+ *
104
+ * Runs entirely outside React: `loadFeedEntry` builds its request through
105
+ * `RequestBuilder.setUrl`, which inflates URL macros with the entry and
106
+ * screen contexts, so no `useInflatedUrl` is needed. `prepareLiveMetadata`
107
+ * below already polls this way.
108
+ */
109
+ public startLiveContentUpdates() {
110
+ this.stopLiveContentUpdates();
111
+
112
+ if (!this.player?.isLive?.()) {
113
+ log_debug("startLiveContentUpdates: Player is not live. Skipping...");
114
+
115
+ return;
114
116
  }
117
+
118
+ const feedUrl = this.getLiveContentFeedUrl();
119
+
120
+ if (!feedUrl) {
121
+ log_debug(
122
+ "startLiveContentUpdates: Entry carries no live channel feed. Skipping..."
123
+ );
124
+
125
+ return;
126
+ }
127
+
128
+ const intervalSeconds = this.getLiveContentUpdateInterval();
129
+
130
+ // Clearing the interval cannot cancel a request already in flight, so each
131
+ // run carries the generation it started in. A response that arrives after
132
+ // a stop or a restart belongs to a channel that is no longer playing and
133
+ // is dropped, rather than publishing the previous programme's title over
134
+ // the current one.
135
+ const generation = ++this.liveContentGeneration;
136
+
137
+ const load = async () => {
138
+ try {
139
+ const entry = await loadFeedEntry(feedUrl, this.entry);
140
+
141
+ if (generation !== this.liveContentGeneration) {
142
+ return;
143
+ }
144
+
145
+ this._liveEntry = entry;
146
+ this.player.publishContent();
147
+ } catch {
148
+ // `loadFeedEntry` already logs the failure. Keep whatever content is
149
+ // currently published rather than blanking the title on a transient
150
+ // network error.
151
+ }
152
+ };
153
+
154
+ void load();
155
+
156
+ this.liveContentInterval = setInterval(load, intervalSeconds * 1000);
115
157
  }
116
158
 
117
- public clearFeedDataInterval() {
118
- if (this.feedDataInterval) {
119
- clearInterval(this.feedDataInterval);
120
- this.feedDataInterval = null;
159
+ public stopLiveContentUpdates() {
160
+ // Invalidates any in-flight request as well as the interval.
161
+ this.liveContentGeneration += 1;
162
+
163
+ if (this.liveContentInterval) {
164
+ clearInterval(this.liveContentInterval);
165
+ this.liveContentInterval = null;
121
166
  }
122
167
  }
123
168
 
169
+ /**
170
+ * The programme feed for the channel currently playing. Derived here rather
171
+ * than by the caller so no UI component needs to know where a live channel
172
+ * keeps its feed, or that the URL has to be rewritten to reach the
173
+ * programme ("livePage") view of it.
174
+ */
175
+ private getLiveContentFeedUrl(): string {
176
+ const channelSrc =
177
+ this.player.getEntry()?.extensions?.live?.channel_src ?? "";
178
+
179
+ return channelSrc.replace(new RegExp("subClass", "g"), "livePage");
180
+ }
181
+
182
+ /**
183
+ * Falls back to the manifest's own `initial_value` when the app ships no
184
+ * value: `intervalSeconds * 1000` would otherwise be `NaN`, and
185
+ * `setInterval` treats `NaN` as `0` - a tight loop hammering the feed.
186
+ */
187
+ private getLiveContentUpdateInterval(): number {
188
+ const configured =
189
+ this.player.getPluginConfiguration()?.audio_live_player_update_interval;
190
+
191
+ const seconds = Number(configured);
192
+
193
+ return Number.isFinite(seconds) && seconds > 0
194
+ ? seconds
195
+ : DEFAULT_LIVE_CONTENT_UPDATE_INTERVAL_SECONDS;
196
+ }
197
+
198
+ /**
199
+ * The entry most recently loaded from the live channel feed - the programme
200
+ * currently on air, as opposed to `player.entry`, which is the channel and
201
+ * stays put for the whole listening session.
202
+ *
203
+ * Read by `Player.getContent()`, which prefers it over the player's own
204
+ * entry. It lives here rather than on `Player` because it is live-feed
205
+ * state, like `liveMetadata` and play-next: a VOD or cast player never has
206
+ * an observer at all, so it never carries this either.
207
+ */
208
+ public get liveEntry(): ZappEntry | null {
209
+ return this._liveEntry;
210
+ }
211
+
212
+ /**
213
+ * Called by `Player`'s `entry` setter. The live entry is an overlay on the
214
+ * current entry, so its lifetime is scoped to that entry: without this, a
215
+ * programme from a previous channel would shadow the new one forever - the
216
+ * content would change but the title would not.
217
+ */
218
+ public clearLiveEntry() {
219
+ this._liveEntry = null;
220
+ }
221
+
124
222
  public clearLiveMetadataUpdateInterval() {
125
223
  if (this.liveMetadataUpdateInterval) {
126
224
  clearInterval(this.liveMetadataUpdateInterval);
@@ -128,22 +226,6 @@ export class OverlaysObserver {
128
226
  }
129
227
  }
130
228
 
131
- public setFeedDataHandlers(
132
- feedUrl: string,
133
- reloadData: () => void,
134
- interval: number,
135
- updateTitleAndDescription: (data: any) => void
136
- ) {
137
- this.feedUrl = feedUrl;
138
- this.reloadData = reloadData;
139
- this.updateTitleAndDescription = updateTitleAndDescription;
140
- this.setupFeedDataInterval(interval);
141
- }
142
-
143
- public getTitleSummaryObservable(): Observable<TitleSummaryEvent> {
144
- return this.titleSummarySubject.asObservable().pipe(distinctUntilChanged());
145
- }
146
-
147
229
  hidePlayNext = () => {
148
230
  this.isPlayNextSuppressed = true;
149
231
  this.playNextSubject.next(null);
@@ -398,9 +480,8 @@ export class OverlaysObserver {
398
480
  this.chapterSubject.complete();
399
481
  this.playNextSubject.complete();
400
482
  this.liveMetadataSubject.complete();
401
- this.titleSummarySubject.complete();
402
483
  this.releasePlayerObserver?.();
403
- this.clearFeedDataInterval();
484
+ this.stopLiveContentUpdates();
404
485
  this.clearLiveMetadataUpdateInterval();
405
486
  this.releasePlayerObserver = null;
406
487
  };
@@ -0,0 +1,205 @@
1
+ import { OverlaysObserver } from "../OverlaysObserver";
2
+ import { loadFeedEntry } from "../utils";
3
+
4
+ jest.mock("../utils", () => ({
5
+ ...jest.requireActual("../utils"),
6
+ loadFeedEntry: jest.fn(),
7
+ }));
8
+
9
+ const FEED_ENTRY = { title: "Programme One" } as unknown as ZappEntry;
10
+
11
+ const CHANNEL_ENTRY = {
12
+ title: "Channel",
13
+ extensions: { live: { channel_src: "https://feed.test/subClass/audio" } },
14
+ } as unknown as ZappEntry;
15
+
16
+ const makePlayer = ({
17
+ isLive = true,
18
+ entry = CHANNEL_ENTRY,
19
+ configuration = { audio_live_player_update_interval: 30 },
20
+ }: {
21
+ isLive?: boolean;
22
+ entry?: ZappEntry;
23
+ configuration?: Record<string, any>;
24
+ } = {}) => ({
25
+ isLive: () => isLive,
26
+ getEntry: () => entry,
27
+ getPluginConfiguration: () => configuration,
28
+ publishContent: jest.fn(),
29
+ addListener: jest.fn(() => () => {}),
30
+ removeListener: jest.fn(),
31
+ });
32
+
33
+ describe("OverlaysObserver live content", () => {
34
+ beforeEach(() => {
35
+ jest.useFakeTimers();
36
+ (loadFeedEntry as jest.Mock).mockReset();
37
+ (loadFeedEntry as jest.Mock).mockResolvedValue(FEED_ENTRY);
38
+ });
39
+
40
+ afterEach(() => {
41
+ jest.useRealTimers();
42
+ });
43
+
44
+ it("stores the loaded programme and asks the player to republish", async () => {
45
+ const player = makePlayer();
46
+ const observer = new OverlaysObserver({ player } as any);
47
+
48
+ observer.startLiveContentUpdates();
49
+
50
+ await Promise.resolve();
51
+ await Promise.resolve();
52
+
53
+ expect(observer.liveEntry).toBe(FEED_ENTRY);
54
+ expect(player.publishContent).toHaveBeenCalled();
55
+
56
+ observer.stopLiveContentUpdates();
57
+ });
58
+
59
+ it("clears the stored programme on clearLiveEntry", async () => {
60
+ const player = makePlayer();
61
+ const observer = new OverlaysObserver({ player } as any);
62
+
63
+ observer.startLiveContentUpdates();
64
+
65
+ await Promise.resolve();
66
+ await Promise.resolve();
67
+
68
+ observer.clearLiveEntry();
69
+
70
+ expect(observer.liveEntry).toBeNull();
71
+
72
+ observer.stopLiveContentUpdates();
73
+ });
74
+
75
+ it("reloads on the configured interval", async () => {
76
+ const player = makePlayer();
77
+ const observer = new OverlaysObserver({ player } as any);
78
+
79
+ observer.startLiveContentUpdates();
80
+
81
+ await Promise.resolve();
82
+
83
+ (loadFeedEntry as jest.Mock).mockClear();
84
+
85
+ jest.advanceTimersByTime(30_000);
86
+
87
+ expect(loadFeedEntry).toHaveBeenCalledTimes(1);
88
+
89
+ observer.stopLiveContentUpdates();
90
+ });
91
+
92
+ it("stops polling after stopLiveContentUpdates", async () => {
93
+ const player = makePlayer();
94
+ const observer = new OverlaysObserver({ player } as any);
95
+
96
+ observer.startLiveContentUpdates();
97
+
98
+ await Promise.resolve();
99
+
100
+ observer.stopLiveContentUpdates();
101
+
102
+ (loadFeedEntry as jest.Mock).mockClear();
103
+
104
+ jest.advanceTimersByTime(90_000);
105
+
106
+ expect(loadFeedEntry).not.toHaveBeenCalled();
107
+ });
108
+
109
+ it("keeps the previous content when a poll fails", async () => {
110
+ const player = makePlayer();
111
+ const observer = new OverlaysObserver({ player } as any);
112
+
113
+ (loadFeedEntry as jest.Mock).mockRejectedValue(new Error("network"));
114
+
115
+ observer.startLiveContentUpdates();
116
+
117
+ await Promise.resolve();
118
+ await Promise.resolve();
119
+
120
+ expect(observer.liveEntry).toBeNull();
121
+ expect(player.publishContent).not.toHaveBeenCalled();
122
+
123
+ observer.stopLiveContentUpdates();
124
+ });
125
+
126
+ it("drops a response that arrives after polling was stopped", async () => {
127
+ const player = makePlayer();
128
+ const observer = new OverlaysObserver({ player } as any);
129
+
130
+ let resolveLoad: (entry: ZappEntry) => void;
131
+
132
+ (loadFeedEntry as jest.Mock).mockReturnValue(
133
+ new Promise<ZappEntry>((resolve) => {
134
+ resolveLoad = resolve;
135
+ })
136
+ );
137
+
138
+ observer.startLiveContentUpdates();
139
+ observer.stopLiveContentUpdates();
140
+
141
+ // The request was already in flight when polling stopped: clearing the
142
+ // interval cannot cancel it, so its result must be ignored rather than
143
+ // published over whatever is playing now.
144
+ resolveLoad(FEED_ENTRY);
145
+
146
+ await Promise.resolve();
147
+ await Promise.resolve();
148
+
149
+ expect(observer.liveEntry).toBeNull();
150
+ expect(player.publishContent).not.toHaveBeenCalled();
151
+ });
152
+
153
+ it("does not start polling when the entry carries no live channel feed", () => {
154
+ const player = makePlayer({ entry: { title: "No Feed" } as ZappEntry });
155
+ const observer = new OverlaysObserver({ player } as any);
156
+
157
+ observer.startLiveContentUpdates();
158
+
159
+ expect(loadFeedEntry).not.toHaveBeenCalled();
160
+ });
161
+
162
+ it("does not start polling for on-demand content", () => {
163
+ const player = makePlayer({ isLive: false });
164
+ const observer = new OverlaysObserver({ player } as any);
165
+
166
+ observer.startLiveContentUpdates();
167
+
168
+ expect(loadFeedEntry).not.toHaveBeenCalled();
169
+ });
170
+
171
+ it("rewrites the channel url to reach the programme feed", () => {
172
+ const player = makePlayer();
173
+ const observer = new OverlaysObserver({ player } as any);
174
+
175
+ observer.startLiveContentUpdates();
176
+
177
+ expect(loadFeedEntry).toHaveBeenCalledWith(
178
+ "https://feed.test/livePage/audio",
179
+ expect.anything()
180
+ );
181
+
182
+ observer.stopLiveContentUpdates();
183
+ });
184
+
185
+ it("falls back to the manifest default interval when none is configured", async () => {
186
+ // An unset value would make `intervalSeconds * 1000` NaN, and setInterval
187
+ // treats NaN as 0 - a tight loop hammering the feed.
188
+ const player = makePlayer({ configuration: {} });
189
+ const observer = new OverlaysObserver({ player } as any);
190
+
191
+ observer.startLiveContentUpdates();
192
+
193
+ await Promise.resolve();
194
+
195
+ (loadFeedEntry as jest.Mock).mockClear();
196
+
197
+ jest.advanceTimersByTime(59_000);
198
+ expect(loadFeedEntry).not.toHaveBeenCalled();
199
+
200
+ jest.advanceTimersByTime(1_000);
201
+ expect(loadFeedEntry).toHaveBeenCalledTimes(1);
202
+
203
+ observer.stopLiveContentUpdates();
204
+ });
205
+ });
@@ -0,0 +1,49 @@
1
+ import { retrieveFeedUrl, retrievePlayPreviousFeedUrl } from "../utils";
2
+
3
+ const entryWith = (extensions: Record<string, unknown>): ZappEntry =>
4
+ ({ id: "1", type: { value: "video" }, extensions }) as ZappEntry;
5
+
6
+ describe("playlist feed url accessors", () => {
7
+ it("returns the next feed url when present", async () => {
8
+ const entry = entryWith({ play_next_feed_url: "https://feeds/next.json" });
9
+
10
+ await expect(retrieveFeedUrl(entry, [])).resolves.toBe(
11
+ "https://feeds/next.json"
12
+ );
13
+ });
14
+
15
+ it("resolves to null for a missing entry", async () => {
16
+ await expect(
17
+ retrieveFeedUrl(undefined as unknown as ZappEntry, [])
18
+ ).resolves.toBeNull();
19
+ });
20
+
21
+ it("returns the previous feed url when present", () => {
22
+ const entry = entryWith({
23
+ play_previous_feed_url: "https://feeds/prev.json",
24
+ });
25
+
26
+ expect(retrievePlayPreviousFeedUrl(entry)).toBe("https://feeds/prev.json");
27
+ });
28
+
29
+ it("returns undefined when only the next url is present", () => {
30
+ const entry = entryWith({ play_next_feed_url: "https://feeds/next.json" });
31
+
32
+ expect(retrievePlayPreviousFeedUrl(entry)).toBeUndefined();
33
+ });
34
+
35
+ it("returns undefined for an entry with no extensions", () => {
36
+ expect(
37
+ retrievePlayPreviousFeedUrl({
38
+ id: "1",
39
+ type: { value: "video" },
40
+ } as ZappEntry)
41
+ ).toBeUndefined();
42
+ });
43
+
44
+ it("returns undefined for a missing entry", () => {
45
+ expect(
46
+ retrievePlayPreviousFeedUrl(undefined as unknown as ZappEntry)
47
+ ).toBeUndefined();
48
+ });
49
+ });
@@ -85,6 +85,9 @@ export const retrieveFeedUrl = async (
85
85
  return entry?.extensions?.play_next_feed_url;
86
86
  };
87
87
 
88
+ export const retrievePlayPreviousFeedUrl = (entry: ZappEntry) =>
89
+ entry?.extensions?.play_previous_feed_url;
90
+
88
91
  export const retrieveOverlayDuration = (plugin) =>
89
92
  toNumberWithDefault(15, plugin?.configuration?.overlay_duration);
90
93