forked from robtweed/ewd.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.js
203 lines (177 loc) · 5.23 KB
/
install.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
var readline = require('readline');
var os = require('os');
var fs = require('fs');
var modulePath = process.cwd();
if (!fs.existsSync(modulePath + '/www/')) {
console.log('EWD.js has already been installed - update aborted')
return;
}
var copyFilesInDirectory = function(oldPath, newPath) {
console.log("Move files in " + oldPath + " to " + newPath);
var files = fs.readdirSync(oldPath);
//if (files) console.log(files.length + ' files found');
var file;
var stats;
var oldFilePath;
var newFilePath;
var error = false;
for (var i = 0; i < files.length; i++) {
file = files[i];
//console.log('file: ' + file);
stats = fs.lstatSync(oldPath + '/' + file);
if (stats.isFile()) {
oldFilePath = oldPath + '/' + file;
newFilePath = newPath + '/' + file;
try {
fs.renameSync(oldFilePath, newFilePath);
}
catch(err) {
error = true;
console.log('Unable to move ' + oldPath + ' - check permissions');
console.log('Error was: ' + err);
}
}
}
return error
};
var moveDirectory = function(oldPath, newPath) {
console.log("Move Directory from " + oldPath + " to " + newPath);
var error = false;
if (fs.existsSync(oldPath)) {
if (!fs.existsSync(newPath)) {
fs.mkdirSync(newPath);
}
// go through any sub-directories
var files = fs.readdirSync(oldPath);
var file;
var stats;
if (files) for (var i = 0; i < files.length; i++) {
file = files[i];
stats = fs.lstatSync(oldPath + '/' + file);
if (stats.isDirectory()) {
oldSubDirectoryPath = oldPath + '/' + file;
newSubDirectoryPath = newPath + '/' + file;
error = moveDirectory(oldSubDirectoryPath, newSubDirectoryPath);
if (error) break;
}
}
// copy any files in this directory
if (error) return error;
error = copyFilesInDirectory(oldPath, newPath);
if (error) {
return error;
}
else {
fs.rmdirSync(oldPath);
}
}
else {
console.log('Warning: ' + oldPath + ' no longer exists in the ewd.js module directory');
}
return error;
};
var installEWD = function(path) {
var installErrors = false;
console.log('installing EWD.js to ' + path);
if (os.type() === 'Linux') {}
var oldPath = modulePath + '/www';
var newPath = path + '/www';
installErrors = moveDirectory(oldPath, newPath);
if (installErrors) {
console.log('Installation aborted');
return;
}
oldPath = modulePath + '/ssl';
newPath = path + '/ssl';
installErrors = moveDirectory(oldPath, newPath);
if (installErrors) {
console.log('Installation aborted');
return;
}
oldPath = modulePath + '/modules';
newPath = path + '/node_modules';
installErrors = copyFilesInDirectory(oldPath, newPath);
if (installErrors) {
console.log('Installation aborted');
return;
}
fs.rmdirSync(oldPath);
oldPath = modulePath + '/startupExamples/';
newPath = path;
installErrors = copyFilesInDirectory(oldPath, newPath);
if (installErrors) {
console.log('Installation aborted');
return;
}
fs.rmdirSync(oldPath);
console.log('EWD.js has been installed and configured successfully');
/*
var nmPath = modulePath + '/node_modules/';
if (fs.existsSync(nmPath)) {
var files = fs.readdirSync(nmPath);
var file;
var stats;
var errors = false;
for (var i = 0; i < files.length; i++) {
file = files[i];
stats = fs.lstatSync(nmPath + file);
if (stats.isFile()) {
oldPath = nmPath + file;
newPath = path + '/node_modules/' + file;
try {
fs.renameSync(oldPath, newPath);
}
catch(err) {
errors = true;
console.log('Unable to move ' + oldPath + ' - check permissions');
console.log('Error was: ' + err);
}
}
}
if (!errors) {
fs.rmdirSync(nmPath);
console.log('EWD.js has been installed and configured successfully');
}
}
else {
console.log('Warning: ' + nmPath + ' no longer exists in the ewd.js module directory');
}
*/
};
if (process.argv[2] === 'silent') {
var path = process.argv[3];
if (!path) {
process.chdir('../..');
path = process.cwd();
}
installEWD(path);
}
else {
var interface = readline.createInterface({
input: process.stdin,
output: process.stdout
});
process.chdir('../..');
interface.question('Install EWD.js to directory path (' + process.cwd() + '): ', function(installPath) {
if (installPath === '') installPath = process.cwd();
if (installPath.slice(-1) === '/') installPath = installPath.slice(0,-1);
if (fs.existsSync(installPath + '/www')) {
console.log("**** Warning: you've previously installed EWD.js into this path");
console.log("Existing files and directories will be updated with the ones in the new version of EWD.js");
console.log("All other files that you've created will be left unchanged");
interface.question('Do you want to continue? (Y/N): ', function(answer) {
if (answer === 'Y' || answer === 'y') {
installEWD(installPath);
}
else {
console.log('Update aborted');
}
interface.close();
});
}
else {
installEWD(installPath);
interface.close();
}
});
}