test: netlify blobs

This commit is contained in:
Cory Dransfeldt 2024-03-03 15:48:06 -08:00
parent ddaff8cb5b
commit 64fc1c0f9b
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
import { getStore } from "@netlify/blobs";
import { getStore, getDeployStore } from "@netlify/blobs";
import EleventyFetch from '@11ty/eleventy-fetch'
// import { S3Client, GetObjectCommand, PutObjectCommand } from '@aws-sdk/client-s3'
@ -16,7 +16,7 @@ const filterDuplicates = array => {
return array.filter(obj => !seenIds.has(obj.id) && seenIds.add(obj.id));
};
export default async function () {
export default async function ({ constants }) {
// const client = new S3Client({
// credentials: {
// accessKeyId: process.env.ACCESS_KEY_B2,
@ -50,7 +50,11 @@ export default async function () {
let cachedLinks;
if (process.env.ELEVENTY_PRODUCTION) {
READWISE_LINKS_STORE = getStore("readwise-links");
const store = getDeployStore({
siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN,
});
READWISE_LINKS_STORE = await store.getStore("readwise-links");
await READWISE_LINKS_STORE.get('cached-links');
}