d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
Web Frontend / Deploy to Cloudflare (push) Waiting to run
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
/**
|
|
* Cloudflare KV access via the OpenNext binding helper.
|
|
* Falls back to in-memory cache for `next dev` outside of `wrangler dev`.
|
|
*/
|
|
import type { CuratedDispatch } from "./types";
|
|
|
|
const MEM = new Map<string, string>();
|
|
|
|
export interface KVNamespace {
|
|
get(key: string): Promise<string | null>;
|
|
put(key: string, value: string, opts?: { expirationTtl?: number }): Promise<void>;
|
|
list(opts?: { prefix?: string; limit?: number }): Promise<{ keys: { name: string }[] }>;
|
|
delete(key: string): Promise<void>;
|
|
}
|
|
|
|
interface CloudflareEnv {
|
|
CURATED_KV?: KVNamespace;
|
|
DEEPSEEK_API_KEY?: string;
|
|
DEEPSEEK_BASE_URL?: string;
|
|
DEEPSEEK_MODEL?: string;
|
|
GITHUB_TOKEN?: string;
|
|
CRON_SECRET?: string;
|
|
GITHUB_REPO?: string;
|
|
}
|
|
|
|
function envFromProcess(): CloudflareEnv {
|
|
return {
|
|
DEEPSEEK_API_KEY: process.env.DEEPSEEK_API_KEY,
|
|
DEEPSEEK_BASE_URL: process.env.DEEPSEEK_BASE_URL,
|
|
DEEPSEEK_MODEL: process.env.DEEPSEEK_MODEL,
|
|
GITHUB_TOKEN: process.env.GITHUB_TOKEN,
|
|
CRON_SECRET: process.env.CRON_SECRET,
|
|
GITHUB_REPO: process.env.GITHUB_REPO,
|
|
};
|
|
}
|
|
|
|
export async function getEnv(): Promise<CloudflareEnv> {
|
|
if (process.env.NEXT_PHASE === "phase-production-build") {
|
|
return envFromProcess();
|
|
}
|
|
|
|
try {
|
|
const mod = await import("@opennextjs/cloudflare");
|
|
const ctx = await mod.getCloudflareContext({ async: true });
|
|
return ctx.env as CloudflareEnv;
|
|
} catch {
|
|
return envFromProcess();
|
|
}
|
|
}
|
|
|
|
export async function getDispatch(): Promise<CuratedDispatch | null> {
|
|
const env = await getEnv();
|
|
const raw = env.CURATED_KV ? await env.CURATED_KV.get("dispatch:latest") : MEM.get("dispatch:latest") ?? null;
|
|
if (!raw) return null;
|
|
try {
|
|
return JSON.parse(raw) as CuratedDispatch;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function putDispatch(d: CuratedDispatch): Promise<void> {
|
|
const env = await getEnv();
|
|
await putDispatchWithKv(env.CURATED_KV, d);
|
|
}
|
|
|
|
export async function putDispatchWithKv(kv: KVNamespace | undefined, d: CuratedDispatch): Promise<void> {
|
|
const value = JSON.stringify(d);
|
|
if (kv) {
|
|
await kv.put("dispatch:latest", value, { expirationTtl: 60 * 60 * 24 * 7 });
|
|
} else {
|
|
MEM.set("dispatch:latest", value);
|
|
}
|
|
}
|