-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathupdate.js
305 lines (296 loc) · 11.4 KB
/
update.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
import db from './db.js'
import { sleep, asyncForEach } from './handlers/common.js'
import { update_illust, get_illust } from './handlers/pixiv/illust.js'
import { head_url, thumb_to_all } from './handlers/pixiv/tools.js'
import fs from 'fs'
process.env.dev = 1
async function update_original_file_extension() {
await db.db_initial()
let d = await db.collection.illust.find({}).toArray()
console.log('load illusts from local database', d.length)
await asyncForEach(d, async (illust, id) => {
if (illust.imgs_.fsize) {
illust.imgs_.fsize.forEach(x => {
if (isNaN(x) || !x) {
illust.imgs_.fsize = false
}
})
}
if ((illust.type < 2) && (!illust.imgs_.fsize || !illust.imgs_.fsize[0])) {
console.log('converting', id, illust.id, illust.title)
await update_illust(illust, {}, false)
await sleep(10)
}
})
process.exit()
}
async function update_db_2021_june() {
await db.db_initial()
let d = await db.collection.illust.find({}).toArray()
console.log('load illusts from local database', d.length)
await asyncForEach(d, async (illust, id) => {
if (illust.storableTags || illust.userName || illust.createDate || !illust.imgs_ || !illust.imgs_.fsize) {
console.log('converting', id, illust.id, illust.title)
await update_illust(illust, {}, false)
await sleep(10)
}
else {
console.log('skip', id)
}
})
process.exit()
}
async function update_db_2021_july() {
await db.db_initial()
await db.collection.dropIndexes()
await db.collection.telegraph.createIndex({
telegraph_url: 1
}, {
unique: true,
})
process.exit()
}
async function move_ugoira_folder_and_index_2022_march() {
const base_path = './tmp/mp4_1'
await asyncForEach(fs.readdirSync(base_path), f => {
let ff = f.split('.')
if (!isNaN(parseInt(f[0])) && ff[ff.length - 1] === 'mp4') {
let new_path = ['./tmp/mp4']
const id = ff[0]
if (id.length === 10) {
new_path = [...new_path, `${id.substring(0, 4)}`]
// pixiv's illust will be grow up to 10000000 (length 9) next year.
} else if (id.length === 9) {
new_path = [...new_path, `0${id.substring(0, 3)}`]
} else {
new_path = [...new_path, `00${id.substring(0, 2)}`]
}
if (!fs.existsSync(new_path.join('/'))) {
fs.mkdirSync(new_path.join('/'))
}
new_path.push(f)
console.log(`${base_path}/${f}`, '->', new_path.join('/'))
if (process.env.confirm) {
fs.renameSync(`${base_path}/${f}`, new_path.join('/'))
}
}
})
if (!process.env.confirm) {
console.log(`Type confirm=1 node ${process.argv[2]} to exec`)
}
}
async function update_png_file_error() {
await db.db_initial()
let d = (await db.collection.illust.find({}).toArray()).reverse()
console.log('load illusts from local database', d.length)
await asyncForEach(d, async (illust, id) => {
if (illust.imgs_.original_urls || typeof illust.imgs_.original_urls[0] == 'number' || illust.imgs_.original_urls[0].includes('.png')) {
if (typeof illust.imgs_.original_urls[0] == 'string')
illust.imgs_.original_urls[0] = await head_url(illust.imgs_.original_urls[0])
if (illust.imgs_.original_urls[0] == 404 || typeof illust.imgs_.original_urls[0] == 'number') {
console.log(illust.id, 'png', 404)
illust.url = illust.imgs_.thumb_urls[0]
illust.imgs_ = await thumb_to_all(illust)
}
await update_illust(illust, {}, false)
await sleep(100)
}
})
process.exit()
}
async function update_ugoira_null_size_data() {
await db.db_initial()
let d = (await db.collection.illust.find({
type: 2
}).toArray())
console.log('load ugroia illusts from local database', d.length)
await asyncForEach(d, async (illust, id) => {
try {
if (illust.type === 2 && JSON.stringify(illust.imgs_.size).includes('null')) {
let e = (await exec(`ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=s=x:p=0 './tmp/mp4_1/${illust.id}.mp4'`)).stdout.replace('\n', '').split('x')
console.log(id, illust.id, illust.type, illust.imgs_.size, e)
await db.collection.illust.updateOne({
id: illust.id
}, {
$set: {
'imgs_.size': [{
width: parseInt(e[0]),
height: parseInt(e[1])
}]
}
})
}
}
catch (error) {
console.log(illust.id, error)
}
})
process.exit()
}
async function update_ugoira_1st_image_url() {
await db.db_initial()
let d = (await db.collection.illust.find({
type: 2
}).toArray())
console.log('load ugroia illusts from local database', d.length)
await asyncForEach(d, async (illust, i) => {
try {
if (!illust.imgs_.cover_img_url) {
let new_illust = await get_illust(illust.id, true)
console.log(i, new_illust.id, new_illust.imgs_.cover_img_url)
await sleep(1000)
}
}
catch (error) {
console.error(error)
}
})
process.exit()
}
// async function update_pximg_hostname() {
// await db.db_initial()
// let d = (await db.collection.illust.find({}).toArray())
// console.log('load illusts from local database', d.length)
// await asyncForEach(d, async (illust, i) => {
// if (illust.type == 1) {
// }
// })
// process.exit()
// }
async function set_storage_endpoint_for_ugoira_illust() {
if (!process.argv[3] || !process.argv[4]) {
console.log('usage set_storage_endpoint_for_ugoira_illust <endpoint filename txt> <endpoint name>')
process.exit()
}
// ls mp4/* > output.txt or another way, one line one illust id
let lsoutput = fs.readFileSync(process.argv[3], 'utf8')
let endpoint_name = process.argv[4]
// gets id (remove .mp4)
// NaN LOL
let endpoint_ids = lsoutput.split('\n').map(x => parseInt(x.split('.')[0]))
await db.db_initial()
console.log('loading ugroia illusts from local database')
let d = (await db.collection.illust.find({
type: 2
}).toArray())
console.log('load ugroia illusts from local database', d.length)
await asyncForEach(d, async (illust, i) => {
if (endpoint_ids.includes(illust.id)) {
if (illust.storage_endpoint != endpoint_name) {
await db.collection.illust.updateOne({
id: illust.id
}, {
$set: {
'storage_endpoint': endpoint_name
}
})
console.log('set', i, illust.id, endpoint_name)
}
} else {
try {
await db.collection.illust.updateOne({
id: illust.id
}, {
$unset: ['storage_endpoint']
})
} catch (error) {
}
console.log('unset', i, illust.id, endpoint_name)
}
})
process.exit()
}
async function set_imgs_without_i_cf_2023_may() {
await db.db_initial()
console.log('loading all illusts from local database')
let offset = 0
let d = (await db.collection.illust.find({ type: 0 }).toArray())
console.log('load all illusts from local database', d.length)
await sleep(10)
await asyncForEach(d, async (illust, i) => {
if (illust.type === 2) {
console.log('to', i + offset, illust.id)
if (illust.imgs_.cover_img_url) {
if (illust.imgs_.cover_img_url.startsWith('https://i-cf.pximg.net')) {
console.log('set ugoira', illust.id)
await db.collection.illust.updateOne({
id: illust.id
}, {
$set: {
'imgs_': {
...illust.imgs_,
cover_img_url: illust.imgs_.cover_img_url.replace('https://i-cf.pximg.net', 'https://i.pximg.net')
}
}
})
}
} else {
console.log('warning no ugoira cover', illust.id)
}
} else {
// console.log('to', i + offset, illust.id, parseInt(illust.imgs_.original_urls[0]))
if (parseInt(illust.imgs_.original_urls[0])) {
console.log('handle error data', i, illust.id)
await db.collection.illust.updateOne({
id: illust.id
}, {
$set: {
'imgs_': {
...illust.imgs_,
thumb_urls: illust.imgs_.thumb_urls.filter(u => !parseInt(u)).map(u => u.replace('https://i-cf.pximg.net', 'https://i.pximg.net')),
regular_urls: illust.imgs_.regular_urls.filter(u => !parseInt(u)).map(u => u.replace('https://i-cf.pximg.net', 'https://i.pximg.net')),
original_urls: illust.imgs_.original_urls.filter(u => !parseInt(u)).map(u => u.replace('https://i-cf.pximg.net', 'https://i.pximg.net'))
}
}
})
} else if (illust.imgs_.original_urls[0].startsWith('https://i-cf.pximg.net')) {
console.log('set', illust.id)
await db.collection.illust.updateOne({
id: illust.id
}, {
$set: {
'imgs_': {
...illust.imgs_,
thumb_urls: illust.imgs_.thumb_urls.map(u => u.replace('https://i-cf.pximg.net', 'https://i.pximg.net')),
regular_urls: illust.imgs_.regular_urls.map(u => u.replace('https://i-cf.pximg.net', 'https://i.pximg.net')),
original_urls: illust.imgs_.original_urls.map(u => u.replace('https://i-cf.pximg.net', 'https://i.pximg.net')),
}
}
})
}
}
})
process.exit()
}
async function override_user_setting_album_2024_may() {
await db.db_initial()
console.log('loading all chat_settings from local database')
let d = (await db.collection.chat_setting.find().toArray())
console.log('loaded', d.length)
// await sleep(10)
await asyncForEach(d, async (u, i) => {
if (u.default && !u.default.album && typeof u.default.album == 'boolean') {
console.log(u)
// return
await db.collection.chat_setting.updateOne({
id: u.id
}, {
$set: {
default: {
album: true,
album_one: false
}
}
})
}
})
process.exit()
}
try {
// just some expliot ? LOL
eval(process.argv[2] + '()')
}
catch (error) {
console.error(error)
process.exit()
}