-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
bundles.js
executable file
·383 lines (301 loc) · 9.11 KB
/
bundles.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
require('./index');
const Fs = require('fs');
const Path = require('path');
const CONSOLE = process.argv.indexOf('--restart') === -1;
const INTERNAL = { '/sitemap': 1, '/versions': 1, '/workflows': 1, '/dependencies': 1, '/config': 1, '/config-release': 1, '/config-debug': 1 };
const isWindows = require('os').platform().substring(0, 3).toLowerCase() === 'win';
const REGAPPEND = /\/--[a-z0-9]+/i;
const REGAPPENDREPLACE = /\/--/g;
const REGBK = /(-|_)bk\.bundle$/i;
const META = {};
META.version = 1;
META.created = new Date();
META.total = 'v' + F.version_header;
META.node = F.version_node;
META.files = [];
META.skip = false;
META.directories = [];
META.ignore = () => true;
exports.make = function(callback) {
var path = PATH.root();
var blacklist = {};
if (CONSOLE) {
console.log('--------------------- BUNDLING ---------------------');
console.time('Done');
}
var isignore = false;
try {
META.ignore = makeignore(Fs.readFileSync(Path.join(path, '.bundleignore')).toString('utf8').split('\n'));
isignore = true;
} catch (e) {}
if (!isignore) {
try {
META.ignore = makeignore(Fs.readFileSync(Path.join(path, '.bundlesignore')).toString('utf8').split('\n'));
} catch (e) {}
}
blacklist[CONF.directory_temp] = 1;
blacklist[CONF.directory_bundles] = 1;
blacklist[CONF.directory_src] = 1;
blacklist[CONF.directory_logs] = 1;
blacklist['/node_modules/'] = 1;
blacklist['/bundles.debug'] = 1;
blacklist['/debug.pid'] = 1;
blacklist['/debug.js.json'] = 1;
blacklist['/release.js.json'] = 1;
blacklist['/release.pid'] = 1;
blacklist['/index.pid'] = 1;
blacklist['/index.js.json'] = 1;
blacklist['/package-lock.json'] = 1;
blacklist['/superadmin.pid'] = 1;
blacklist['/superadmin.socket'] = 1;
var Files = [];
var Dirs = [];
var Merge = [];
var Length = path.length;
var async = [];
async.push(cleanFiles);
async.push(function(next) {
META.skip && (async.length = 0);
next();
});
async.push(function(next) {
var target = PATH.root(CONF.directory_src);
U.ls(PATH.root(CONF.directory_bundles), function(files) {
var dirs = {};
files.wait(function(filename, resume) {
if (!filename.endsWith('.bundle') || REGBK.test(filename))
return resume();
if (CONSOLE)
console.log('-----', U.getName(filename));
var dbpath = CONF.directory_databases;
var pathupdate = CONF.directory_updates;
var pathstartup = '/startup';
RESTORE(filename, target, resume, function(p, dir) {
if (dir) {
if (!p.startsWith(dbpath) && META.directories.indexOf(p) === -1)
META.directories.push(p);
} else {
var dirname = p.substring(0, p.length - U.getName(p).length);
if (dirname && dirname !== '/')
dirs[dirname] = true;
// handle files in bundle to merge
var mergeme = 0;
if (REGAPPEND.test(p)) {
mergeme = 3;
p = p.replace(REGAPPENDREPLACE, '/');
}
var exists = null;
try {
exists = Fs.statSync(Path.join(target, p));
} catch (e) {}
if ((dirname === pathupdate || dirname === pathstartup) && !exists) {
try {
exists = Fs.statSync(Path.join(target, p + '_bk')) != null;
} catch (e) {}
}
// A specific file like DB file or startup file or update script
if (exists && (p.startsWith(dbpath) || p.startsWith(pathupdate) || p.startsWith(pathstartup)))
return false;
if (INTERNAL[p] || U.getExtension(p) === 'resource' || mergeme) {
var hash = p.hash(true).toString(36);
Merge.push({ name: p, filename: Path.join(target, p + hash), type: mergeme });
META.files.push(p + hash);
return p + hash;
}
if (META.files.indexOf(p) === -1)
META.files.push(p);
}
return true;
});
}, function() {
dirs = Object.keys(dirs);
dirs.length && Dirs.push.apply(Dirs, dirs);
next();
});
});
});
async.push(function(next) {
if (Merge.length) {
copyFiles(Merge, function() {
for (var i = 0; i < Merge.length; i++) {
try {
Fs.unlinkSync(Merge[i].filename);
} catch(e) {}
}
next();
});
} else
next();
});
async.push(function(next) {
U.ls(path, function(files, dirs) {
for (var i = 0, length = dirs.length; i < length; i++)
Dirs.push(normalize(dirs[i].substring(Length)));
for (var i = 0, length = files.length; i < length; i++) {
var file = files[i].substring(Length);
var type = 0;
if (file.startsWith(CONF.directory_databases) || file.startsWith('/flow/') || file.startsWith('/dashboard/'))
type = 1;
else if (REGAPPEND.test(file)) {
file = file.replace(REGAPPENDREPLACE, '/');
type = 3;
} else if (file.startsWith(CONF.directory_public))
type = 2;
Files.push({ name: file, filename: files[i], type: type });
}
next();
}, function(p) {
p = normalize(p.substring(Length));
return blacklist[p] == null && p.substring(0, 2) !== '/.';
});
});
async.push(function(next) {
createDirectories(Dirs, function() {
copyFiles(Files, next);
});
});
async.push(function(next) {
Fs.writeFileSync(Path.join(PATH.root(CONF.directory_src), 'bundle.json'), JSON.stringify(META, null, '\t'));
next();
});
async.async(function() {
CONSOLE && console.timeEnd('Done');
callback();
});
};
function makeignore(arr) {
var ext;
var code = ['var path=P.substring(0,P.lastIndexOf(\'/\')+1);', 'var ext=U.getExtension(P);', 'var name=U.getName(P).replace(\'.\'+ ext,\'\');'];
for (var i = 0; i < arr.length; i++) {
var item = arr[i];
var index = item.lastIndexOf('*.');
if (index !== -1) {
// only extensions on this path
ext = item.substring(index + 2);
item = item.substring(0, index);
code.push('tmp=\'{0}\';'.format(item));
code.push('if((!tmp||path===tmp)&&ext===\'{0}\')return;'.format(ext));
continue;
}
ext = U.getExtension(item);
if (ext) {
// only filename
index = item.lastIndexOf('/');
code.push('tmp=\'{0}\';'.format(item.substring(0, index + 1)));
code.push('if(path===tmp&&U.getName(\'{0}\').replace(\'.{1}\', \'\')===name&&ext===\'{1}\')return;'.format(item.substring(index + 1), ext));
continue;
}
// all nested path
code.push('if(path.startsWith(\'{0}\'))return;'.format(item.replace('*', '')));
}
code.push('return true');
return new Function('P', code.join(''));
}
function normalize(path) {
return isWindows ? path.replace(/\\/g, '/') : path;
}
function cleanFiles(callback) {
var path = PATH.root(CONF.directory_src);
var blacklist = {};
blacklist[CONF.directory_public] = 1;
blacklist[CONF.directory_private] = 1;
blacklist[CONF.directory_databases] = 1;
var meta;
try {
meta = Fs.readFileSync(Path.join(path, 'bundle.json')).toString('utf8').parseJSON(true) || {};
if (CONF.bundling === 'shallow') {
META.skip = true;
callback();
return;
}
} catch (e) {
meta = {};
}
if (meta.files && meta.files.length) {
for (var i = 0; i < meta.files.length; i++) {
var filename = meta.files[i];
var dir = filename.substring(0, filename.indexOf('/', 1) + 1);
if (!blacklist[dir]) {
try {
Fs.unlinkSync(Path.join(path, filename));
} catch (e) {}
}
}
}
if (meta.directories && meta.directories.length) {
meta.directories.quicksort('length_desc');
for (var i = 0; i < meta.directories.length; i++) {
try {
var p = Path.join(path, meta.directories[i]);
if (blacklist[meta.directories[i]])
continue;
while (true) {
var files = Fs.readdirSync(p);
if (files.length)
break;
try {
Fs.rmdirSync(p);
} catch (e) {
break;
}
p = Path.join(path, '..');
if (p.length < path || p === path)
break;
}
} catch (e) {}
}
}
callback();
}
function createDirectories(dirs, callback) {
var path = PATH.root(CONF.directory_src);
try {
Fs.mkdirSync(path);
} catch(e) {}
for (var i = 0, length = dirs.length; i < length; i++) {
var p = normalize(dirs[i]);
if (META.directories.indexOf(p) === -1)
META.directories.push(p);
try {
Fs.mkdirSync(Path.join(path, dirs[i]));
} catch (e) {}
}
callback();
}
function copyFiles(files, callback) {
var path = PATH.root(CONF.directory_src);
files.wait(function(file, next) {
if (!META.ignore(file.name) || (/\.(socket|pid)$/).test(file.name))
return next();
var filename = Path.join(path, file.name);
var ext = U.getExtension(file.name);
var append = file.type === 3;
var exists = null;
try {
exists = Fs.statSync(filename);
} catch (e) {}
if (exists && (!exists.isFile() | exists.isSocket())) {
next();
return;
}
// DB file
if (file.type === 1 && exists) {
next();
return;
}
var p = normalize(file.name);
if (file.type !== 1 && META.files.indexOf(p) === -1)
META.files.push(p);
if (exists && (ext === 'resource' || (!ext && file.name.substring(1, 7) === 'config') || INTERNAL[file.name]))
append = true;
if (append) {
Fs.appendFile(filename, '\n' + Fs.readFileSync(file.filename).toString('utf8'), next);
} else
copyFile(file.filename, filename, next);
}, callback);
}
function copyFile(oldname, newname, callback) {
var writer = Fs.createWriteStream(newname);
writer.on('finish', callback);
Fs.createReadStream(oldname).pipe(writer);
}