-
Notifications
You must be signed in to change notification settings - Fork 245
/
server.js
executable file
·152 lines (128 loc) · 4.72 KB
/
server.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
/*
MediaCenterJS - A NodeJS based mediacenter solution
Copyright (C) 2013 - Jan Smolders
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
////////////////\\\\\\\\\\\\\\\
File based on Spludo Framework. Copyright (c) 2009-2010 DracoBlue, http://dracoblue.net/
Licensed under the terms of MIT License.
*/
var child_process = require('child_process')
, fs = require("fs-extra")
, isThere = require('is-there')
, logger = require('winston');
var path = require('path');
var appDir = path.dirname(require.main.filename)
if(isThere.sync(appDir + "/log/") === false){
fs.mkdirSync(appDir + "/log/");
fs.openSync(appDir + "/log/server.log", 'w');
fs.chmodSync(appDir + "/log/server.log", 0755);
}
logger.remove(logger.transports.Console);
logger.add(logger.transports.File, { filename:appDir + "/log/server.log" });
logger.add(logger.transports.Console, { level: 'debug', colorize:true });
function installUpdate(output, dir){
logger.info('Installing update...');
fs.copy('./install/mediacenterjs-master', './', function (err) {
if (err) {
logger.error('Error', err);
} else {
cleanUp(output, dir);
}
});
}
function cleanUp(output, dir) {
logger.info('Cleanup...');
var rimraf = require('rimraf');
rimraf(dir, function (e) {
if(e) {
logger.error('Error cleaning temp update folder', e);
}
});
logger.info('Install dependencies...');
var exec = require('child_process').exec
, child = exec('npm install', { maxBuffer: 9000*1024 }, function(err, stdout, stderror) {
if (err) {
logger.error('Metadata fetcher error: ',err) ;
}
});
child.stdout.on('data', function(data) {
logger.info(data.toString());
});
child.stderr.on('data', function(data) {
logger.info(data.toString());
});
child.on('exit', function() {
if(isThere.sync(output) === true){
fs.unlinkSync(output);
server.update = false;
server.start();
}
});
}
server = {
process: null,
files: [],
restarting: false,
update:false,
"restart": function() {
this.restarting = true;
logger.info('Stopping server for restart');
this.process.kill();
},
"start": function() {
var that = this;
if(that.update === true){
var output = './master.zip';
var dir = './install';
that.update === false;
setTimeout(function(){
installUpdate(output, dir);
},2000);
} else {
logger.info('Starting server');
that.watchFile();
this.process = child_process.spawn(process.argv[0], ['index.js']);
this.process.stdout.addListener('data', function (data) {
process.stdout.write(data);
});
this.process.stderr.addListener('data', function (data) {
console.log(data.toString());
});
this.process.addListener('exit', function (code) {
this.process = null;
if (that.restarting) {
that.restarting === true;
that.start();
}
});
}
},
"watchFile": function() {
var that = this;
fs.watchFile('./configuration/config.ini', {interval : 500}, function(curr, prev) {
if (curr.mtime.valueOf() != prev.mtime.valueOf() || curr.ctime.valueOf() != prev.ctime.valueOf()) {
logger.info('Restarting because of changed file');
// give browser time to load finish page
setTimeout(function(){
server.restart();
},2000);
}
});
fs.watchFile('./configuration/update.js', {interval : 500}, function(curr, prev) {
if (curr.mtime.valueOf() != prev.mtime.valueOf() || curr.ctime.valueOf() != prev.ctime.valueOf()) {
logger.info('Restarting because an update is available' );
that.update = true;
server.restart();
}
});
}
}
server.start();