forked from Rafostar/gnome-shell-extension-cast-to-tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server-monitor.js
231 lines (188 loc) · 4.86 KB
/
server-monitor.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
const { Gio, GLib } = imports.gi;
const ByteArray = imports.byteArray;
const Settings = new Gio.Settings({ schema: 'org.gnome.shell' });
const EXTENSION_NAME = '[email protected]';
const LOCAL_PATH = GLib.get_current_dir();
imports.searchPath.unshift(LOCAL_PATH);
const CastSettings = imports.helper.getSettings(LOCAL_PATH);
imports.searchPath.shift();
let statusTimer;
let restartCount = 0;
let persistent = true;
let loop = GLib.MainLoop.new(null, false);
class ServerMonitor
{
constructor()
{
let canStart = (this._isExtensionEnabled() && !this._isServerRunning());
if(!canStart) return;
if(!this._checkModules() || !this._checkAddons())
{
CastSettings.set_boolean('service-enabled', false);
return;
}
Settings.connect('changed::disable-user-extensions', () => this._onSettingsChanged());
Settings.connect('changed::enabled-extensions', () => this._onSettingsChanged());
this.startServer();
loop.run();
}
startServer()
{
let nodePath = (GLib.find_program_in_path('nodejs') || GLib.find_program_in_path('node'));
if(!nodePath)
{
print('Cast to TV: nodejs executable not found!');
loop.quit();
return;
}
let proc = Gio.Subprocess.new([nodePath, LOCAL_PATH + '/node_scripts/server'], Gio.SubprocessFlags.NONE);
print('Cast to TV: service started');
proc.wait_async(null, () =>
{
loop.quit();
if(persistent)
{
print('Cast to TV: restarting server');
let modulesInstalled = this._checkModules();
let addonsInstalled = this._checkAddons();
if(modulesInstalled && addonsInstalled)
{
this.startServer();
restartCount++;
if(restartCount >= 3)
{
print('Cast to TV: server crashed too many times!');
this.stopServer();
return;
}
if(!statusTimer) this._startTimer();
loop.run();
}
}
else
{
CastSettings.set_boolean('service-enabled', false);
print('Cast to TV: service stopped');
}
});
}
stopServer()
{
persistent = false;
GLib.spawn_command_line_sync(`pkill -SIGINT -f ${LOCAL_PATH}/node_scripts/server`);
}
_isExtensionEnabled()
{
let allDisabled = Settings.get_boolean('disable-user-extensions');
if(!allDisabled)
{
let enabledExtensions = Settings.get_strv('enabled-extensions');
if(enabledExtensions.includes(EXTENSION_NAME))
{
return true;
}
}
print('Cast to TV: extension is disabled');
return false;
}
_isServerRunning()
{
let [res, out_fd] = GLib.spawn_command_line_sync('pgrep -a node');
let outStr;
if(out_fd instanceof Uint8Array) outStr = ByteArray.toString(out_fd);
else outStr = out_fd.toString();
if(res && outStr.includes(EXTENSION_NAME) && outStr.includes('server')) return true;
else return false;
}
_checkModules(sourceDir)
{
sourceDir = sourceDir || LOCAL_PATH;
let modulesPath = sourceDir + '/node_modules';
let folderExists = GLib.file_test(modulesPath, GLib.FileTest.EXISTS);
if(!folderExists)
{
print('Cast to TV: npm modules not installed!');
return false;
}
let dependencies = this._getDependencies(sourceDir);
if(dependencies)
{
for(let module in dependencies)
{
let moduleExists = GLib.file_test(modulesPath + '/' + module, GLib.FileTest.EXISTS);
if(!moduleExists)
{
print(`Cast to TV: missing npm module: ${module}`);
return false;
}
}
return true;
}
return false;
}
_checkAddons()
{
let extPath = LOCAL_PATH.substring(0, LOCAL_PATH.lastIndexOf('/'));
let extDir = Gio.File.new_for_path(extPath);
let dirEnum = extDir.enumerate_children('standard::name,standard::type', 0, null);
let addons = [];
let info;
while((info = dirEnum.next_file(null)))
{
let dirName = info.get_name();
if(dirName.includes('cast-to-tv') && dirName.includes('addon'))
{
addons.push(extPath + '/' + dirName);
}
}
for(let addonDir of addons)
{
let addonModulesInstalled = this._checkModules(addonDir);
if(!addonModulesInstalled) return false;
}
return true;
}
_getDependencies(readPath)
{
let packagePath = readPath + '/package.json';
let fileExists = GLib.file_test(packagePath, GLib.FileTest.EXISTS);
if(fileExists)
{
let [readOk, readFile] = GLib.file_get_contents(packagePath);
if(readOk)
{
let data;
if(readFile instanceof Uint8Array)
{
try{ data = JSON.parse(ByteArray.toString(readFile)); }
catch(e){ data = null; }
}
else
{
try{ data = JSON.parse(readFile); }
catch(e){ data = null; }
}
if(data)
{
return data.dependencies;
}
}
}
print('Cast to TV: could not read npm dependencies!');
return null;
}
_onSettingsChanged()
{
let enabled = this._isExtensionEnabled();
if(!enabled) this.stopServer();
}
_startTimer()
{
statusTimer = GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, 30, () =>
{
restartCount = 0;
statusTimer = null;
});
}
}
let monitor = new ServerMonitor();