-
Notifications
You must be signed in to change notification settings - Fork 321
/
work_crawler_loader.js
398 lines (342 loc) · 14.1 KB
/
work_crawler_loader.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
/**
* 載入批量下載網路作品(小說、漫畫)的主要功能。 Download novels / comics.
*
* TODO: https://github.com/iridakos/bash-completion-tutorial
*/
'use strict';
// ----------------------------------------------------------------------------
var node_fs = require('fs');
var default_configuration_file = './work_crawler.default_configuration.js';
var user_configuration_file = './work_crawler.configuration.js';
if (typeof globalThis === 'undefined' && typeof global === 'object') {
global.globalThis = global;
}
try {
// Load default configuration.
require(default_configuration_file);
} catch (e) {
}
try {
// Load configuration.
require(user_configuration_file);
} catch (e) {
if (false) {
// File not exists?
console.error('無法載入 ' + user_configuration_file + ' 裡的設定。或許是因為程式碼有錯誤?');
}
if (false) {
// 將 default_configuration_file 改名成 user_configuration_file。
try {
// node_fs.renameSync(default_configuration_file,
// user_configuration_file);
} catch (e) {
// e.g., released package version?
}
}
}
// ----------------------------------------------------------------------------
// Load CeJS library.
try {
require('./_CeL.loader.nodejs.js');
} catch (e) {
// console.error(e);
}
// @see _CeL.loader.nodejs.js
if (typeof CeL !== 'function' && use_cejs_mudule) {
try {
require('cejs');
} catch (e) {
// no cejs
}
}
if (typeof CeL !== 'function') {
console.error('Failed to load CeJS library!\n');
console.info('請先安裝 CeJS library:\nnpm install cejs\n\n'
//
+ 'Or you may trying the latest version:\n'
//
+ 'See https://github.com/kanasimi/CeJS');
throw 'No CeJS library';
}
// ----------------------------------------------------------------------------
// Setup CeJS before loading modules.
// 判別是否運行了多個 CeL 實體使用。
if (!CeL.random_id)
CeL.random_id = Math.random();
var is_CLI = CeL.platform.is_CLI;
if (is_CLI) {
// for i18n: define gettext() user domain resources location.
// gettext() will auto load (CeL.env.domain_location + language + '.js').
// e.g., resources/cmn-Hant-TW.js, resources/ja-JP.js
CeL.env.domain_location = module.filename.replace(/[^\\\/]*$/, 'resources'
+ CeL.env.path_separator);
}
// ----------------------------------------------------------------------------
// Load modules.
// CeL.set_debug(6);
// 先載入 application.platform.nodejs 是為了
// CeL.env.domain_location @ gui_electron_functions.js
CeL.run('application.platform.nodejs', [
// Add color to console messages. 添加主控端報告的顏色。
'interact.console',
// 載入批量下載小說、漫畫的主要功能。
'application.net.work_crawler',
// for internationalization and localization 國際化與在地化 gettext()
'application.locale' ], function() {
// 不自動匯入 .env.arg_hash
CeL.work_crawler.prototype.auto_import_args = false;
});
// ----------------------------------------------------------------------------
// console.log(process.argv);
// e.g., # node task.js debug=2
if (CeL.env.arg_hash && (CeL.env.arg_hash.set_debug || CeL.env.arg_hash.debug)) {
CeL.set_debug(CeL.env.arg_hash.set_debug || CeL.env.arg_hash.debug);
}
if (is_CLI) {
// CeL.gettext.use_domain('GUESS', true);
}
globalThis.work_id = is_CLI
&& (CeL.env.arg_hash && (CeL.env.arg_hash.title || CeL.env.arg_hash.id) || process.argv[2])
|| globalThis.work_id;
if (data_directory
// && !CeL.directory_exists(data_directory)
) {
try {
// 若是目標目錄無法存取,那就放在當前目錄下。
node_fs.accessSync(data_directory);
// 最後必須加上目錄分隔號 `\\’。
if (/^[\\\/]$/.test(data_directory))
data_directory += CeL.env.path_separator;
} catch (e) {
// 只 call 一次 CeL.warn(),這樣在 GUI 會顯示在同一行。
CeL.warn([ {
// gettext_config:{"id":"warning-unable-to-access-the-storage-directory-$1"}
T : [ '警告:無法存取作品存放目錄 [%1]!', data_directory ]
}, '\n', {
// gettext_config:{"id":"the-downloaded-file-will-be-placed-in-the-default-directory"}
T : '下載的檔案將放在預設目錄下。'
} ]);
data_directory = '';
}
}
// used in: function initializer() @ gui_electron_functions.js
function option_type_token(arg_type_data, colors) {
if (!arg_type_data)
return '';
var option_types = [ ' (' ];
Object.keys(arg_type_data).forEach(function(type) {
var condition = arg_type_data[type];
if (Array.isArray(condition)) {
condition = condition.join('; ');
} else {
condition = JSON.stringify(condition);
}
option_types.push({
// gettext_config:{"id":"number","mark_type":"combination_message_id"}
// gettext_config:{"id":"function","mark_type":"combination_message_id"}
// gettext_config:{"id":"boolean","mark_type":"combination_message_id"}
// gettext_config:{"id":"string","mark_type":"combination_message_id"}
// gettext_config:{"id":"fso_file","mark_type":"combination_message_id"}
// gettext_config:{"id":"fso_files","mark_type":"combination_message_id"}
// gettext_config:{"id":"fso_directory","mark_type":"combination_message_id"}
// gettext_config:{"id":"fso_directories","mark_type":"combination_message_id"}
T : type,
S : {
color : colors && colors[0] || 'green'
}
});
if (condition) {
// TODO: onclick
option_types.push(': ', {
T : condition,
S : {
color : colors && colors[1] || 'yellow'
}
});
}
option_types.push(' | ');
});
if (option_types.length === 1) {
// assert: There is no types indecated within `arg_type_data`.
option_types = '';
} else {
// remove last separator
option_types.splice(-1, 1, ')');
}
return option_types;
}
// @see https://github.com/yargs/yargs
if (is_CLI && !work_id && require.main
// 檔案整理工具不需要下載作品,因此也不需要作品名稱。
&& (typeof need_work_id === 'undefined' || need_work_id)) {
CeL.info({
// gettext_config:{"id":"cejs-online-novels-comics-downloader"}
T : 'CeJS 網路小說漫畫下載工具'
});
CeL.log({
T : [
// gettext_config:{"id":"to-use-the-graphical-interface-please-execute-`$1`"}
'欲採用圖形介面請執行 `%1`。',
'start_gui_electron.'
+ (CeL.platform.is_Windows() ? 'bat' : 'sh') ]
});
CeL.log('');
// --------------------------------
var main_script = require.main
&& require.main.filename.match(/[^\\\/]+$/)[0],
//
options_arguments = ' ['
// gettext_config:{"id":"option=true"}
+ CeL.gettext('option=true') + '] ["'
// gettext_config:{"id":"option=value"}
+ CeL.gettext('option=value') + '"]';
// 顯示幫助信息/用法說明。
CeL.log({
// gettext_config:{"id":"usage"}
T : 'Usage:'
});
// 分兩行顯示可以避免大螢幕上紫色背景不斷行問題。
CeL.log({
T : ' node ' + main_script + ' "'
// gettext_config:{"id":"work-title-work-id"}
+ CeL.gettext('作品標題或 id') + '"' + options_arguments,
S : {
color : 'white',
backgroundColor : 'magenta'
}
});
CeL.log({
T : ' node ' + main_script + ' "l='
// gettext_config:{"id":"work-list-file"}
+ CeL.gettext('作品列表檔案') + '"' + options_arguments,
S : {
color : 'white',
backgroundColor : 'magenta'
}
});
CeL.log('');
// --------------------------------
CeL.log({
// gettext_config:{"id":"options"}
T : 'Options:'
});
Object.entries(CeL.work_crawler.prototype.import_arg_hash)
//
.forEach(function(pair) {
CeL.log([ ' ', {
T : pair[0],
S : {
color : 'magenta',
backgroundColor : 'cyan'
}
}, option_type_token(pair[1]) ]);
CeL.log([ ' ', {
// gettext_config:{"id":"download_options.recheck","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.show_information_only","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.start_chapter","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.start_chapter_no","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.start_chapter_title","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.start_list_serial","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.rearrange_list_file","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.regenerate","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.reget_chapter","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.search_again","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.cache_title_to_id","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.chapter_time_interval","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.chapter_filter","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.acceptable_types","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.archive_images","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.archive_all_good_images_only","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.remove_images_after_archive","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.images_archive_extension","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.max_error_retry","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.allow_eoi_error","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.min_length","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.timeout","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.skip_error","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.skip_chapter_data_error","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.preserve_work_page","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.preserve_chapter_page","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.remove_ebook_directory","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.one_by_one","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.overwrite_old_file","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.convert_to_language","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.discard_old_ebook_file","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.vertical_writing","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.main_directory","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.user_agent","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.proxy","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.cookie","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.write_chapter_metadata","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.write_image_metadata","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.archive_old_works","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.modify_work_list_when_archive_old_works","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.save_preference","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.data_directory","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.preserve_download_work_layer","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.play_finished_sound","mark_type":"combination_message_id"}
// gettext_config:{"id":"download_options.archive_program_path","mark_type":"combination_message_id"}
T : CeL.gettext('download_options.' + pair[0]),
S : {
color : 'white'
}
} ]);
});
// --------------------------------
process.exit();
}
globalThis.option_type_token = option_type_token;
// ----------------------------------------------------------------------------
function setup_crawler(crawler, crawler_module) {
// 不重複設定。
if (crawler.already_settled)
return;
crawler.already_settled = true;
if (crawler_module) {
crawler_module.exports = crawler;
crawler.id = crawler_module.filename.match(/([^\\\/]+)\.js$/)[1];
}
// 下載檔案儲存目錄路徑。圖片檔與紀錄檔的下載位置。下載網路的作品檔案後,將儲存於此目錄下。
crawler.setup_value('main_directory', data_directory + crawler.id);
crawler.setup_value(
//
crawler.site_configuration = site_configuration[crawler.id]);
if (proxy_server) {
crawler.setup_value('proxy', proxy_server);
}
// 從命令列引數來的設定,優先等級比起作品預設設定更高。
// console.log(CeL.env.arg_hash);
crawler.import_args();
if (typeof setup_crawler.prepare === 'function') {
setup_crawler.prepare(crawler, crawler_module);
}
CeL.debug(crawler.id + ', ' + crawler.main_directory, 1, 'setup_crawler');
}
globalThis.setup_crawler = setup_crawler;
function start_crawler(crawler, crawler_module) {
setup_crawler(crawler, crawler_module);
// console.log(crawler_module);
if (!is_CLI) {
// GUI has its process.
return;
}
if (work_id === 'l' && default_favorite_list) {
work_id = default_favorite_list;
if (typeof work_id === 'function')
work_id = work_id.call(crawler);
}
// 從其他程式匯入作品資料 可使用API會更有效率
// show work information only 純粹只要在命令列介面顯示作品資料即可
if (CeL.env.arg_hash.show_information_only) {
crawler.data_of(work_id, function got_work_data(work_data) {
// console.log(work_data);
crawler.show_work_data(work_data);
}, {
get_data_only : CeL.env.arg_hash.show_information_only
});
return;
}
crawler.start(work_id, crawler.after_download_list);
}
globalThis.start_crawler = start_crawler;
// CeL.set_debug(3);