mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Added webhook exception logging
This commit is contained in:
parent
1ea780e312
commit
560e7d911e
5 changed files with 39 additions and 8 deletions
|
@ -80,7 +80,7 @@ FixTweet doesn't save logs of what tweets you're sending, nor do we have a publi
|
|||
|
||||
In fact, because our core embedding and API service uses Cloudflare Workers, where FixTweet can only run when you send it a request and its memory doesn't stick around, and it doesn't have a file system or database to access at all. That is how we keep our privacy promise by building it into the architecture. My goal is always to provide a good public service, and FixTweet doesn't make any money.
|
||||
|
||||
Note: We use Cloudflare to cache FixTweet responses to make repeat access faster, which have a maximum TTL of 1 hour. Temporary real-time logging in the terminal (specifically `wrangler tail`) may be used only by the developer while the Worker is being serviced or debugged (to make sure things work as they should), however these logs are only shown in the terminal and are never saved or used for any other purpose.
|
||||
Note: We use Cloudflare to cache FixTweet responses to make repeat access faster, which have a maximum TTL of 1 hour. Temporary real-time logging in the terminal (specifically `wrangler tail`) may be used only by the developer while the Worker is being serviced or debugged (to make sure things work as they should), however these logs are only shown in the terminal and are never saved or used for any other purpose. URLs that cause runtime errors in the script (aka Exceptions, usually exceedingly rare unless there was a faulty update pushed out) may be logged for a developer to diagnose the issue that is preventing your embed from working.
|
||||
|
||||
On a different note, if the person who posted a FixTweet link forgot to strip tracking parameters (like `?s` and `&t`), we strip it upon redirecting to the Tweet as they are only used for Twitter Telemetry and Marketing.
|
||||
|
||||
|
@ -139,6 +139,8 @@ Clone the repo, install [Node.js](https://nodejs.org/) and run `npm install` in
|
|||
|
||||
Once you're set up with your worker on `*.workers.dev`, [add your worker to your custom domain](https://developers.cloudflare.com/workers/platform/routing/custom-domains/).
|
||||
|
||||
Optional: Set the `EXCEPTION_DISCORD_WEBHOOK` secret to a Discord webhook URL to log exceptions to a Discord channel. At this time, we have not integrated an error handling SDK to keep the script small and execution times to a minimum, but it is something that may be explored in the future.
|
||||
|
||||
---
|
||||
|
||||
**Licensed under the permissive MIT license. Feel free to send a pull request!**
|
||||
|
|
2
src/env.d.ts
vendored
2
src/env.d.ts
vendored
|
@ -5,3 +5,5 @@ declare const HOST_URL: string;
|
|||
declare const REDIRECT_URL: string;
|
||||
declare const MOSAIC_DOMAIN_LIST: string;
|
||||
declare const API_HOST: string;
|
||||
|
||||
declare const EXCEPTION_DISCORD_WEBHOOK: string;
|
||||
|
|
|
@ -44,7 +44,9 @@ export const handleMosaic = async (
|
|||
path += `/${mosaicMedia[3]}`;
|
||||
}
|
||||
|
||||
const size = calcSize(mediaList.map(i => ({ width: i.width, height: i.height } as Size)));
|
||||
const size = calcSize(
|
||||
mediaList.map(i => ({ width: i.width, height: i.height } as Size))
|
||||
);
|
||||
return {
|
||||
height: size.height,
|
||||
width: size.width,
|
||||
|
@ -87,7 +89,7 @@ const calcSize = (images: Size[]): Size => {
|
|||
const bottom = calcHorizontalSize(images[2], images[3]);
|
||||
const all = calcVerticalSize(top, bottom);
|
||||
|
||||
const sizeMult = (all.width > 2000 || all.height > 2000) ? BIG_IMAGE_MULTIPLIER : 1;
|
||||
const sizeMult = all.width > 2000 || all.height > 2000 ? BIG_IMAGE_MULTIPLIER : 1;
|
||||
return {
|
||||
width: all.width * sizeMult,
|
||||
height: all.height * sizeMult
|
||||
|
@ -126,7 +128,7 @@ const calcVerticalSize = (first: Size, second: Size): VerticalSize => {
|
|||
swapped = true;
|
||||
}
|
||||
|
||||
const smallHeight = Math.round(big.width / small.width * small.height);
|
||||
const smallHeight = Math.round((big.width / small.width) * small.height);
|
||||
return {
|
||||
width: big.width,
|
||||
height: smallHeight + SPACING_SIZE + big.height,
|
||||
|
|
|
@ -217,6 +217,31 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
|||
/*
|
||||
Event to receive web requests on Cloudflare Worker
|
||||
*/
|
||||
addEventListener('fetch', (event: FetchEvent) => {
|
||||
addEventListener('fetch', async (event: FetchEvent) => {
|
||||
try {
|
||||
event.respondWith(cacheWrapper(event));
|
||||
} catch (e: unknown) {
|
||||
let error = e as Error;
|
||||
if (typeof EXCEPTION_DISCORD_WEBHOOK !== 'undefined') {
|
||||
try {
|
||||
const a = await fetch(EXCEPTION_DISCORD_WEBHOOK, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'User-Agent': `${Constants.BRANDING_NAME}`
|
||||
},
|
||||
body: JSON.stringify({
|
||||
embeds: [
|
||||
{
|
||||
title: `Exception in ${Constants.BRANDING_NAME}`,
|
||||
description: `${error} - occurred while processing ${event.request.url}`,
|
||||
}
|
||||
]
|
||||
})
|
||||
});
|
||||
} catch (e) {
|
||||
console.log('Failed to send caught exception to Discord', e);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue