forked from kanasimi/work_crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
work_crawler.updater.js
162 lines (138 loc) · 4.6 KB
/
work_crawler.updater.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
/**
* CeJS 網路小說漫畫下載工具 命令列介面自動更新工具。
*
* @since 2018/8/27
*
* @see _build/pack_up.js
*/
'use strict';
var repository = 'gh-updater', branch = 'master', update_script_url = 'https://raw.githubusercontent.com/kanasimi/'
+ repository + '/' + branch + '/' + 'GitHub.updater.node.js', updater;
// ----------------------------------------------------------------------------
// 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');
}
// ----------------------------------------------------------------------------
// Using in work_crawler.updater.js pack_up.js
// const
var node_https = require('https'), node_fs = require('fs');
function fetch_url(url, callback) {
var url_str = url;
if (process.env.socks_proxy) {
try {
var SocksProxyAgent = require('socks-proxy-agent').SocksProxyAgent;
url = require('url').parse(url);
url.agent = new SocksProxyAgent(process.env.socks_proxy);
} catch (e) {
console.error('Please install socks-proxy-agent to using proxy: ' + '`npm install socks-proxy-agent`');
throw e;
}
}
node_https.get(url, function(response) {
var buffer_array = [], sum_size = 0;
response.on('data', function(data) {
sum_size += data.length;
buffer_array.push(data);
});
response.on('end', function(e) {
var contents = Buffer.concat(buffer_array, sum_size).toString(),
// {String}url
file_name = url.match(/[^\\\/]+$/)[0];
console.info(file_name + ': ' + sum_size + ' bytes.');
try {
node_fs.writeFileSync(file_name, contents);
} catch (e) {
// e.g., read-only. testing now?
console.error(e);
}
if (typeof callback === 'function')
callback(file_name);
});
})
//
.on('error', function(e) {
// network error?
// console.error(e);
throw e;
if (typeof callback === 'function')
callback(null, e);
});
}
function fetch_url_promise(url) {
return new Promise(function(resolve, reject) {
fetch_url(url, function(file_name, error) {
if (error)
reject(error);
else
resolve(file_name);
});
});
}
/**
* <code>
curl -O https://raw.githubusercontent.com/kanasimi/work_crawler/master/work_crawler.updater.js
* </code>
*/
function download_update_tool(update_script_url, callback) {
show_info('下載 ' + repository + ' 更新工具...');
fetch_url(update_script_url, callback);
}
// ----------------------------------------------------------------------------
download_update_tool(update_script_url, function(update_script_name, error) {
update_CeJS(update_script_name, update_finished);
});
var latest_version_file, executing_at_tool_directory;
function update_CeJS(update_script_name, callback) {
executing_at_tool_directory = node_fs.existsSync('work_crawler_loader.js');
// require('./gh-updater');
updater = require('./' + update_script_name);
show_info('下載並更新 CeJS 網路小說漫畫下載工具...');
updater.update('kanasimi/work_crawler', executing_at_tool_directory
// 解開到當前目錄下。
? '.' : '', function(version_data) {
latest_version_file = version_data.latest_version_file;
if (executing_at_tool_directory) {
// console.log('似乎在 CeJS 網路小說漫畫下載工具的工作目錄下,直接執行升級工具。');
// console.log(process.cwd());
} else {
process.chdir('work_crawler-master');
}
show_info('下載並更新 Colorless echo JavaScript kit (CeJS) 組件...');
updater.update(null, null, function() {
update_dependencies();
callback();
}, {
fetch_opencc : true
});
});
}
function update_dependencies() {
var package_data = JSON.parse(node_fs.readFileSync('package.json'));
// 配置圖形使用者介面。
updater.update_package('electron', {
message : '下載並更新圖形介面需要用到的組件 electron...',
development : true,
// 當 electron 正執行時,npm install, npm update
// 會出現 EBUSY: resource busy or locked 的問題。
skip_installed : true
});
// update other dependent components listed in package_data.dependencies
for ( var package_name in package_data.dependencies) {
if (package_name === 'cejs') {
// 已在 update_CeJS() 安裝過了。
continue;
}
// npm install electron-builder
updater.update_package(package_name);
}
node_fs.chmodSync('start_gui_electron.sh', '0755');
if (!executing_at_tool_directory) {
// 避免第一次執行時檢查更新。
node_fs.copyFileSync('../' + latest_version_file, latest_version_file);
}
}
function update_finished() {
show_info('CeJS 網路小說漫畫下載工具 更新完畢.');
}