-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
521 lines (453 loc) · 16.2 KB
/
index.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
import { app, BrowserWindow, ipcMain, Tray, Menu, shell, Notification, nativeTheme } from 'electron';
import axios from 'axios';
import { existsSync, writeFile } from 'fs';
import Store from 'electron-store';
import path from 'path';
import * as fs from "fs";
let win, tray;
let config = {
"initialised": false,
"clientId": null,
"clientSecret": null,
"debugMode": false,
"canOpenStreams": false,
"themeSource": 'dark',
"channels": [
'epickittyxp'
]
};
const streamStatuses = {};
const notificationTitle = 'Stream Lurker';
const gotTheLock = app.requestSingleInstanceLock();
const openTime = new Date();
let iconPath = './frontend/images/lurker.png';
if (app.isPackaged) {
iconPath = path.join(process.resourcesPath, 'app.asar', iconPath);
}
app.setName('StreamLurker');
/**
* Checks for updates on GitHub
* @returns {Promise<boolean>}
*/
async function hasUpdate () {
const currentVersion = app.getVersion();
const url = 'https://api.github.com/repos/EpicnessTwo/StreamLurker/releases/latest';
try {
const response = await axios.get(url, {
headers: { 'User-Agent': 'StreamLurker' }
});
const latestVersion = response.data.tag_name.replace('v', '');
await log('log', `Current version: ${currentVersion}, Latest version: ${latestVersion}`);
// Compare versions, assuming semantic versioning
return latestVersion !== currentVersion;
} catch (error) {
await log('error', 'Error checking for updates:', error);
return false;
}
};
async function checkForUpdate() {
const updateAvailable = await hasUpdate();
if (updateAvailable) {
await log('log', 'Update available');
win.webContents.send('update-available');
}
}
/**
* Loads the config from the store or config.json
* @returns {Promise<boolean>}
*/
async function loadConfig() {
if (app.isPackaged) {
await log('log', 'Loading config from store');
const store = new Store();
if (!store.has('config')) return false;
config = store.get('config');
return true;
} else {
if (existsSync('./config.json')) {
try {
const module = await import('./config.json', { assert: { type: 'json' } });
config = module.default;
return true;
} catch (error) {
await log('error', 'Failed to load config:', error);
return false;
}
} else {
return false;
}
}
}
/**
* Saves the config to the store or config.json
* @returns {Promise<boolean>}
*/
async function saveConfig() {
config.initialised = true;
if (app.isPackaged) {
await log('log', 'Saving config to store');
const store = new Store();
store.set('config', config);
return true;
} else {
try {
await writeFile('./config.json', JSON.stringify(config, null, 4), 'utf8', () => { });
return true;
} catch (error) {
await log('error', 'Failed to save config:', error);
return false;
}
}
}
async function log(type, message, channel = false) {
fs.mkdirSync('./logs', { recursive: true });
const channelName = channel ? `(${channel}) ` : ' ';
const currentDate = new Date();
const logFile = `./logs/${openTime.toISOString().split('T')[0]}-${openTime.toTimeString().split(' ')[0].replaceAll(':', '-')}.log`;
const logMessage = `[${currentDate.toTimeString().split(' ')[0]}] [${type.toUpperCase()}] ${channelName}${message}\n`;
fs.appendFileSync(logFile, logMessage);
console[type](logMessage);
}
/**
* Creates the main window
*/
function createWindow() {
win = new BrowserWindow({
width: 900,
height: 700,
webPreferences: {
nodeIntegration: true,
contextIsolation: false
}
});
win.on('close', (event) => {
if (!app.isQuitting) {
event.preventDefault();
win.hide();
}
return false;
});
win.setMinimumSize(350, 200);
if (!app.isPackaged) {
win.setIcon('./frontend/images/lurker.png');
}
loadConfig().then(configExists => {
if (config.debugMode) {
win.webContents.openDevTools();
} else {
win.removeMenu();
}
if (configExists) {
win.loadFile('frontend/index.html');
checkStreams(true);
} else {
win.loadFile('frontend/setup.html');
}
});
}
/**
* Creates the tray icon
*/
function createTray() {
tray = new Tray(iconPath); // Path to your tray icon
const contextMenu = Menu.buildFromTemplate([
{ label: 'Stream Lurker', type: 'normal', enabled: false, icon: iconPath },
{ type: 'separator' },
{ label: 'Open Repo', click: () => shell.openExternal('https://github.com/EpicnessTwo/StreamLurker') },
{ label: 'Report an Issue', click: () => shell.openExternal('https://github.com/EpicnessTwo/StreamLurker/issues') },
{ type: 'separator' },
{ label: 'Quit Stream Lurker', click: () => app.quit() }
]);
tray.setToolTip('Stream Lurker - Twitch stream status checker');
tray.setContextMenu(contextMenu);
tray.on('click', () => {
win.show();
});
}
/**
* Gets an OAuth token from Twitch
* @returns {Promise<*|null>}
*/
async function getOAuthToken() {
try {
const response = await axios.post('https://id.twitch.tv/oauth2/token', null, {
params: {
client_id: config.clientId,
client_secret: config.clientSecret,
grant_type: 'client_credentials'
}
});
await log('log', 'OAuth token fetched successfully')
return response.data.access_token;
} catch (error) {
await log('error', 'Error fetching OAuth token:', error);
await apiError();
return null;
}
}
/**
* Gets the stream info for a channel
* @param channelName
* @param token
* @returns {Promise<{isLive: boolean, gameName, displayName: *, isMature, viewerCount: (*|number), profileImageUrl: *}|{isLive: boolean, channelName, viewerCount: number, profileImageUrl: null}>}
*/
async function getChannelInfo(channelName, token) {
try {
// Fetch stream info
let streamResponse = await axios.get(`https://api.twitch.tv/helix/streams?user_login=${channelName}`, {
headers: {
'Client-ID': config.clientId,
'Authorization': `Bearer ${token}`
}
});
// Fetch user info
let userResponse = await axios.get(`https://api.twitch.tv/helix/users?login=${channelName}`, {
headers: {
'Client-ID': config.clientId,
'Authorization': `Bearer ${token}`
}
});
// Fetch additional info
let additionalResponse = await axios.get(`https://api.twitch.tv/helix/channels?broadcaster_id=${userResponse.data.data[0].id}`, {
headers: {
'Client-ID': config.clientId,
'Authorization': `Bearer ${token}`
}
});
// The data of this will return an array of matching channels, we need to find the correct one
// This will be based on the `broadcaster_login` field
const additionalChannel = additionalResponse.data.data.find(c => c.broadcaster_login === channelName);
// Check to see if additionalChannel has been found
let gameName, streamTitle;
if (additionalChannel) {
gameName = additionalChannel.game_name;
streamTitle = additionalChannel.title;
}
// console.log(`Fetched info for ${channelName}`, userResponse.data, streamResponse.data, additionalChannel);
const displayName = userResponse.data.data[0].display_name;
const isLive = streamResponse.data.data.length > 0 && streamResponse.data.data[0].type === 'live';
const profileImageUrl = userResponse.data.data[0].profile_image_url;
let viewerCount, isMature;
if (isLive) {
viewerCount = streamResponse.data.data[0].viewer_count || 0;
isMature = streamResponse.data.data[0].is_mature;
}
return { displayName, isLive, profileImageUrl, viewerCount, gameName, isMature, streamTitle };
} catch (error) {
await log('error', `Error fetching info for ${channelName}:` + error, channelName);
return { channelName, isLive: false, profileImageUrl: null, viewerCount: 0 };
}
}
async function checkStreams(start) {
const token = await getOAuthToken();
if (!token) return;
await processStreams(token);
await checkForUpdate();
if (start) {
// Main stream checking loop
setInterval(async () => {
await processStreams(token);
}, 60000);
// Check for updates loop
setInterval(async () => {
await checkForUpdate();
}, 3600000);
}
}
/**
* Sets whether streams can be opened
* @param status
* @returns {Promise<void>}
*/
async function canOpenStreams(status) {
await log('log', 'Setting canOpenStreams to' + status);
config.canOpenStreams = status;
saveConfig();
}
async function processStreams(token) {
await isSyncing(true);
for (const channel of config.channels) {
streamStatuses[channel] = streamStatuses[channel] || {};
// Inside your setInterval in checkStreams function
const { displayName, isLive, profileImageUrl, viewerCount, gameName, isMature, streamTitle } = await getChannelInfo(channel, token);
let infoChanged;
let infoUndefined = false
// First check if the current stored gameName and streamTitle are undefined, if so, just set infoChanged to false
// Else check if the current gameName and streamTitle are different to the stored ones, if so, set infoChanged to true
if (streamStatuses[channel].gameName === undefined || streamStatuses[channel].streamTitle === undefined) {
infoChanged = false;
infoUndefined = true;
} else {
infoChanged = streamStatuses[channel].gameName !== gameName || streamStatuses[channel].streamTitle !== streamTitle;
}
if (infoChanged || infoUndefined) {
await log('log', 'Game Name: (before) ' + streamStatuses[channel].gameName + ' (after) ' + gameName, channel);
await log('log', 'Stream Title: (before) ' + streamStatuses[channel].streamTitle + ' (after) ' + streamTitle, channel);
await log('log', 'Info Changed: ' + infoChanged, channel);
}
streamStatuses[channel] = streamStatuses[channel] || {};
streamStatuses[channel].displayName = displayName;
streamStatuses[channel].profileImageUrl = profileImageUrl;
streamStatuses[channel].viewerCount = viewerCount;
streamStatuses[channel].gameName = gameName;
streamStatuses[channel].streamTitle = streamTitle;
streamStatuses[channel].isMature = isMature;
if (isLive && !streamStatuses[channel].isLive) {
await log('log', `${channel} is live!`, channel);
new Notification({
title: notificationTitle,
body: `${displayName} is live!`,
icon: profileImageUrl
})
.on('click', () => shell.openExternal(`https://twitch.tv/${channel}`))
.show();
// Open the stream if the user has enabled it
if (config.canOpenStreams) await shell.openExternal(`https://twitch.tv/${channel}`);
} else if (!isLive && streamStatuses[channel].isLive) {
await log('log', `${channel} is offline!`, channel);
new Notification({
title: notificationTitle,
body: `${displayName} is offline!`,
icon: profileImageUrl
})
.on('click', () => shell.openExternal(`https://twitch.tv/${channel}`))
.show();
} else if (!isLive && infoChanged) {
await log('log', `${channel} has just updated their stream info!`, channel);
new Notification({
title: notificationTitle,
body: `${displayName} might be going live shortly!`,
icon: profileImageUrl
})
.on('click', () => shell.openExternal(`https://twitch.tv/${channel}`))
.show();
}
streamStatuses[channel].isLive = isLive;
}
win.webContents.send('update-streams', streamStatuses);
await isSyncing(false);
await log('log', 'Checked all channels')
}
/**
* Adds a channel to the config
* @param channel
* @returns {Promise<void>}
*/
async function addChannel(channel) {
const channelName = channel.toLowerCase();
// Check if the channel is already in the config
if (config.channels.includes(channelName)) {
await log('log', `${channelName} is already in the config`);
return;
}
// Add the channel to the config
config.channels.push(channelName);
const success = await saveConfig();
if (!success) {
await log('error', 'Failed to save config');
} else {
await log('log', `${channelName} added to config`);
checkStreams();
}
}
/**
* Deletes a channel from the config
* @param channel
* @returns {Promise<void>}
*/
async function deleteChannel(channel) {
const channelName = channel.toLowerCase();
// Check if the channel is in the config
if (!config.channels.includes(channelName)) {
await log('log', `${channelName} is not in the config`);
return;
}
// Remove the channel from the config
config.channels = config.channels.filter(c => c !== channelName);
const success = await saveConfig();
if (!success) {
await log('error', 'Failed to save config');
} else {
await log('log', `${channelName} removed from config`);
}
// Stop checking the channel
delete streamStatuses[channelName];
}
async function apiError() {
await win.loadFile('frontend/setup.html');
win.webContents.send('failed-credentials');
}
/**
* Sends the syncing status to the frontend
* @param status
* @returns {Promise<void>}
*/
async function isSyncing(status) {
win.webContents.send('is-syncing', status);
}
// App Processes
if (!gotTheLock) {
app.quit();
} else {
app.on('second-instance', (event, commandLine, workingDirectory) => {
if (win) {
log('log', 'Second instance prevented');
win.show();
}
});
app.whenReady().then(() => {
nativeTheme.themeSource = config.themeSource;
createWindow();
createTray();
log('log', 'App is ready');
});
}
app.on('before-quit', () => app.isQuitting = true);
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
// Listeners from the frontend
ipcMain.on('change-theme', (event, theme) => {
nativeTheme.themeSource = theme;
config.themeSource = theme;
saveConfig();
});
ipcMain.on('save-twitch-credentials', (event, client_id, client_secret) => {
config.clientId = client_id;
config.clientSecret = client_secret;
saveConfig().then(success => {
if (success) {
win.loadFile('frontend/index.html');
checkStreams(true);
} else {
log('error', 'Failed to save config');
}
});
});
ipcMain.on('fetch-streams', (event, channel) => {
log('log', 'Front end has requested to fetch streams');
win.webContents.send('update-streams', streamStatuses);
});
ipcMain.on('add-channel', (event, channel) => {
log('log', `Front end has requested to add ${channel}`);
addChannel(channel);
});
ipcMain.on('delete-channel', (event, channel) => {
log('log', `Front end has requested to delete ${channel}`);
deleteChannel(channel);
});
ipcMain.on('change-open-streams', (event, status) => {
log('log', `Front end has requested to change open streams to ${status}`);
canOpenStreams(status);
});
ipcMain.on('open-link', (event, href) => {
log('log', `Front end has requested to open ${href}`);
shell.openExternal(href);
});