-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-tags-delta.js
81 lines (66 loc) · 2.61 KB
/
get-tags-delta.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
// get all tags from moebooru
// you can use them to update the tags on your danbooru instance
const { exit } = require('process');
const { URL } = require('url');
const fs = require('fs');
const { promisify } = require('util');
const exec = promisify(require('child_process').exec);
if (!process.argv[2]) {
console.error('Moebooru host required! I need to know where to get your favorites from.');
console.error('Example: https://konachan.com');
exit(1)
}
const host = new URL(process.argv[2]);
const tagsFilename = `data/${host.hostname}-tags.json`;
// create file if not exists
if (!fs.existsSync(tagsFilename)) {
fs.writeFileSync(tagsFilename, '{}');
}
const previousTags = JSON.parse(fs.readFileSync(tagsFilename));
async function getTags() {
// as of moebooru sites,
// in konachan.com API, the `page` param is not working (apr 2022)
// so we need to exit here
if (host.hostname === 'konachan.com') {
console.error('IMPORTANT: konachan.com currently does not support the API (see comments in source code). You need to use get-tags-all.js, instead of this one. exiting...');
exit(1);
}
let count = 0;
try {
for (let i = 1; ; i++) {
console.log(`getting tags from ${host.hostname}, page`, i);
// we use curl instead of axios here is to avoid the issue of proxies
// since i cannot get axios to work with proxies
// specifically, axios does not support https traffic over http proxies
const ret = await exec(`curl -s -H "Accept: application/json" -H "Content-Type: application/json" -X GET "${host.href}tag.json?limit=25&order:date&page=${i}"`);
const response = JSON.parse(ret.stdout)
if (response.length === 0) {
console.log("all tags fetched");
break;
}
let allTagsAreOld = true;
response.forEach(i => {
// this is a new tag
if (!previousTags[i.name]) {
allTagsAreOld = false;
count++;
}
previousTags[i.name] = i;
})
// if this whole page is already in previousTags (not new), we can stop here
if (allTagsAreOld) {
console.log(count, "newly added tags fetched");
break;
}
}
return
} catch (error) {
console.error(error)
exit(1)
}
}
(async function main() {
await getTags();
console.log(`saving changes to ${tagsFilename}`)
fs.writeFileSync(tagsFilename, JSON.stringify(previousTags));
})()