forked from magicoflolis/Userscript-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserscript.js
More file actions
398 lines (389 loc) · 11.4 KB
/
Copy pathuserscript.js
File metadata and controls
398 lines (389 loc) · 11.4 KB
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
import path from 'path';
import { URL } from 'node:url';
import fs from 'node:fs';
import dotenv from 'dotenv';
import Watchpack from 'watchpack';
import { loadLanguages } from './languageLoader.js';
/**
* @typedef { import('../package.json') } CFG
*/
const replaceTemplate = /\[\[(.*?)\]\]/g;
const metaStr = '[[metadata]]';
const log = (...msg) => {
console.log('[LOG]', ...msg);
};
const err = (...msg) => {
console.error('[ERROR]', ...msg);
};
/**
* Object is typeof `object` / JSON Object
* @template O
* @param { O } obj
* @returns { boolean }
*/
const isObj = (obj) => {
/** @type { string } */
const s = Object.prototype.toString.call(obj);
return s.includes('Object');
};
/**
* Object is `null` or `undefined`
* @template O
* @param { O } obj
* @returns { boolean }
*/
const isNull = (obj) => {
return Object.is(obj, null) || Object.is(obj, undefined);
};
/**
* Object is Blank
* @template O
* @param { O } obj
* @returns { boolean }
*/
const isBlank = (obj) => {
return (
(typeof obj === 'string' && Object.is(obj.trim(), '')) ||
((obj instanceof Set || obj instanceof Map) && Object.is(obj.size, 0)) ||
(Array.isArray(obj) && Object.is(obj.length, 0)) ||
(isObj(obj) && Object.is(Object.keys(obj).length, 0))
);
};
/**
* Object is Empty
* @template O
* @param { O } obj
* @returns { boolean }
*/
const isEmpty = (obj) => {
return isNull(obj) || isBlank(obj);
};
/**
* @template { string | { msg: string; } } T
* @template D
* @param { T } template
* @param { D } data
*/
const nano = (template, data) => {
if (typeof template === 'string') {
return template.replace(replaceTemplate, (_match, key) => {
const keys = key.split('.');
let v = data[keys.shift()];
for (const i in keys.length) v = v[keys[i]];
return isEmpty(v) ? '' : v;
});
}
return '';
};
/**
* @param {import('node:fs').PathLike} filePath
* @param {string} encoding
*/
const canAccess = async (filePath, encoding = 'utf-8') => {
const testAccess = await fs.promises.access(
filePath,
fs.promises.constants.R_OK | fs.promises.constants.W_OK
);
if (isNull(testAccess)) {
const data = await fs.promises.readFile(filePath, encoding);
return data.toString(encoding);
}
return {
msg: `Cannot access provided filePath: ${filePath}`
};
};
/**
* @param {import('node:fs').PathLike} filePath
* @param {string} encoding
*/
const fileToJSON = async (filePath, encoding = 'utf-8') => {
const testAccess = await canAccess(filePath, encoding);
if (isObj(testAccess)) {
throw new Error(testAccess.msg);
}
return JSON.parse(testAccess);
};
/**
* @param {import('node:fs').PathLike} destinationFilePath
* @param data
*/
const writeUserJS = async (destinationFilePath, data) => {
return await fs.promises.writeFile(destinationFilePath, data);
};
const toTime = () => {
return new Intl.DateTimeFormat('default', {
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
fractionalSecondDigits: 3
}).format(new Date());
};
/**
* @type { Map<string, any> }
*/
const dataMap = new Map();
const compareArrays = (a, b) =>
a.length === b.length && a.every((element, index) => element === b[index]);
/**
* @template {string} K
* @template V
* @param {K} key
* @param {...V} values
*/
const addTo = (key, ...values) => {
if (values.length === 0) {
return '';
}
if (dataMap.has(key)) {
if (compareArrays(dataMap.get(key), values)) {
return dataMap.get(key);
}
}
dataMap.set(key, values);
return dataMap.get(key);
};
const filterData = [
'name',
'description',
'author',
'icon',
'version',
'url',
'homepage',
'bugs',
'license'
];
(async () => {
/** @type { dotenv.DotenvConfigOutput } */
let result = {};
try {
/**
* @type { CFG }
*/
const jsonData = await fileToJSON('./package.json');
if (!isObj(jsonData)) {
throw new Error('"jsonData" must be an object.');
}
if (!jsonData.userJS) {
throw new Error('Missing "userJS" key');
}
const userJS = jsonData.userJS;
const { build } = userJS;
result = dotenv.config({
path: isEmpty(process.env.JS_ENV) ? build.paths.dev.env : build.paths.public.env
});
if (result.error) {
throw result.error;
}
if (isNull(result.parsed.JS_ENV)) {
dotenv.populate(
result.parsed,
{
JS_ENV: 'development'
},
{ override: true, debug: true }
);
}
const env = result.parsed;
const js_env = env.JS_ENV === 'development';
const dp = js_env ? 'dev' : 'public';
const compileMetadata = () => {
const metaData = [];
for (const [key, value] of Object.entries(userJS.metadata)) {
if (Array.isArray(value)) {
for (const v of value) {
metaData.push(`// @${key} ${v}`);
}
} else if (isObj(value)) {
for (const [k, v] of Object.entries(value)) {
metaData.push(`// @${key} ${k} ${v}`);
}
} else if (typeof value === 'boolean') {
if (value === true) {
metaData.push(`// @${key}`);
}
} else {
metaData.push(`// @${key} ${value}`);
}
}
return metaData.join('\n');
};
const buildUserJS = async () => {
try {
const lngList = await loadLanguages(new URL('../src/_locales', import.meta.url));
const transformLanguages = () => {
const resp = {};
for (const obj of lngList) {
for (const [k, v] of Object.entries(obj)) {
const o = {};
for (const [key, value] of Object.entries(v)) {
if (key.startsWith('ext')) {
continue;
}
if (/userjs_(name|description)/i.test(key)) {
continue;
}
if (isEmpty(value.message)) {
continue;
}
o[key] = value.message;
}
resp[k] = o;
}
}
return JSON.stringify(resp, null, ' ');
};
const compileLanguage = (type = 'userjs_name') => {
const resp = [];
for (const obj of lngList) {
for (const [k, v] of Object.entries(obj)) {
if (v[type]) {
if (isEmpty(v[type].message)) {
continue;
}
if (k.startsWith('en')) {
continue;
}
const t = type.toLowerCase().replace('userjs_', '');
if (type === 'userjs_name') {
resp.push(
`// @${t}:${k.replace('_', '-')} ${js_env ? '[Dev] ' : ''}${v[type].message}`
);
} else {
resp.push(`// @${t}:${k.replace('_', '-')} ${v[type].message}`);
}
}
}
}
return resp;
};
const getData = () => {
for (const [k, v] of Object.entries(userJS)) {
if (typeof v !== 'string') {
continue;
}
if (k === 'name') {
addTo(
k,
`// @${k} ${js_env ? '[Dev] ' : ''}${v}`,
...compileLanguage('userjs_name')
);
} else if (k === 'description') {
addTo(k, `// @${k} ${v}`, ...compileLanguage('userjs_description'));
} else if (k === 'author') {
addTo(k, `// @${k} ${v}`);
} else if (k === 'icon') {
const buff = new Buffer.from(fs.readFileSync(v));
const base64data = buff.toString('base64');
if (v.endsWith('.png')) {
addTo(k, `// @${k} data:image/png;base64,${base64data}`);
} else if (v.endsWith('.svg')) {
addTo(k, `// @${k} data:image/svg+xml;base64,${base64data}`);
}
} else if (k === 'downloadURL') {
addTo(k, `// @downloadURL ${v}`);
} else if (k === 'updateURL') {
addTo(k, `// @updateURL ${v}`);
} else if (k === 'url') {
addTo(k, `// @downloadURL ${v}`, `// @updateURL ${v}`);
} else if (k === 'version') {
addTo(k, `// @${k} ${js_env ? +new Date() : v}`);
} else if (k === 'homepage') {
addTo(k, `// @namespace ${v}`, `// @homepageURL ${v}`);
} else if (k === 'bugs') {
addTo(k, `// @supportURL ${v}`);
} else if (k === 'license') {
addTo(k, `// @${k} ${v}`);
} else {
addTo(k, v);
}
}
for (const [k, v] of Object.entries(jsonData)) {
if (typeof v !== 'string') {
continue;
}
if (!filterData.includes(k)) {
continue;
}
if (dataMap.has(k)) {
continue;
}
if (k === 'license') {
addTo(k, `// @${k} ${v}`);
} else if (k === 'author') {
addTo(k, `// @${k} ${v}`);
}
}
if (userJS.metadata) {
addTo('metaData', compileMetadata());
}
return [...dataMap.values()].flat().join('\n');
};
const userJSHeader = `// ==UserScript==\n${getData()}\n// ==/UserScript==`;
const headerFile = await canAccess(build.source.head);
const mainFile = await canAccess(build.source.body);
const nanoCFG = {
metadata: userJSHeader,
languageList: transformLanguages(),
code: mainFile
};
if (build.source.extras) {
for (const [k, v] of Object.entries(build.source.extras)) {
const extraFile = await canAccess(v);
if (typeof extraFile === 'string') {
nanoCFG[k] = extraFile;
}
}
}
const outFile = `${build.paths[dp].dir}/${build.paths[dp].fileName}.user.js`;
await writeUserJS(outFile, nano(headerFile, nanoCFG));
log('UserJS Build:', {
path: outFile,
time: toTime()
});
if (!js_env) {
const outMeta = `${build.paths[dp].dir}/${build.paths[dp].fileName}.meta.js`;
await writeUserJS(outMeta, nano(metaStr, { metadata: userJSHeader }));
log('UserJS Metadata:', {
path: outMeta,
time: toTime()
});
}
} catch (ex) {
err(ex);
}
};
//#region Start Process
log(`Node ENV: ${env.JS_ENV}`);
if (js_env) {
const wp = new Watchpack();
let changed = new Set();
wp.watch(build.watch.files, build.watch.dirs);
wp.on('change', (changedFile, mtime) => {
if (mtime === null) {
changed.delete(changedFile);
} else {
changed.add(changedFile);
}
});
wp.on('aggregated', async () => {
// Filter out files that start with a dot from detected changes
// (as they are hidden files or temp files created by an editor).
const changes = Array.from(changed).filter((filePath) => {
return !path.basename(filePath).startsWith('.');
});
changed = new Set();
if (changes.length === 0) {
return;
}
await buildUserJS();
});
return;
}
await buildUserJS();
process.exit(0);
//#endregion
} catch (ex) {
err(ex);
}
})();