|
| 1 | +import yaml from "js-yaml" |
| 2 | +import { readFileSync } from "fs" |
| 3 | + |
| 4 | +const yamlFile = readFileSync("src/lib/data/store.yaml", "utf8") |
| 5 | +const yamlData = yaml.load(yamlFile) |
| 6 | + |
| 7 | +import { LEMONSQUEEZY_API_KEY } from "$env/static/private" |
| 8 | + |
| 9 | +const LSParams = { |
| 10 | + headers: { |
| 11 | + Accept: "application/vnd.api+json", |
| 12 | + "Content-type": "application/vnd.api+json", |
| 13 | + Authorization: `Bearer ${LEMONSQUEEZY_API_KEY}`, |
| 14 | + }, |
| 15 | +} |
| 16 | +export async function getTags() { |
| 17 | + const modules = import.meta.glob("./(routes)/blog/tag/[tag]/+page.server.js") |
| 18 | + let tags = new Set() |
| 19 | + |
| 20 | + for (const path in modules) { |
| 21 | + const module = await modules[path]() |
| 22 | + if (module && module.load) { |
| 23 | + try { |
| 24 | + const result = await module.load() |
| 25 | + if (result && result.params && result.params.tag) { |
| 26 | + tags.add(result.params.tag) |
| 27 | + } |
| 28 | + } catch (error) { |
| 29 | + console.error(`Error loading tags from ${path}:`, error) |
| 30 | + } |
| 31 | + } |
| 32 | + } |
| 33 | + return Array.from(tags) |
| 34 | +} |
| 35 | + |
| 36 | +export async function getVideoIds() { |
| 37 | + try { |
| 38 | + const response = await fetch("https://api.daisyui.com/api/youtube.json") |
| 39 | + if (!response.ok) { |
| 40 | + throw new Error(`HTTP error! status: ${response.status}`) |
| 41 | + } |
| 42 | + const videos = await response.json() |
| 43 | + return videos.map((video) => video.id) |
| 44 | + } catch (error) { |
| 45 | + console.error("Error fetching YouTube data:", error) |
| 46 | + return [] |
| 47 | + } |
| 48 | +} |
| 49 | + |
| 50 | +export async function getProductIds() { |
| 51 | + try { |
| 52 | + const productsResponse = await fetch( |
| 53 | + "https://api.lemonsqueezy.com/v1/products?page[size]=100", |
| 54 | + LSParams, |
| 55 | + ) |
| 56 | + |
| 57 | + if (!productsResponse.ok) { |
| 58 | + console.error("Error fetching product data:", productsResponse.status) |
| 59 | + return [] |
| 60 | + } |
| 61 | + |
| 62 | + const originalData = await productsResponse.json() |
| 63 | + if (!originalData || !originalData.data) { |
| 64 | + console.warn("No product data received from API") |
| 65 | + return [] |
| 66 | + } |
| 67 | + |
| 68 | + return originalData.data.map((product) => String(product.id)) // Extract product IDs as strings |
| 69 | + } catch (error) { |
| 70 | + console.error("Error fetching or processing product data:", error) |
| 71 | + return [] |
| 72 | + } |
| 73 | +} |
0 commit comments