xkcd/lib/xkcd.js
Henrique Dias 396de4ea0f
fix: don't download comics we know we can't (#7)
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2019-11-03 10:07:09 +00:00

44 lines
969 B
JavaScript

const fetch = require('node-fetch')
const path = require('path')
async function getLatestId () {
const raw = await fetch(`https://xkcd.com/info.0.json`)
const data = await raw.json()
return data.num
}
async function getImage (url) {
const ext = path.extname(url)
const url2x = `${path.dirname(url)}/${path.basename(url, ext)}_2x${ext}`
let res = await fetch(url2x)
if (!res.ok) {
res = await fetch(url)
}
if (!res.ok) {
throw new Error('bad image request')
}
return res.buffer()
}
async function getComic (id) {
const raw = await fetch(`https://xkcd.com/${id}/info.0.json`)
const data = await raw.json()
let img = null
// Some comics, such as 1608 and 1663, are composed by interactive
// games and cannot be downloaded as images, so we just ignore them.
if (data.img !== 'https://imgs.xkcd.com/comics/') {
img = await getImage(data.img)
}
return { data, img }
}
module.exports = {
getLatestId,
getComic
}