-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitHub.updater.node.js
970 lines (826 loc) · 28.7 KB
/
GitHub.updater.node.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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
/**
* @name gh-updater. GitHub repository auto-updater, and auto-update CeJS via
* GitHub. GitHub repository 自動更新工具 / 自動配置好最新版本 CeJS 程式庫的工具。
*
* @fileoverview 將會採用系統已有的 7-Zip 程式,自動取得並解開 GitHub 最新版本 repository zip
* 壓縮檔案至當前工作目錄下 (e.g., ./CeJS-master)。
*
* @example<code>
TODO:
use Zlib
use https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.archive/Expand-Archive?view=powershell-6
https://docs.microsoft.com/en-us/windows/desktop/api/shldisp/nf-shldisp-folder-copyhere
</code>
*
* @see https://stackoverflow.com/questions/1021557/how-to-unzip-a-file-using-the-command-line
*
* @since 2017/3/13 14:39:41 初版<br />
* 2018/8/20 12:52:34 改寫成 GitHub 泛用的更新工具 GitHub Upgrade Tool,並將
* _CeL.path.txt → _repository_path_list.txt<br />
* 2018/8/30 20:17:7 增加 target_directory 功能。<br />
* 2018/9/8 18:29:29 Create npm package: gh-updater, _CeL.updater.node.js →
* gh-updater/GitHub.updater.node.js
*/
/** globalThis: Buffer */
'use strict';
// --------------------------------------------------------------------------------------------
// setup. 設定區。
var default_repository_path = 'kanasimi/CeJS', extract_program_path = [ '7z',
// e.g., install p7zip package via yum
'7za', 'unzip',
// '%ProgramFiles%\\7-Zip\\7z.exe',
'"' + (process.env.ProgramFiles || 'C:\\Program Files') + '\\7-Zip\\7z.exe"' ],
// modify from _CeL.loader.nodejs.js
repository_path_list_file = './_repository_path_list.txt',
/** {String}CeJS 更新工具相對於 CeJS 根目錄的路徑。 e.g., "CeJS-master/_for include/". const */
default_update_script_directory = '_for include/',
// const
node_https = require('https'), node_fs = require('fs'), node_child_process = require('child_process'), path_separator = require('path').sep,
// e.g., "kanasimi/gh-updater-master"
// matched: [ all, user_name, repository+branch ]
PATTERN_repository_path = /([a-z\d_\-]+)\/([a-z\d_\-]+?)(?:-([a-z\d_]+))?$/i;
// --------------------------------------------------------------------------------------------
// other tools not used by this module itself
var npm_updated;
function npm_update_all(force) {
if (npm_updated && !force) {
return;
}
require('child_process').execSync('npm update', {
stdio : 'inherit'
});
npm_updated = true;
}
// --------------------------------------------------------------------------------------------
// Using in GitHub.updater.node.js work_crawler.updater.js pack_up.js
function show_info(message) {
process.title = message;
console.info('\x1b[35;46m' + message + '\x1b[0m');
}
// --------------------------------------------------------------------------------------------
// @inner
function update_using_npm(package_name, options, module_installed) {
show_info(options.message || ((module_installed ? '更新' : '安裝')
// for development purpose
+ (options.development ? '開發時' : '執行時')
// 下載並更新本工具需要用到的套件 [gh-updater]...
+ '需要用到的組件 [' + package_name + ']...'));
if (!node_fs.existsSync('node_modules')) {
// Install in the current directory.
node_fs.mkdirSync('node_modules');
}
var command = [ 'npm', module_installed ? 'update' : 'install' ];
if (options.development) {
// for development purpose
// https://github.com/kanasimi/work_crawler/issues/104
// https://docs.npmjs.com/cli/install
// npm install electron --save-dev
command.push('--save-dev');
}
if (options.global) {
// sudo npm install -g electron --unsafe-perm=true --allow-root
command.push('--global');
}
if (options.additional_flags) {
command.push(options.additional_flags);
}
command.push(package_name + '@latest');
command = command.join(' ');
console.log('update_using_npm: Running command at ' + process.cwd() + ': '
+ command);
require('child_process').execSync(command, {
stdio : 'inherit'
});
}
// npm install package_name
function update_package(package_name, options) {
if (typeof options === 'boolean') {
// updater.update_package(package_name, true);
options = {
// for development purpose
development : options
};
} else if (!options) {
options = Object.create(null);
}
if (!/^[\w\d_\-]+$/.test(package_name)) {
throw new Error('update_package: Invalid package name: ' + package_name);
}
var module_installed;
try {
// 先測試看看套件存不存在。存在就不用重新安裝了。
require(package_name);
module_installed = true;
// 但這會造成套件有新版本時不會更新的問題。因此可能的話,還是應強制檢測安裝。
if (options.skip_installed) {
return;
}
} catch (e) {
// e.code: 'MODULE_NOT_FOUND'
// console.error(e);
}
update_using_npm(package_name, options, module_installed);
}
// --------------------------------------------------------------------------------------------
function test_each_path(repository, branch, path) {
if (path.charAt(0) === '#'
//
&& path.endsWith(repository + '-' + branch)) {
// path is comments
return false;
}
var matched = path.match(/(?:^|[\\\/])([a-z_\d]+)-([a-z_\d]+)[\\\/]?$/i);
if (matched && (matched[1] !== repository || matched[2] !== branch)) {
// 是其他 repository 的 path。
return false;
}
// ensure `path` is directory
try {
var fso_status = node_fs.lstatSync(path);
if (!fso_status.isDirectory()
//
|| /^\.\.(?:$|[\\\/])/.test(path) && !node_fs.existsSync('../ce.js')) {
return false;
}
} catch (e) {
// try next path
return false;
}
// console.info('detect_base_path: Use base path: ' + path);
return path;
}
/**
* Detect if the CeJS repository exists in the pathes listed in the
* `repository_path_list_file`, test one by one.
*
* @param {String}repository
* CeJS repository name
* @param {String}branch
* branch name
*
* @returns {String|Boolean}base_path or false
*/
function detect_base_path(repository, branch) {
var CeL_path_list;
try {
CeL_path_list = node_fs.readFileSync(repository_path_list_file)
.toString();
} catch (e) {
// node_fs.readFileSync() may throw but no matter
}
if (!CeL_path_list) {
// ignore repository_path_list_file
return false;
}
// modify from _CeL.loader.nodejs.js
CeL_path_list = CeL_path_list.split(CeL_path_list.includes('\n') ? /\r?\n/
: '|');
CeL_path_list.unshift('./' + repository + '-' + branch);
// console.log(CeL_path_list);
// 載入 CeJS 基礎泛用之功能。(非特殊目的使用的載入功能)
for (var index = 0; index < CeL_path_list.length; index++) {
var target_directory = test_each_path(repository, branch,
CeL_path_list[index]);
if (target_directory) {
return target_directory;
}
}
return false;
}
// --------------------------------------------------------------------------------------------
function simplify_path(path) {
return path.replace(/[\\\/]+$/, '').replace(/^(?:\.\/)+/, '') || '.';
}
// @inner
function recursive_move_files(_source, _target, overwrite,
create_empty_directory) {
var fso_list = node_fs.readdirSync(_source);
if (!node_fs.existsSync(_target)
// 對於空目錄看看是否要創建一個。
&& (fso_list.length > 0 || create_empty_directory)) {
node_fs.mkdirSync(_target);
}
_source += path_separator;
_target += path_separator;
fso_list.forEach(function(fso_name) {
var fso_status = node_fs.lstatSync(_source + fso_name);
if (fso_status.isDirectory()) {
recursive_move_files(_source + fso_name, _target + fso_name,
overwrite, create_empty_directory);
} else {
if (node_fs.existsSync(_target + fso_name)) {
if (overwrite) {
node_fs.unlinkSync(_target + fso_name);
} else {
return false;
}
}
// console.log(_source + fso_name+'→'+ _target + fso_name);
node_fs.renameSync(_source + fso_name, _target + fso_name);
}
return false;
});
node_fs.rmdirSync(_source);
return false;
}
// 把 source_directory 下面的檔案全部搬移到 target_directory 下面去。
function move_all_files_under_directory(source_directory, target_directory,
overwrite, create_empty_directory) {
if (!target_directory) {
return 'NEEDLESS';
}
source_directory = simplify_path(source_directory);
target_directory = simplify_path(target_directory);
if (source_directory !== target_directory) {
console.log('move_all_files_under_directory [' + source_directory
+ ']→[' + target_directory + ']');
recursive_move_files(source_directory, target_directory, overwrite,
create_empty_directory);
}
// return undefined;
return false;
}
/**
* determine what extract program to use.
*
* @param {Array|String}extract_program_path
* Array: path list to test, String: using this path.
*
* @returns {String} extract program path. e.g., `/path/to/7z`
*/
function detect_extract_program_path(extract_program_path) {
if (!Array.isArray(extract_program_path)) {
return extract_program_path;
}
// var program_path = undefined;
var program_path;
// detect 7zip path: 若是 $PATH 中有 7-zip 的可執行檔,應該在這邊就能夠被偵測出來。
extract_program_path.some(function(path) {
var normalized_path = path.trim();
if (!normalized_path) {
return false;
}
// console.log('detect_extract_program_path: ' + normalized_path);
// mute stderr
// var stderr = process.stderr.write;
// process.stderr.write = function() { };
try {
node_child_process.execSync(normalized_path + ' -h', {
stdio : 'ignore'
});
program_path = normalized_path;
return true;
} catch (e) {
// console.error(e);
}
// process.stderr.write = stderr;
return false;
});
// else: Can not find any extract program.
return program_path;
}
// --------------------------------------------------------
// @see function get_URL_node() @ CeL.application.net.Ajax
function get_proxy_server() {
return process.env.HTTPS_PROXY || process.env.http_proxy;
}
function get_target_file(version_data) {
return version_data.repository + '-' + version_data.branch + '.zip';
}
function extract_repository_archive(version_data, post_install,
target_directory, sum_size) {
/** {String}下載之後將壓縮檔存成這個檔名。 */
var target_file = get_target_file(version_data);
console.info(target_file + ': ' + sum_size
+ ' bytes done. Extracting files to ' + process.cwd() + '...');
// check file size
var file_size = node_fs.statSync(target_file).size;
if (file_size !== sum_size) {
throw new Error('The file size ' + file_size + ' is not ' + sum_size
+ ' bytes! Please try to run again.');
}
if (!extract_program_path) {
throw new Error('Please extract the archive file manually: '
+ target_file);
}
var command,
//
quoted_target_file = '"' + target_file + '"';
if (extract_program_path.includes('unzip')) {
command = extract_program_path + ' -t ' + quoted_target_file + ' && '
// 解開 GitHub 最新版本壓縮檔案 via unzip。
+ extract_program_path + ' -x -o ' + quoted_target_file;
} else {
command = extract_program_path + ' t ' + quoted_target_file + ' && '
// 解開 GitHub 最新版本壓縮檔案 via 7z。
+ extract_program_path + ' x -y ' + quoted_target_file;
}
node_child_process.execSync(command, {
// pass I/O to the child process
// https://nodejs.org/api/child_process.html#child_process_options_stdio
stdio : 'inherit'
});
if (version_data.latest_version) {
node_fs.writeFileSync(version_data.latest_version_file, JSON
.stringify(version_data));
try {
// 解壓縮完成之後,可以不必留著程式碼檔案。 TODO: backup
node_fs.unlinkSync(target_file);
} catch (e) {
// node_fs.unlinkSync() may throw but no matter
}
var repository_path = version_data.repository + '-'
+ version_data.branch;
move_all_files_under_directory(repository_path, target_directory, true);
var update_script_path = (target_directory ? target_directory.replace(
/[\\\/]+$/, '') : repository_path)
+ path_separator + default_update_script_directory;
// 成功解壓縮。
console.info('Successful decompression: ' + version_data.repository);
if (typeof post_install === 'function') {
post_install(update_script_path);
}
}
// throw new Error('Some error occurred! Bad archive?');
}
var proxy_message_was_shown;
// @inner
function download_via_proxy(url, callback, options) {
// 便宜之計 for CeJS 安裝在當前目錄的 CeJS-master 下。
try {
require('./CeJS-master/_for include/node.loader.js');
} catch (e) {
// Will try another method.
}
try {
globalThis.CeL = globalThis.CeL || require('cejs');
} catch (e) {
console.log('Downloading tool to use proxy server...');
update_package('cejs');
globalThis.CeL = require('cejs');
}
if (!proxy_message_was_shown) {
// showing once.
proxy_message_was_shown = true;
CeL.info('It seems you using proxy server: '
+ (process.env.HTTPS_PROXY ? 'HTTPS_PROXY '
: process.env.http_proxy ? 'http_proxy ' : '')
+ get_proxy_server() + '.');
}
CeL.run('application.net.Ajax');
var file_name = options && options.file_name || url.match(/[^\\\/]+$/)[0];
CeL.get_URL_cache(url, function(data, error, XMLHttp) {
if (error)
callback(null, error);
else
callback([ data, XMLHttp.buffer.length ]);
}, {
file_name : file_name,
charset : 'buffer',
get_URL_options : {
error_retry : 2
},
show_progress : true
});
}
// @inner
function download_via_https(url, callback, options) {
var file_name = options && options.file_name || url.match(/[^\\\/]+$/)[0];
// 先確認/轉到目標目錄,才能 open file。
var write_stream = node_fs.createWriteStream(file_name),
// 已經取得的檔案大小
sum_size = 0, start_time = Date.now(), total_length;
var buffer_array = [];
function on_response(response) {
// 採用這種方法容易漏失資料。 @ node.js v7.7.3
// response.pipe(write_stream);
// 可惜 GitHub 沒有提供 Content-Length,無法加上下載進度。
total_length = +response.headers['content-length'];
response.on('data', function(data) {
sum_size += data.length;
buffer_array.push(data);
var speed_KiB = sum_size / 1.024 / (Date.now() - start_time);
process.stdout.write(file_name + ': ' + sum_size
//
+ (total_length ? '/' + total_length : '') + ' bytes ('
// 00% of 0.00MiB
+ (total_length ? (100 * sum_size / total_length | 0) + '%, ' : '')
//
+ speed_KiB.toFixed(2) + ' KiB/s)...\r');
});
response.on('end', function(/* error */) {
if (total_length && sum_size !== total_length) {
console.error('Expected ' + total_length + ' bytes, but get '
+ sum_size + ' bytes!');
}
buffer_array = Buffer.concat(buffer_array, sum_size);
write_stream.write(buffer_array);
// flush data
write_stream.end();
});
}
// 取得 GitHub 最新版本 .zip 壓縮檔案。
node_https.get(url, on_response)
//
.on('error', function(error) {
// network error?
// console.error(error);
callback(null, error);
});
// ---------------------------
write_stream.on('close', function() {
callback([ buffer_array, sum_size ]);
});
}
function download_url(url, callback, options) {
var downloader = get_proxy_server() ? download_via_proxy
: download_via_https;
return downloader(url, callback, options);
}
function download_repository_archive(version_data, post_install,
target_directory) {
/** {String}下載之後將壓縮檔存成這個檔名。 */
var target_file = get_target_file(version_data);
try {
// 清理戰場。
node_fs.unlinkSync(target_file);
} catch (e) {
// node_fs.unlinkSync() may throw but no matter
}
var archive_url = 'https://codeload.github.com/' + version_data.user_name
//
+ '/' + version_data.repository + '/zip/' + version_data.branch;
download_url(archive_url, function(data) {
extract_repository_archive(version_data, post_install,
//
target_directory, data[1]);
}, {
file_name : target_file
});
}
// --------------------------------------------------------
function update_via_7zip(version_data, post_install, target_directory) {
extract_program_path = detect_extract_program_path(extract_program_path);
if (!extract_program_path
// Windows 10: 'win32'
&& process.platform.startsWith('win')) {
try {
extract_program_path = (process.env.TEMP || process.env.TMP || '.')
+ path_separator + 'detect_7z_path.' + Math.random()
+ '.js';
// @see CeL.application.storage.archive
// @see run_JSctipt() @ CeL.application.platform.nodejs
// try to read 7z program path from Windows registry
var command = "var WshShell=WScript.CreateObject('WScript.Shell'),key='HKCU\\\\Software\\\\7-Zip\\\\Path';"
// use stdout
+ "try{WScript.Echo(WshShell.RegRead(key+64));WScript.Quit();}catch(e){}"
+ "try{WScript.Echo(WshShell.RegRead(key));}catch(e){}";
node_fs.writeFileSync(extract_program_path, command);
extract_program_path = node_child_process.spawnSync('CScript.exe',
[ '//Nologo', extract_program_path ]);
// add_quote()
extract_program_path = '"'
+ extract_program_path.stdout.toString().trim() + '7z.exe'
+ '"';
// console.log(extract_program_path);
extract_program_path = detect_extract_program_path([ extract_program_path ]);
} catch (e) {
extract_program_path = null;
}
}
if (!extract_program_path) {
// 'Please set up the extract_program_path first!'
console.error('Please install 7-Zip first: https://www.7-zip.org/');
}
// assert: typeof extract_program_path === 'string'
// console.log(extract_program_path);
// ------------------------------------------
download_repository_archive(version_data, post_install, target_directory);
}
// --------------------------------------------------------------------------------------------
// parse repository path
function parse_repository_path(repository_path) {
if (typeof repository_path === 'object' && repository_path.user_name
&& repository_path.repository && repository_path.branch) {
return repository_path;
}
/** {String}Repository name */
var repository = repository_path.trim().match(PATTERN_repository_path),
//
user_name = repository[1], branch = repository[3] || 'master';
repository = repository[2];
return {
user_name : user_name,
repository : repository,
branch : branch
};
}
function installed_version(repository_path, callback, target_directory) {
var original_working_directory, version_data = parse_repository_path(repository_path),
//
repository = version_data.repository, branch = version_data.branch;
if (!target_directory) {
target_directory = detect_base_path(repository, branch);
} else if (!node_fs.existsSync(target_directory)) {
node_fs.mkdirSync(target_directory);
}
if (target_directory) {
// console.log('target_directory: ' + target_directory);
target_directory = target_directory.replace(/[\\\/]+$/, '');
if (target_directory
&& (target_directory.endsWith(path_separator + repository + '-'
+ branch) || target_directory.endsWith('\\'
+ repository + '-' + branch))) {
original_working_directory = process.cwd();
process.chdir(target_directory.slice(0, -(path_separator
+ repository + '-' + branch).length));
}
// target_directory += path_separator;
}
// TODO: test if there are REALLY module files in the directory.
var latest_version_file = repository + '-' + branch + '.version.json', has_version, has_version_data;
console.info('Read the latest version from cache file '
+ latest_version_file);
try {
has_version_data = JSON.parse(node_fs.readFileSync(latest_version_file)
.toString());
has_version = has_version_data.latest_version;
// 不累積古老的(前前次)之 version_data。
delete has_version_data.has_version_data;
} catch (e) {
// Unexpected use of undefined. (no-undefined)
// has_version = undefined;
}
Object.assign(version_data, {
check_date : new Date(),
latest_version_file : latest_version_file,
has_version_data : has_version_data,
has_version : has_version
});
function recover_working_directory() {
original_working_directory && process.chdir(original_working_directory);
}
if (typeof callback === 'function') {
try {
callback(version_data, original_working_directory
// recover working directory.
&& recover_working_directory);
} catch (e) {
recover_working_directory();
}
} else {
recover_working_directory();
}
return version_data;
}
function get_GitHub_version(repository_path, callback/* , target_directory */) {
var version_data = parse_repository_path(repository_path), user_name = version_data.user_name, repository = version_data.repository, branch = version_data.branch;
console.info('Get the infomation of latest version of '
// 取得 GitHub 最新版本 infomation。
+ repository + '...');
node_https.get({
// https://api.github.com/repos/kanasimi/CeJS/commits/master
host : 'api.github.com',
path : '/repos/' + user_name + '/' + repository + '/commits/' + branch,
// https://developer.github.com/v3/#user-agent-required
headers : {
'user-agent' : 'CeL_updater/2.0'
}
}, function(response) {
response.setTimeout(10000);
var buffer_array = [], sum_size = 0;
response.on('data', function(data) {
sum_size += data.length;
buffer_array.push(data);
});
response.on('end', function(/* error */) {
var contents = Buffer.concat(buffer_array, sum_size).toString();
var latest_commit = JSON.parse(contents);
var latest_version = latest_commit.commit
//
&& latest_commit.commit.author.date;
Object.assign(version_data, {
// Date.now()
check_date : new Date(),
latest_commit : latest_commit,
latest_version : latest_version
});
callback(version_data);
});
})
//
.on('error', function(error) {
// network error?
console.error(error);
callback(version_data);
});
}
/**
* detect repository version
*
* @param {String}repository_path
* repository path. e.g., user/repository-branch
* @param {Function}callback
* @param {String}[target_directory]
* install repository to this local file system path.
* 目標目錄位置。將會解壓縮至這個目錄底下。 default: repository-branch/
*/
function check_version(repository_path, callback, target_directory) {
if (!repository_path) {
throw new Error('No repository path specified!');
}
installed_version(repository_path, function(version_data,
recover_working_directory) {
get_GitHub_version(version_data, function(version_data) {
version_data.has_new_version
//
= !version_data.has_version || version_data.latest_version
//
&& version_data.has_version !== version_data.latest_version;
callback(version_data, recover_working_directory);
}/* , target_directory */);
}, target_directory);
}
function check_and_update(repository_path, target_directory, callback) {
check_version(repository_path, function(version_data,
recover_working_directory) {
var has_version = version_data.has_version,
//
latest_version = version_data.latest_version;
function recover(update_script_path) {
if (typeof callback === 'function') {
callback(version_data, recover_working_directory,
target_directory || '', update_script_path);
} else if (recover_working_directory) {
recover_working_directory();
}
}
if (version_data.has_new_version) {
process.title = 'Update ' + repository_path;
console.info('Update: '
+ (has_version ? has_version + '\n → ' : 'to ')
+ latest_version);
update_via_7zip(version_data, recover, target_directory);
} else {
console.info('Already have the latest version: ' + has_version);
recover();
}
}, target_directory);
}
// --------------------------------------------------------------------------------------------
function copy_library_file(source_name, taregt_name, base_directory,
update_script_path) {
var taregt_path = (base_directory || '') + (taregt_name || source_name);
try {
node_fs.unlinkSync(taregt_path);
} catch (e) {
// node_fs.unlinkSync() may throw
// TODO: handle exception
}
/**
* for debug <code>
console.log('copy_library_file [' + update_script_path + source_name + ']→[' + taregt_path + ']');
</code>
*/
node_fs.renameSync(update_script_path + source_name, taregt_path);
}
// --------------------------------------------------------------------------------------------
// actions after file extracted
function default_post_install_for_all(/* base_directory */) {
}
function default_post_install_cejs(base_directory, update_script_path) {
/**
* for debug <code>
// using npm instead: require('gh-updater');
console.info('Update the tool itself...');
copy_library_file('gh-updater/GitHub.updater.node.js', null, base_directory);
</code>
*/
console.info('Setup basic execution environment...');
copy_library_file('_CeL.loader.nodejs.js', null, base_directory,
update_script_path);
try {
// Do not overwrite repository_path_list_file.
node_fs.accessSync(base_directory + repository_path_list_file,
node_fs.constants.R_OK);
} catch (e) {
try {
node_fs.renameSync(update_script_path
+ repository_path_list_file.replace(/(\.[^.]+)$/,
'.sample$1'), base_directory
+ repository_path_list_file);
} catch (e) {
// node_fs.renameSync() may throw
// TODO: handle exception
}
}
}
var opencc_base_url = 'https://raw.githubusercontent.com/BYVoid/OpenCC/master/data/dictionary/',
// copy from CeL.extension.zh_conversion
opencc_files = (
//
'STPhrases,STCharacters,TWPhrasesName,TWPhrasesIT'
// 因此得要一個個 replace。
+ ',TWPhrasesOther,TWVariants,TWVariantsRevPhrases').split(',');
// 2019/11/25: `npm install opencc` failed
function download_opencc(callback) {
show_info('更新 OpenCC 中文繁簡體轉換工具...');
process.chdir('./CeJS-master' + '/extension/zh_conversion/OpenCC/');
var file_lsit = node_fs.readdirSync('.');
// console.log(node_fs.readdirSync('.'));
function finish() {
// recovery
process.chdir('../../../../');
callback();
}
var remaining = 0, waiting;
opencc_files.map(function(file) {
file += '.txt';
if (file_lsit.includes(file))
return;
remaining++;
download_url(opencc_base_url + file, function() {
if (--remaining === 0 && waiting)
finish();
}, {
file_name : file
});
});
if (remaining > 0)
waiting = true;
else
finish();
}
// --------------------------------------------------------------------------------------------
/**
* handle arguments when running with CLI or calling with `updater.update(...)`
*
* @param {String}repository_path
* repository path
* @param {any}target_directory
* target directory
* @param {any}callback
* callback when updated
*/
function handle_arguments(repository_path, target_directory, callback, options) {
function after_check_update(version_data, recover_working_directory,
target_directory, update_script_path) {
if (version_data.has_new_version) {
// 在 repository 目錄下執行 post_install()
(using_default_repository ? default_post_install_cejs
: default_post_install_for_all)(target_directory,
update_script_path);
// 成功安裝了 repository 的組件。
console.info('Successfully installed ' + version_data.repository);
}
function prepare_to_callback() {
// 之後回到原先的目錄底下。
if (recover_working_directory) {
recover_working_directory();
}
if (typeof callback === 'function') {
callback(version_data);
}
}
// process.cwd('.') === ...'/work_crawler-master'
if (using_default_repository && options && options.fetch_opencc) {
download_opencc(prepare_to_callback);
} else {
prepare_to_callback();
}
}
var using_default_repository = !repository_path
|| repository_path === default_repository_path;
if (using_default_repository ? default_repository_path
: PATTERN_repository_path.test(repository_path)) {
check_and_update(repository_path || default_repository_path,
// run in CLI. GitHub 泛用的更新工具。
target_directory, after_check_update);
} else {
console.log((repository_path ? 'Invalid repository: '
// node GitHub.updater.node.js user/repository-branch [target_directory]
+ JSON.stringify(repository_path) : '') + 'Usage:\n '
+ process.argv[0].replace(/[^\\\/]+$/)[0] + ' '
+ process.argv[1].replace(/[^\\\/]+$/)[0]
+ ' "user/repository-branch" ["target_directory"]'
+ '\n\ndefault repository path: ' + default_repository_path);
}
}
// --------------------------------------------------------------------------------------------
// main process
if (typeof module === 'object' && module !== require.main) {
// required as module
module.exports = {
parse_repository_path : parse_repository_path,
installed_version : installed_version,
get_GitHub_version : get_GitHub_version,
check_version : check_version,
// node 0.10 does not have {Promise}
update : handle_arguments,
update_package : update_package,
npm_update_all : npm_update_all
};
} else {
// default action: update
handle_arguments(process.argv[2], process.argv[3]);
}