This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/plugins/fetch-scrobbles/index.js
Cory Dransfeldt e3797e7602
chore: debug
2024-04-03 20:08:46 -07:00

23 lines
No EOL
986 B
JavaScript

import { getStore, setEnvironmentContext } from '@netlify/blobs'
import fs from 'fs'
export const onPreBuild = async ({
constants,
inputs: { dirOutput }
}) => {
setEnvironmentContext({
siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN,
})
const scrobbles = getStore('scrobbles')
const artists = getStore('artists')
const albums = getStore('albums')
const windowData = await scrobbles.get('window', { type: 'json'})
const artistsMap = await artists.get('artists-map', { type: 'json' })
const albumsMap = await albums.get('albums-map', { type: 'json' })
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
fs.writeFileSync(`${dirOutput}scrobbles-window.json`, JSON.stringify(windowData))
fs.writeFileSync(`${dirOutput}artists-map.json`, JSON.stringify(artistsMap))
fs.writeFileSync(`${dirOutput}albums-map.json`, JSON.stringify(albumsMap))
fs.writeFileSync(`${dirOutput}now-playing.json`, JSON.stringify(nowPlaying))
}