diff --git a/netlify.toml b/netlify.toml index 3c6b965a..178e11b7 100644 --- a/netlify.toml +++ b/netlify.toml @@ -6,6 +6,9 @@ publish = "_site" edge_functions = "api" +[[plugins]] +package = "/plugins/fetch-scrobbles" + ### # URLs ### diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js new file mode 100644 index 00000000..f3eb1b94 --- /dev/null +++ b/plugins/fetch-scrobbles/index.js @@ -0,0 +1,19 @@ +import { getStore } from '@netlify/blobs' +import fs from 'fs' + +export const onPreBuild = async () => { + 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'}) + + console.log(windowData) + + fs.writeFileSync('/src/_data/json/scrobbles-window.json', windowData) + fs.writeFileSync('/src/_data/json/artists-map.json', artistsMap) + fs.writeFileSync('/src/_data/json/albums-map.json', albumsMap) + fs.writeFileSync('/src/_data/json/now-playing.json', nowPlaying) +} \ No newline at end of file diff --git a/plugins/fetch-scrobbles/manifest.yaml b/plugins/fetch-scrobbles/manifest.yaml new file mode 100644 index 00000000..b26886f1 --- /dev/null +++ b/plugins/fetch-scrobbles/manifest.yaml @@ -0,0 +1 @@ +name: netlify-plugin-fetch-scrobbles \ No newline at end of file