chore: better function name

This commit is contained in:
Cory Dransfeldt 2024-09-22 09:05:43 -07:00
parent 56de28420b
commit 3f48399c09
No known key found for this signature in database
3 changed files with 9 additions and 9 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.19.4", "version": "24.19.5",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.19.4", "version": "24.19.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",
@ -2759,9 +2759,9 @@
} }
}, },
"node_modules/liquidjs": { "node_modules/liquidjs": {
"version": "10.16.7", "version": "10.17.0",
"resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-10.16.7.tgz", "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-10.17.0.tgz",
"integrity": "sha512-vjlBDyPxFgUc6vJB+TbAMcxKKKcm4Ee0rj9Je9lcG1I0lr9xvtHgB/ZdNMNAgsPUvJLkLfdrKRd+KzQ5opPfNg==", "integrity": "sha512-M4MC5/nencttIJHirl5jFTkl7Yu+grIDLn3Qgl7BPAD3BsbTCQknDxlG5VXWRwslWIjk8lSZZjVq9LioILDk1Q==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.19.4", "version": "24.19.5",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -3,20 +3,20 @@ import { convert } from 'html-to-text'
export default { export default {
async scheduled(event, env, ctx) { async scheduled(event, env, ctx) {
await handleScheduledEvent(env) await handleMastodonPost(env)
}, },
async fetch(request, env, ctx) { async fetch(request, env, ctx) {
if (request.method !== 'POST') return new Response('Method Not Allowed', { status: 405 }) if (request.method !== 'POST') return new Response('Method Not Allowed', { status: 405 })
if (request.headers.get('x-webhook-token') !== env.WEBHOOK_SECRET) return new Response('Unauthorized', { status: 401 }) if (request.headers.get('x-webhook-token') !== env.WEBHOOK_SECRET) return new Response('Unauthorized', { status: 401 })
await handleScheduledEvent(env) await handleMastodonPost(env)
return new Response('Worker triggered by successful build.', { status: 200 }) return new Response('Worker triggered by successful build.', { status: 200 })
} }
} }
async function handleScheduledEvent(env) { async function handleMastodonPost(env) {
const mastodonApiUrl = 'https://social.lol/api/v1/statuses' const mastodonApiUrl = 'https://social.lol/api/v1/statuses'
const accessToken = env.MASTODON_ACCESS_TOKEN const accessToken = env.MASTODON_ACCESS_TOKEN
const rssFeedUrl = 'https://coryd.dev/feeds/all' const rssFeedUrl = 'https://coryd.dev/feeds/all'