mirror of https://github.com/elk-zone/elk.git
32 lines
823 B
TypeScript
32 lines
823 B
TypeScript
|
import { join, resolve } from 'pathe'
|
||
|
import fs from 'fs-extra'
|
||
|
import { $fetch } from 'ohmyfetch'
|
||
|
import { teams } from '../composables/about'
|
||
|
|
||
|
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))
|
||
|
}
|
||
|
catch {}
|
||
|
}
|
||
|
|
||
|
async function fetchAvatars() {
|
||
|
await fs.ensureDir(avatarsDir)
|
||
|
|
||
|
await Promise.all(teams.reduce((acc, { github }) => {
|
||
|
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()
|