From 8890af06b2847b2e3c6bb68361c86ded71a87f0c Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 4 Apr 2024 16:53:02 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-charts/index.js | 30 -------------------- plugins/fetch-charts/manifest.yaml | 1 - plugins/fetch-charts/package-lock.json | 34 ----------------------- plugins/fetch-charts/package.json | 11 -------- plugins/fetch-scrobbles/index.js | 20 +++++++++++++ plugins/fetch-scrobbles/package-lock.json | 16 +++++++++-- plugins/fetch-scrobbles/package.json | 3 +- 7 files changed, 35 insertions(+), 80 deletions(-) delete mode 100644 plugins/fetch-charts/index.js delete mode 100644 plugins/fetch-charts/manifest.yaml delete mode 100644 plugins/fetch-charts/package-lock.json delete mode 100644 plugins/fetch-charts/package.json diff --git a/plugins/fetch-charts/index.js b/plugins/fetch-charts/index.js deleted file mode 100644 index 68752b23..00000000 --- a/plugins/fetch-charts/index.js +++ /dev/null @@ -1,30 +0,0 @@ -import { getStore, setEnvironmentContext } from '@netlify/blobs' -import { DateTime } from 'luxon' -import fs from 'fs' - -const getKeys = () => { - const currentDate = DateTime.now() - return [ - `${currentDate.year}-${currentDate.weekNumber}` - `${currentDate.minus({ weeks: 1 }).year}-${currentDate.minus({ weeks: 1 }).weekNumber}`, - `${currentDate.minus({ weeks: 2 }).year}-${currentDate.minus({ weeks: 2 }).weekNumber}`, - `${currentDate.minus({ weeks: 3 }).year}-${currentDate.minus({ weeks: 3 }).weekNumber}`, - `${currentDate.minus({ weeks: 4 }).year}-${currentDate.minus({ weeks: 4 }).weekNumber}`, - ] -} - -export const onPreBuild = async ({ constants }) => { - const keys = getKeys() - const data = [] - setEnvironmentContext({ - siteID: constants.SITE_ID, - token: constants.NETLIFY_API_TOKEN, - }) - const scrobbles = getStore('scrobbles') - keys.forEach(async key => { - const scrobbleData = await scrobbles.get(key, { type: 'json'}) - data.push(scrobbleData['data']) - }) - console.log(data) - fs.writeFileSync('./src/_data/json/scrobbles-month-chart.json', JSON.stringify(data)) -} \ No newline at end of file diff --git a/plugins/fetch-charts/manifest.yaml b/plugins/fetch-charts/manifest.yaml deleted file mode 100644 index 4b3b958e..00000000 --- a/plugins/fetch-charts/manifest.yaml +++ /dev/null @@ -1 +0,0 @@ -name: netlify-plugin-fetch-charts \ No newline at end of file diff --git a/plugins/fetch-charts/package-lock.json b/plugins/fetch-charts/package-lock.json deleted file mode 100644 index 3f84b0d0..00000000 --- a/plugins/fetch-charts/package-lock.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "netlify-plugin-fetch-charts", - "version": "0.0.8", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "netlify-plugin-fetch-charts", - "version": "0.0.8", - "devDependencies": { - "@netlify/blobs": "^7.3.0", - "luxon": "^3.4.4" - } - }, - "node_modules/@netlify/blobs": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-7.3.0.tgz", - "integrity": "sha512-wN/kNTZo4xjlUM/C0WILOkJbe8p4AFquSGkZEIoIcgnsx5ikp2GyqGiq1WMLee7QdbnqeIV2g2hn/PjT324E5w==", - "dev": true, - "engines": { - "node": "^14.16.0 || >=16.0.0" - } - }, - "node_modules/luxon": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", - "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==", - "dev": true, - "engines": { - "node": ">=12" - } - } - } -} diff --git a/plugins/fetch-charts/package.json b/plugins/fetch-charts/package.json deleted file mode 100644 index df7ec883..00000000 --- a/plugins/fetch-charts/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "netlify-plugin-fetch-charts", - "version": "0.0.8", - "description": "netlify-plugin-fetch-charts", - "main": "index.js", - "type": "module", - "devDependencies": { - "@netlify/blobs": "^7.3.0", - "luxon": "^3.4.4" - } -} diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index aad6c74b..61f65153 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -1,11 +1,25 @@ import { getStore, setEnvironmentContext } from '@netlify/blobs' +import { DateTime } from 'luxon' import fs from 'fs' +const getKeys = () => { + const currentDate = DateTime.now() + return [ + `${currentDate.year}-${currentDate.weekNumber}` + `${currentDate.minus({ weeks: 1 }).year}-${currentDate.minus({ weeks: 1 }).weekNumber}`, + `${currentDate.minus({ weeks: 2 }).year}-${currentDate.minus({ weeks: 2 }).weekNumber}`, + `${currentDate.minus({ weeks: 3 }).year}-${currentDate.minus({ weeks: 3 }).weekNumber}`, + `${currentDate.minus({ weeks: 4 }).year}-${currentDate.minus({ weeks: 4 }).weekNumber}`, + ] +} + export const onPreBuild = async ({ constants }) => { setEnvironmentContext({ siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, }) + const keys = getKeys() + const chartData = [] const scrobbles = getStore('scrobbles') const artists = getStore('artists') const albums = getStore('albums') @@ -13,8 +27,14 @@ export const onPreBuild = async ({ constants }) => { 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'}) + keys.forEach(async key => { + const scrobbleData = await scrobbles.get(key, { type: 'json'}) + data.push(scrobbleData['data']) + }) + console.log(chartData) fs.writeFileSync('./src/_data/json/scrobbles-window.json', JSON.stringify(windowData)) fs.writeFileSync('./src/_data/json/artists-map.json', JSON.stringify(artistsMap)) fs.writeFileSync('./src/_data/json/albums-map.json', JSON.stringify(albumsMap)) fs.writeFileSync('./src/_data/json/now-playing.json', JSON.stringify(nowPlaying)) + fs.writeFileSync('./src/_data/json/scrobbles-month-chart.json', JSON.stringify(chartData)) } \ No newline at end of file diff --git a/plugins/fetch-scrobbles/package-lock.json b/plugins/fetch-scrobbles/package-lock.json index 24fb0138..2d8e6091 100644 --- a/plugins/fetch-scrobbles/package-lock.json +++ b/plugins/fetch-scrobbles/package-lock.json @@ -1,14 +1,15 @@ { - "name": "netlify-plugin-rss", + "name": "netlify-plugin-fetch-scrobbles", "version": "0.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "netlify-plugin-rss", + "name": "netlify-plugin-fetch-scrobbles", "version": "0.0.8", "devDependencies": { - "@netlify/blobs": "^7.3.0" + "@netlify/blobs": "^7.3.0", + "luxon": "^3.4.4" } }, "node_modules/@netlify/blobs": { @@ -19,6 +20,15 @@ "engines": { "node": "^14.16.0 || >=16.0.0" } + }, + "node_modules/luxon": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", + "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==", + "dev": true, + "engines": { + "node": ">=12" + } } } } diff --git a/plugins/fetch-scrobbles/package.json b/plugins/fetch-scrobbles/package.json index 6531061f..4f516adf 100644 --- a/plugins/fetch-scrobbles/package.json +++ b/plugins/fetch-scrobbles/package.json @@ -5,6 +5,7 @@ "main": "index.js", "type": "module", "devDependencies": { - "@netlify/blobs": "^7.3.0" + "@netlify/blobs": "^7.3.0", + "luxon": "^3.4.4" } }