Add version endpoint

This commit is contained in:
dangered wolf 2022-08-28 17:17:55 -04:00
parent 9fe1a2e3c3
commit 224bbaded6
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 89 additions and 5 deletions

View file

@ -6,6 +6,7 @@ import { handleStatus } from './status';
import { Strings } from './strings';
import motd from '../motd.json';
import { sanitizeText } from './helpers/utils';
const router = Router();
@ -146,6 +147,27 @@ const profileRequest = async (request: Request) => {
}
};
const versionRequest = async (request: Request) => {
return new Response(Strings.VERSION_HTML.format({
rtt: request.cf?.clientTcpRtt ? `🏓 ${request.cf.clientTcpRtt} ms RTT` : '',
colo: request.cf?.colo || '??',
httpversion: request.cf?.httpProtocol || 'Unknown HTTP Version',
tlsversion: request.cf?.tlsVersion || 'Unknown TLS Version',
ip: request.headers.get('x-real-ip') || request.headers.get('cf-connecting-ip') || 'Unknown IP',
city: request.cf?.city || 'Unknown City',
region: request.cf?.region || request.cf?.country || 'Unknown Region',
country: request.cf?.country || 'Unknown Country',
asn: `AS${request.cf?.asn || '??'} (${request.cf?.asOrganization || 'Unknown ASN'})`,
ua: sanitizeText(request.headers.get('user-agent') || 'Unknown User Agent'),
}), {
headers: {
...Constants.RESPONSE_HEADERS,
'cache-control': 'max-age=1'
},
status: 200
});
}
/* TODO: is there any way to consolidate these stupid routes for itty-router?
I couldn't find documentation allowing for regex matching */
router.get('/:prefix?/:handle/status/:id', statusRequest);
@ -160,6 +182,7 @@ router.get('/:prefix?/:handle/status/:id/:language', statusRequest);
router.get('/:prefix?/:handle/statuses/:id/:language', statusRequest);
router.get('/status/:id', statusRequest);
router.get('/status/:id/:language', statusRequest);
router.get('/version', versionRequest);
/* Oembeds (used by Discord to enhance responses)

View file

@ -37,14 +37,14 @@ export const Strings = {
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="FixTweet" property="og:title"/>
<meta content="${BRANDING_NAME}" property="og:title"/>
<meta content="Owie, you crashed ${BRANDING_NAME} :(
This is caused by Twitter API downtime or a new bug. Try again in a little while." property="og:description"/></head>
<title>:(</title>
<style>
body {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
padding: 0 20px;
}
h1 {
@ -53,8 +53,8 @@ This is caused by Twitter API downtime or a new bug. Try again in a little while
margin-bottom: 0;
}
p {
font-size:10px;
opacity:0.3
font-size: 10px;
opacity: 0.3;
}
</style>
</head>
@ -63,7 +63,68 @@ This is caused by Twitter API downtime or a new bug. Try again in a little while
<h2>You hit a snag that broke ${BRANDING_NAME}. It's not your fault though&mdash;This is usually caused by a Twitter outage or a new bug.</h2>
<p>${RELEASE_NAME}</p>
</body>
</html>`.replace(/( {2}|\n)/g, ''),
</html>`.replace(/( {2})/g, '').replace(/>[\s|\n]+</g, '><'),
VERSION_HTML: `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="${BRANDING_NAME}" property="og:title"/>
<meta content="${BRANDING_NAME}" property="og:site_name"/>
<meta content="https://cdn.discordapp.com/icons/958942151817977906/7a220767640cbedbf780767585eaa10d.png?size=96" property="og:image"/>
<meta content="https://cdn.discordapp.com/icons/958942151817977906/7a220767640cbedbf780767585eaa10d.png?size=96" property="twitter:image"/>
<meta content="#1E98F0" name="theme-color"/>
<meta content="Worker release: ${RELEASE_NAME}
Stats for nerds:
🕵 {ua}
🌐 {ip}
🌎 {city}, {region}, {country}
🛴 {asn}
Edge Connection:
{rtt} 📶 {httpversion} 🔒 {tlsversion} {colo}
" property="og:description"/></head>
<title>${BRANDING_NAME}</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
padding: 0 20px;
}
h1 {
font-size: 4em;
font-weight: 900;
margin-bottom: 0;
}
h2 {
white-space: pre-wrap;
}
p {
font-size: 10px;
opacity: 0.3;
}
.cf {
display: inline-block;
vertical-align: middle;
height: 48px;
width: 48px;
}
</style>
</head>
<body>
<h1>${BRANDING_NAME}</h1>
<h3>A better Tweet embedding service, by <a href="https://twitter.com/dangeredwolf">@dangeredwolf</a>, et al.</h2>
<h2>Worker release: ${RELEASE_NAME}</h2>
<br>
<h3>Stats for nerds:</h3>
<h2>Edge:
{rtt} <img class="cf" referrerpolicy="no-referrer" src="https://cdn.discordapp.com/emojis/988895299693080616.webp?size=96&quality=lossless"> {colo}</h2>
<h2>Connection:
{httpversion} - {tlsversion}</h2>
<h2>User Agent:
{ua}</h2>
</body>
</html>`.replace(/( {2})/g, '').replace(/>[\s|\n]+</g, '><'),
DEFAULT_AUTHOR_TEXT: 'Twitter',
QUOTE_TEXT: `═ ↘️ Quoting {name} (@{screen_name}) ═════`,