2023-01-05 10:03:32 +00:00
|
|
|
import { join, resolve } from 'pathe'
|
|
|
|
import fs from 'fs-extra'
|
|
|
|
import { $fetch } from 'ohmyfetch'
|
2023-01-30 10:58:18 +00:00
|
|
|
import { elkTeamMembers } from '../composables/about'
|
2023-01-05 10:03:32 +00:00
|
|
|
|
|
|
|
const avatarsDir = resolve('./public/avatars/')
|
|
|
|
|
|
|
|
const sizes = [60, 100]
|
|
|
|
|
|
|
|
async function download(url: string, fileName: string) {
|
|
|
|
if (fs.existsSync(fileName))
|
|
|
|
return
|
|
|
|
|
|
|
|
console.log('downloading', fileName)
|
|
|
|
try {
|
|
|
|
const image = await $fetch(url, { responseType: 'arrayBuffer' })
|
|
|
|
await fs.writeFile(fileName, Buffer.from(image))
|
|
|
|
}
|
2023-01-12 05:39:22 +00:00
|
|
|
catch (err) {
|
|
|
|
console.error(err)
|
|
|
|
}
|
2023-01-05 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function fetchAvatars() {
|
|
|
|
await fs.ensureDir(avatarsDir)
|
|
|
|
|
2023-01-30 10:58:18 +00:00
|
|
|
await Promise.all(elkTeamMembers.reduce((acc, { github }) => {
|
2023-01-05 10:03:32 +00:00
|
|
|
acc.push(...sizes.map(s => download(`https://github.com/${github}.png?size=${s}`, join(avatarsDir, `${github}-${s}x${s}.png`))))
|
|
|
|
return acc
|
|
|
|
}, [] as Promise<void>[]))
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchAvatars()
|