UNPKG

astro-loader-pocketbase

Version:

A content loader for Astro that uses the PocketBase API

108 lines (93 loc) 3.22 kB
import type { LoaderContext } from "astro/loaders"; import type { PocketBaseLoaderOptions } from "../types/pocketbase-loader-options.type"; /** * Cleanup entries that are no longer in the collection. * * @param options Options for the loader. * @param context Context of the loader. * @param superuserToken Superuser token to access all resources. */ export async function cleanupEntries( options: PocketBaseLoaderOptions, context: LoaderContext, superuserToken: string | undefined ): Promise<void> { // Build the URL for the collections endpoint const collectionUrl = new URL( `api/collections/${options.collectionName}/records`, options.url ).href; // Create the headers for the request to append the superuser token (if available) const collectionHeaders = new Headers(); if (superuserToken) { collectionHeaders.set("Authorization", superuserToken); } // Prepare pagination variables let page = 0; let totalPages = 0; const entries = new Set<string>(); // Fetch all ids of the collection do { // Build search parameters const searchParams = new URLSearchParams({ page: `${++page}`, perPage: "1000", fields: "id" }); if (options.filter) { // If a filter is set, add it to the search parameters searchParams.set("filter", `(${options.filter})`); } // Fetch ids from the collection const collectionRequest = await fetch( `${collectionUrl}?${searchParams.toString()}`, { headers: collectionHeaders } ); // If the request was not successful, print the error message and return if (!collectionRequest.ok) { // If the collection is locked, an superuser token is required if (collectionRequest.status === 403) { context.logger.error( `The collection is not accessible without superuser rights. Please provide superuser credentials in the config.` ); } else { const reason = await collectionRequest .json() .then((data) => data.message); const errorMessage = `Fetching ids failed with status code ${collectionRequest.status}.\nReason: ${reason}`; context.logger.error(errorMessage); } // Remove all entries from the store context.logger.info(`Removing all entries from the store.`); context.store.clear(); return; } // Get the data from the response const response = await collectionRequest.json(); // Add the ids to the set for (const item of response.items) { entries.add(item.id); } // Update the page and total pages page = response.page; totalPages = response.totalPages; } while (page < totalPages); let cleanedUp = 0; // Get all ids of the entries in the store const storedIds = context.store .values() .map((entry) => entry.data.id) as Array<string>; for (const id of storedIds) { // If the id is not in the entries set, remove the entry from the store if (!entries.has(id)) { context.store.delete(id); cleanedUp++; } } if (cleanedUp > 0) { // Log the number of cleaned up entries context.logger.info(`Cleaned up ${cleanedUp} old entries.`); } }