forked from tsaridas/stremio-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_localStorage.js
70 lines (59 loc) · 2.23 KB
/
load_localStorage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
let isRunning = false;
let cachedData = null;
async function loadJsonAndStoreInLocalStorage() {
if (isRunning) return;
try {
isRunning = true;
const response = await fetch('localStorage.json');
if (!response.ok) {
throw new Error(`Failed to load localStorage.json: ${response.status} ${response.statusText}`);
}
cachedData = await response.json();
processLocalStorageData(cachedData);
} catch (error) {
console.error('Error loading JSON data from localStorage.json:', error);
} finally {
isRunning = false;
}
}
function processLocalStorageData() {
let reload = false;
Object.entries(cachedData).forEach(([key, value]) => {
if (!localStorage.getItem(key)) {
localStorage.setItem(key, JSON.stringify(value));
} else if (key === 'streaming_server_urls') {
const existingData = JSON.parse(localStorage.getItem(key));
const newData = value;
if (Object.keys(newData.items).some(key => !Object.keys(existingData.items).includes(key))) {
const mergedItems = {
...existingData.items,
...newData.items
};
const mergedData = {
uid: existingData.uid,
items: mergedItems
};
localStorage.setItem(key, JSON.stringify(mergedData));
reload = true;
}
} else if (key === 'profile') {
const existingProfile = JSON.parse(localStorage.getItem(key));
if (existingProfile.settings?.streamingServerUrl !== value.settings?.streamingServerUrl) {
existingProfile.settings.streamingServerUrl = value.settings.streamingServerUrl;
localStorage.setItem(key, JSON.stringify(existingProfile, null, 2));
reload = true;
}
}
});
if (reload) {
console.log("Changes detected for streamingServerUrl, reloading page ...");
location.reload();
}
}
async function initialize() {
await loadJsonAndStoreInLocalStorage();
if (cachedData) {
setInterval(processLocalStorageData, 5000);
}
}
initialize();