Glancerglancer.tsx1 match
9// Initialize Notion client
10const notion = new Client({
11auth: Deno.env.get("NOTION_API_KEY"),
12});
13
GitHubSyncREADME.md3 matches
24- Ensure the token has read/write access to _Contents_ for the repo
25- Copy the access token and add that as the `GITHUB_TOKEN` env var in this val
261. Add a new [Val Town API token][] with read/write permissions. Add that token to the val's env vars as `VALTOWN_TOKEN`
271. Add a `VAL_SECRET` env var to the val. Use this secret to sign the webhook POST request to the `/push` endpoint. Use this endpoint to commit vals from Val Town to your GitHub repo.
286869- `GITHUB_TOKEN`: Read/write GitHub personal access token for reading and writing repo contents
70- `VALTOWN_TOKEN`: ValTown API token (with read/write Vals permissions) for writing updates from GitHub
71- `GITHUB_WEBHOOK_SECRET`: secret for verifying webhooks from GitHub
72- `VAL_SECRET`: secret for verifying requests to the `/push` endpoint
98[github oauth app]: https://github.com/settings/developers
99[access token]: https://github.com/settings/tokens
100[val town api token]: https://www.val.town/settings/api
101[troubleshooting]: #troubleshooting
102
blob_adminmain.tsx6 matches
1516// Public route without authentication
17app.get("/api/public/:id", async (c) => {
18const key = `__public/${c.req.param("id")}`;
19const { blob } = await import("https://esm.town/v/std/blob");
133};
134135app.get("/api/blobs", checkAuth, async (c) => {
136const prefix = c.req.query("prefix") || "";
137const limit = parseInt(c.req.query("limit") || "20", 10);
142});
143144app.get("/api/blob", checkAuth, async (c) => {
145const key = c.req.query("key");
146if (!key) return c.text("Missing key parameter", 400);
150});
151152app.put("/api/blob", checkAuth, async (c) => {
153const key = c.req.query("key");
154if (!key) return c.text("Missing key parameter", 400);
159});
160161app.delete("/api/blob", checkAuth, async (c) => {
162const key = c.req.query("key");
163if (!key) return c.text("Missing key parameter", 400);
167});
168169app.post("/api/blob", checkAuth, async (c) => {
170const { file, key } = await c.req.parseBody();
171if (!file || !key) return c.text("Missing file or key", 400);
blob_adminapp.tsx19 matches
70const menuRef = useRef(null);
71const isPublic = blob.key.startsWith("__public/");
72const publicUrl = isPublic ? `${window.location.origin}/api/public/${encodeURIComponent(blob.key.slice(9))}` : null;
7374useEffect(() => {
234setLoading(true);
235try {
236const response = await fetch(`/api/blobs?prefix=${encodeKey(searchPrefix)}&limit=${limit}`);
237const data = await response.json();
238setBlobs(data);
261setBlobContentLoading(true);
262try {
263const response = await fetch(`/api/blob?key=${encodeKey(clickedBlob.key)}`);
264const content = await response.text();
265setSelectedBlob({ ...clickedBlob, key: decodeKey(clickedBlob.key) });
275const handleSave = async () => {
276try {
277await fetch(`/api/blob?key=${encodeKey(selectedBlob.key)}`, {
278method: "PUT",
279body: editContent,
287const handleDelete = async (key) => {
288try {
289await fetch(`/api/blob?key=${encodeKey(key)}`, { method: "DELETE" });
290setBlobs(blobs.filter(b => b.key !== key));
291if (selectedBlob && selectedBlob.key === key) {
304const key = `${searchPrefix}${file.name}`;
305formData.append("key", encodeKey(key));
306await fetch("/api/blob", { method: "POST", body: formData });
307const newBlob = { key, size: file.size, lastModified: new Date().toISOString() };
308setBlobs([newBlob, ...blobs]);
326try {
327const fullKey = `${searchPrefix}${key}`;
328await fetch(`/api/blob?key=${encodeKey(fullKey)}`, {
329method: "PUT",
330body: "",
341const handleDownload = async (key) => {
342try {
343const response = await fetch(`/api/blob?key=${encodeKey(key)}`);
344const blob = await response.blob();
345const url = window.URL.createObjectURL(blob);
360if (newKey && newKey !== oldKey) {
361try {
362const response = await fetch(`/api/blob?key=${encodeKey(oldKey)}`);
363const content = await response.blob();
364await fetch(`/api/blob?key=${encodeKey(newKey)}`, {
365method: "PUT",
366body: content,
367});
368await fetch(`/api/blob?key=${encodeKey(oldKey)}`, { method: "DELETE" });
369setBlobs(blobs.map(b => b.key === oldKey ? { ...b, key: newKey } : b));
370if (selectedBlob && selectedBlob.key === oldKey) {
380const newKey = `__public/${key}`;
381try {
382const response = await fetch(`/api/blob?key=${encodeKey(key)}`);
383const content = await response.blob();
384await fetch(`/api/blob?key=${encodeKey(newKey)}`, {
385method: "PUT",
386body: content,
387});
388await fetch(`/api/blob?key=${encodeKey(key)}`, { method: "DELETE" });
389setBlobs(blobs.map(b => b.key === key ? { ...b, key: newKey } : b));
390if (selectedBlob && selectedBlob.key === key) {
399const newKey = key.slice(9); // Remove "__public/" prefix
400try {
401const response = await fetch(`/api/blob?key=${encodeKey(key)}`);
402const content = await response.blob();
403await fetch(`/api/blob?key=${encodeKey(newKey)}`, {
404method: "PUT",
405body: content,
406});
407await fetch(`/api/blob?key=${encodeKey(key)}`, { method: "DELETE" });
408setBlobs(blobs.map(b => b.key === key ? { ...b, key: newKey } : b));
409if (selectedBlob && selectedBlob.key === key) {
554onClick={() =>
555copyToClipboard(
556`${window.location.origin}/api/public/${encodeURIComponent(selectedBlob.key.slice(9))}`,
557)}
558className="text-blue-400 hover:text-blue-300 text-sm"
577>
578<img
579src={`/api/blob?key=${encodeKey(selectedBlob.key)}`}
580alt="Blob content"
581className="max-w-full h-auto"
2import { Hono } from "npm:hono";
34import { getLaunches } from "./spacexapi.ts";
5import { spacexCalendar } from "./spacexcalendar.ts";
6import { getChartUrl } from "./spacexchart.ts";
75{
76/* <div class="mb-3">
77<a href="/api" target="_blank">API</a>
78</div>
79<div class="mb-4">
1export default async (c, next) => {
2const secret = c.req.header("x-api-key");
3const method = c.req.method;
4if (secret !== Deno.env.get("X_API_KEY") && method !== "GET") {
5return c.text("Unauthorized", 401);
6}
8687/**
88* Format chat history for Anthropic API
89*/
90function formatChatHistoryForAI(history) {
314bot.on("message", async (ctx) => {
315try {
316// Get Anthropic API key from environment
317const apiKey = Deno.env.get("ANTHROPIC_API_KEY");
318if (!apiKey) {
319console.error("Anthropic API key is not configured.");
320ctx.reply(
321"I apologize, but I'm not properly configured at the moment. Please inform the household administrator.",
325326// Initialize Anthropic client
327const anthropic = new Anthropic({ apiKey });
328329// Get message text and user info
491// Set webhook if it is not set yet
492if (!isEndpointSet) {
493await bot.api.setWebhook(req.url, {
494secret_token: SECRET_TOKEN,
495});
166bot.on("message", async (ctx) => {
167try {
168const OPENAI_KEY = Deno.env.get("OPENAI_API_KEY");
169if (!OPENAI_KEY) {
170console.error("OPENAI_API_KEY is not configured.");
171await ctx.reply("I apologize, but I am not properly configured at present.");
172return;
173}
174175const openai = new OpenAI({ apiKey: OPENAI_KEY });
176177const messageText = ctx.message.text ?? "";
263export default async function(req: Request): Promise<Response> {
264if (!isEndpointSet) {
265await bot.api.setWebhook(req.url, { secret_token: SECRET_TOKEN });
266isEndpointSet = true;
267}
stevens-openaigenerateFunFacts.ts4 matches
66// -----------------------------------------------------------------------------
67async function generateFunFacts(previousFacts: { date: string; text: string }[]) {
68const apiKey = Deno.env.get("OPENAI_API_KEY");
69if (!apiKey) {
70console.error("OPENAI_API_KEY is not configured.");
71return [];
72}
7374const openai = new OpenAI({ apiKey });
7576// Build auxiliary strings for the prompt
stevens-openaigetWeather.ts4 matches
26*/
27async function generateConciseWeatherSummary(weatherDay: ReturnType<typeof summarizeWeather>[number]) {
28const apiKey = Deno.env.get("OPENAI_API_KEY");
29if (!apiKey) {
30console.error("OPENAI_API_KEY is not configured.");
31return null;
32}
3334const openai = new OpenAI({ apiKey });
3536const systemPrompt = `You are a weather forecaster. Create a very concise summary of a day's forecast.`;