-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdanbooru.mjs
188 lines (183 loc) · 5.72 KB
/
danbooru.mjs
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
import log from './log.mjs'
import { cached } from './cache.mjs'
import fetch from 'node-fetch';
/**
* Send an API request to Danbooru for the specified tag
* @param {String} tag - a valid danbooru tag
* @param {import('./type.mjs').rating} rating - g,q,s,e
* @returns {Promise<import('./type.mjs').apiRequest}
*/
export async function requestImage (tag = 'fox_girl', rating = 'g') {
// rating can be 'g,s' but that adds suggestive content which can get me booped by Discord
// example of extreme "suggestive": https://cdn.donmai.us/original/fb/ec/__kitsune_onee_san_original_drawn_by_akitsuki_karasu__fbecb3a960885c4227d474c0d36b66d6.png
// https://danbooru.donmai.us/posts/random.json?tags=filetype:png,jpg score:>5 favcount:>5 rating:g (fox_girl)
const url = `https://danbooru.donmai.us/posts/random.json?tags=filetype:png,jpg,gif rating:${rating} (${tag})`
// `https://danbooru.donmai.us/posts/random?tags=filetype:png,jpg score:>5 favcount:>5 rating:${rating} (${tag})`
try {
log.debug(`Fetching tags: [${tag}] with rating: [${rating}]...`)
const response = await fetch(url, { headers: { 'User-Agent': 'https://github.com/U5B/mimi.usbwire.net' } })
if (!response.ok || response.status != 200) {
throw Error({response: response})
}
const json = await response.json()
log.debug(`Fetched! Post: https://danbooru.donmai.us/posts/${json.id} || Rating: ${json.rating} || File: ${json.file_url}`)
if (json?.success === false) throw Error('Invalid data!')
if ((json?.is_flagged || json?.is_deleted || json?.is_pending || json?.is_banned) === true) throw Error('Post flagged!')
if ((json.large_file_url || json.file_url) == null) throw Error('No image!')
const data = await newApi(json)
return data
} catch (error) {
if (error?.response) {
const response = error.response
if (response == null || response?.status == null) return false
log.error(`Status: ${response.status}`)
switch (response.status) {
case 424:
case 423:
case 404:
case 400: {
await log.error('URL is malformed: invalid tags')
process.exit(1)
break
}
case 503:
case 502:
case 500: {
log.error('Danbooru is having issues!')
cached.delay += 2000
break
}
case 429: {
log.error('Ratelimit hit!')
cached.delay += 4000
break
}
case 403: {
log.error("CF Page!")
cached.delay += 30000
break
}
default: {
cached.delay += 1000
break
}
}
} else {
log.error(error)
cached.delay += 1000
}
return false
}
}
/**
* Download an image from the specified url.
* @param {String} url - url to download image from
* @returns {Promise<import('./type.mjs').apiImage>}
*/
export async function downloadImage (url) {
try {
log.debug(`Downloading image from: ${url}`)
const response = await fetch(`${url}`, { headers: { 'User-Agent': 'https://github.com/U5B/mimi.usbwire.net' }, responseType: 'arraybuffer' })
if (!response.ok || response.status != 200) {
throw Error({response: response})
}
const arrayBuffer = await response.arrayBuffer()
const raw = Buffer.from(arrayBuffer)
const mime = response.headers.get("content-type") // ex: image/png
const data = await newImage(raw, mime)
if (data.extension === "txt") {
log.error("Response was txt!")
return false
}
return data
} catch (error) {
if (error?.response) {
const response = error.response
if (response == null || response?.status == null) return false
switch (response.status) {
case 424:
case 423:
case 404:
case 400: {
await log.error('URL is malformed: invalid tags')
process.exit(1)
break
}
case 503:
case 502:
case 500: {
log.error('Danbooru is having issues!')
cached.delay += 2000
break
}
case 429: {
log.error('Ratelimit hit!')
cached.delay += 4000
break
}
case 403: {
log.error("CF Page!")
cached.delay += 30000
break
}
default: {
cached.delay += 1000
break
}
}
} else {
log.error(error)
cached.delay += 1000
}
return false
}
}
/**
* Parses image data into usable data
* @param {Buffer} image - raw image
* @param {("image/png"|"image/jpg"|"image/jpeg"|"image/gif")} mime - mimetype of the file: image/png, image/jpg, image/jpeg, image/gif
* @returns {Promise<import('./type.mjs').apiImage>}
*/
async function newImage (image, mime) {
const extension = await getFileExtension(mime)
return {
image,
mime,
extension
}
}
/**
* Parses Danbooru API response into usable data
* @param {*} response - whatever you get from axios lol
* @returns {Promise<import('./type.mjs').apiRequest>} {{raw: String, id: Number, tags: String, url: String, urlhd: String}}
*/
async function newApi (response) {
return {
raw: response,
id: response.id,
tags: response.tag_string,
url: response.has_large === true ? response.large_file_url : response.file_url,
urlhd: response.file_url
}
}
/**
* @param {import('./type.mjs').mime} mime - mimetype of the file: image/png, image/jpg, image/jpeg, image/gif
* @returns {Promise<import('./type.mjs').extension>} - file extension
*/
async function getFileExtension (mime) {
switch (mime) {
case 'image/png': {
return 'png'
}
case 'image/jpg':
case 'image/jpeg': {
return 'jpg'
}
case 'image/gif': {
return 'gif'
}
default: {
return 'txt'
}
}
}