chore: better function name
This commit is contained in:
parent
56de28420b
commit
3f48399c09
3 changed files with 9 additions and 9 deletions
10
package-lock.json
generated
10
package-lock.json
generated
|
@ -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": {
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Reference in a new issue