-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathserver-monitor.js
242 lines (188 loc) · 5.22 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
232
233
234
235
236
237
238
239
240
241
242
const { Gio, GLib } = imports.gi;
const Settings = new Gio.Settings({ schema: 'org.gnome.shell' });
const EXTENSION_NAME = 'cast-to-tv@rafostar.github.com';
const LOCAL_PATH = GLib.get_current_dir();
const NODE_PATH = (GLib.find_program_in_path('nodejs') || GLib.find_program_in_path('node'));
imports.searchPath.unshift(LOCAL_PATH);
const Helper = imports.helper;
const Soup = imports.soup;
imports.searchPath.shift();
const CastSettings = Helper.getSettings(LOCAL_PATH);
let statusTimer;
let restartCount = 0;
let persistent = true;
let loop = GLib.MainLoop.new(null, false);
class ServerMonitor
{
constructor()
{
let canStart = (this._getIsExtensionEnabled() && !this._getIsServerRunning());
if(!canStart) return;
if(!NODE_PATH)
Helper.notify('Cast to TV', 'nodejs' + ' ' + "is not installed!");
if(
!NODE_PATH
|| !this._checkModules()
|| !this._checkAddons()
) {
/* If there was an error do not try to start on each login */
if(CastSettings.get_boolean('service-wanted'))
CastSettings.set_boolean('service-wanted', false);
return;
}
Settings.connect('changed::disable-user-extensions', () => this._onSettingsChanged());
Settings.connect('changed::enabled-extensions', () => this._onSettingsChanged());
this.startServer();
loop.run();
}
startServer()
{
let proc = Gio.Subprocess.new(
[NODE_PATH, `${LOCAL_PATH}/node_scripts/server`],
Gio.SubprocessFlags.NONE
);
log('Cast to TV: service started');
proc.wait_async(null, () =>
{
loop.quit();
if(persistent)
{
log('Cast to TV: restarting server');
let modulesInstalled = this._checkModules();
let addonsInstalled = this._checkAddons();
if(modulesInstalled && addonsInstalled)
{
this.startServer();
restartCount++;
if(restartCount >= 3)
{
log('Cast to TV: server crashed too many times!');
return this.stopServer();
}
if(!statusTimer)
this._startTimer();
return loop.run();
}
}
log('Cast to TV: service stopped');
});
}
stopServer()
{
persistent = false;
GLib.spawn_command_line_sync(`pkill -SIGINT -f ${LOCAL_PATH}/node_scripts/server`);
}
_getIsExtensionEnabled()
{
let allDisabled = Settings.get_boolean('disable-user-extensions');
if(!allDisabled)
{
let enabledExtensions = Settings.get_strv('enabled-extensions');
if(enabledExtensions.includes(EXTENSION_NAME))
return true;
}
log('Cast to TV: extension is disabled');
return false;
}
_getIsServerRunning()
{
if(!Soup.client)
Soup.createClient(CastSettings.get_int('listening-port'));
let data = Soup.client.getIsServiceEnabledSync();
return (data && data.isEnabled) ? true : false;
}
_checkModules(sourceDir)
{
sourceDir = sourceDir || LOCAL_PATH;
let modulesPath = `${sourceDir}/node_modules`;
/* Read cast-to-tv package.json */
let pkgInfo = this._getPkgInfo(sourceDir);
if(!pkgInfo || !pkgInfo.dependencies)
{
Helper.notify('Cast to TV', `Unreadable package.json in "${sourceDir}"`);
return false;
}
/* Modules check should be after package.json read */
let folderExists = GLib.file_test(modulesPath, GLib.FileTest.EXISTS);
if(!folderExists)
{
log(`Cast to TV: missing folder "${modulesPath}"`);
Helper.notify('Cast to TV', 'Required npm modules are not installed!');
return false;
}
let dependencies = pkgInfo.dependencies;
for(let module in dependencies)
{
let modulePath = `${modulesPath}/${module}`;
let moduleExists = GLib.file_test(modulePath, GLib.FileTest.EXISTS);
if(!moduleExists)
{
Helper.notify('Cast to TV', `Missing npm module: ${module}`);
return false;
}
let isRequiredVer = this._checkPkgVersion(modulePath, dependencies[module]);
if(!isRequiredVer)
{
Helper.notify('Cast to TV', 'Installed npm modules are outdated!');
return false;
}
}
return true;
}
_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;
}
_checkPkgVersion(modulePath, version)
{
let isExactVer = false;
let pkgInfo = this._getPkgInfo(modulePath);
if(!pkgInfo || !pkgInfo.version)
return false;
if(isNaN(version.charAt(0)))
version = version.substring(1);
else
isExactVer = true;
return (isExactVer)
? pkgInfo.version == version
: pkgInfo.version >= version
}
_getPkgInfo(modulePath)
{
let data = Helper.readFromFile(`${modulePath}/package.json`);
return (data) ? data : null;
}
_onSettingsChanged()
{
let enabled = this._getIsExtensionEnabled();
if(!enabled)
this.stopServer();
}
_startTimer()
{
statusTimer = GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, 30, () =>
{
statusTimer = null;
restartCount = 0;
return GLib.SOURCE_REMOVE;
});
}
}
let monitor = new ServerMonitor();