forked from SeeTrai/axtimerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.js
239 lines (198 loc) · 5.21 KB
/
setup.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
/*
running this file expects that node-windows has already been installed
this file should be run from the setup.bat file
*/
// setup mongodb as a service
var child = require('child_process');
var path = require('path');
var fs = require('fs');
var Service = require('node-windows').Service;
require('./color');
const webServiceName = 'AXtime RM';
const webServiceDescription = 'node.js web server process for AXti.me RM.';
var rootDir = __dirname.toString();
var mongoDir = path.resolve('../mongoDb')
, mongoData = path.resolve('../databases')
, mongoLog = mongoDir + '/mongo-log.txt'
, axtimeRoot = path.resolve('../')
;
function mongoExists(callback){
child.exec('net start MongoDB', function(er, out, err){
if (er && er.toString().indexOf('has already been started') > -1){
callback();
}
else {
callback(er + out);
}
})
}
function installMongo(callback){
console.log('Installing MongoDB Windows Service'.green);
var cmd = mongoDir + '\\mongod --service --dbpath=' + mongoData + ' --logpath=' + mongoLog + ' --install';
child.exec(cmd, function(er, out, err){
if (er){
if (out.indexOf('moved to') > -1){
console.log('SUCCESS'.cyan)
callback();
}
else {
console.log(('ERROR: ' + er.toString()).red);
console.log(out.yellow);
console.log(err.red);
callback(er);
}
}
else {
console.log(out.toString().yellow);
console.log(err.toString().red);
callback();
}
});
}
function removeMongo(callback){
console.log('Removing existing MongoDB Windows Service'.green);
child.exec(mongoDir + '\\mongod --remove', function(er, out, err){
if (er){
if (out && out.indexOf('Could not find a service') > -1){
console.log('service not installed, move on to install'.yellow);
callback();
}
else {
console.log('ERROR'.red);
console.log(er.toString().red);
callback(er);
}
}
else {
// console.log(out.toString().yellow);
// console.log(err);
console.log('SUCCESS removing service.'.yellow);
callback();
}
})
}
function startMongo(callback){
console.log('Starting the MongoDB Windows Service'.green);
child.exec('net start MongoDB', function(er,out,err){
if (er){
console.log('ERROR trying to start MongoDB'.red);
console.log(er.toString().red);
callback(er);
}
else {
console.log(out.toString().yellow);
console.log(err.toString().red);
callback();
}
});
}
function doMongo(callback){
mongoExists(function(er){
if (er){
removeMongo(function(er){
installMongo(function(er){
if (er){
console.log('There were errors trying to install MongoDb Windows Service.');
}
else {
function start(){
startMongo(function(er){
if (er){
console.log('There were errors trying to start the service. REBOOT and run this again.');
}
else {
console.log('DONE installing MongoDB. MongoDB is running as a Windows Service.'.cyan);
}
callback(er);
})
}
setTimeout(start, 1000);
}
});
});
}
else {
console.log('MongoDB is already installed and running');
callback();
}
})
}
// setup website to be Windows Service
var configExists = fs.existsSync(axtimeRoot + '/config.json');
console.log('config exists: ' + configExists);
/*
../config.json
{
currentPath:''
, past:[]
}
*/
var config = {
currentPath: rootDir
, past:[]
}
if (configExists){
try {
var currentConfig = JSON.parse(fs.readFileSync(axtimeRoot + '/config.json'));
}
catch (ex){
console.log(('ERROR parsing config.json. It must be corrupted. Delete the file ' + axtimeRoot + '/config.json').red);
}
}
function uninstallWebService(name, description, script, callback){
var svc = new Service({
name: name
, description: description
, script:script
})
svc.on('uninstall', function(){
console.log('uninstalled existing service'.green);
callback();
});
svc.on('error', function(er){
console.log('There was an error'.red);
console.log(er);
callback(er);
})
if (svc.exists){
svc.uninstall();
}
else{
console.log('Web service does not exist. continue.');
callback();
}
}
function installWebService(callback){
var svc = new Service({
name: webServiceName
, description: webServiceDescription
, script: path.join(__dirname,'server.js')
});
svc.on('install', function(){
console.log('Web server Windows Service successfully installed.'.cyan);
callback();
});
svc.on('invalidinstallation', function(){
callback('Invalid installation... something is not right. contact support.');
})
svc.on('alreadyinstalled', function(){
callback('Already installed');
})
svc.on('error', function(er){
console.log('There was an error'.red);
console.log(er);
callback(er);
});
if (!svc.exists){
svc.install();
}
else {
console.log('Service already exists'.red);
callback('Service already exists');
}
}
// check if existing config / service
// delete previous service
installWebService(function(er){
console.log('exiting process. done.'.cyan);
});