mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Add robots.txt, cache discord/telegram separately
This commit is contained in:
parent
1241dabc00
commit
80ca9ffca6
2 changed files with 33 additions and 5 deletions
|
@ -46,5 +46,14 @@ export const Constants = {
|
||||||
'x-powered-by': '🏳️⚧️ Trans Rights',
|
'x-powered-by': '🏳️⚧️ Trans Rights',
|
||||||
'cache-control': 'max-age=604800'
|
'cache-control': 'max-age=604800'
|
||||||
},
|
},
|
||||||
DEFAULT_COLOR: '#10A3FF'
|
DEFAULT_COLOR: '#10A3FF',
|
||||||
|
ROBOTS_TXT: `User-agent: *
|
||||||
|
Allow: /$
|
||||||
|
Allow: /*/status
|
||||||
|
Allow: /*/status/
|
||||||
|
Allow: /owoembed
|
||||||
|
Allow: /owoembed/
|
||||||
|
Allow: /watch?v=dQw4w9WgXcQ
|
||||||
|
Disallow: /doing-harm-to-others
|
||||||
|
Disallow: /taking-over-the-world`
|
||||||
};
|
};
|
||||||
|
|
|
@ -123,17 +123,36 @@ router.get('/owoembed', async (request: any) => {
|
||||||
router.get('/:handle', profileRequest);
|
router.get('/:handle', profileRequest);
|
||||||
router.get('/:handle/', profileRequest);
|
router.get('/:handle/', profileRequest);
|
||||||
|
|
||||||
router.all('*', async request => {
|
router.get('*', async request => {
|
||||||
return Response.redirect(Constants.REDIRECT_URL, 307);
|
return Response.redirect(Constants.REDIRECT_URL, 307);
|
||||||
});
|
});
|
||||||
|
|
||||||
const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
||||||
const { request } = event;
|
const { request } = event;
|
||||||
|
const userAgent = request.headers.get('User-Agent') || '';
|
||||||
// https://developers.cloudflare.com/workers/examples/cache-api/
|
// https://developers.cloudflare.com/workers/examples/cache-api/
|
||||||
const cacheUrl = new URL(request.url);
|
const url = new URL(request.url);
|
||||||
|
const cacheUrl = new URL(
|
||||||
|
userAgent.includes('Telegram')
|
||||||
|
? `${request.url}&telegram`
|
||||||
|
: userAgent.includes('Discord')
|
||||||
|
? `${request.url}&discord`
|
||||||
|
: request.url
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log('cacheUrl', cacheUrl);
|
||||||
|
|
||||||
const cacheKey = new Request(cacheUrl.toString(), request);
|
const cacheKey = new Request(cacheUrl.toString(), request);
|
||||||
const cache = caches.default;
|
const cache = caches.default;
|
||||||
|
|
||||||
|
/* Itty-router doesn't seem to like routing file names for some reason */
|
||||||
|
if (cacheUrl.pathname === '/robots.txt') {
|
||||||
|
return new Response(Constants.ROBOTS_TXT, {
|
||||||
|
headers: Constants.RESPONSE_HEADERS,
|
||||||
|
status: 200
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
switch (request.method) {
|
switch (request.method) {
|
||||||
case 'GET':
|
case 'GET':
|
||||||
let cachedResponse = await cache.match(cacheKey);
|
let cachedResponse = await cache.match(cacheKey);
|
||||||
|
@ -153,12 +172,12 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
||||||
event.waitUntil(cache.put(cacheKey, response.clone()));
|
event.waitUntil(cache.put(cacheKey, response.clone()));
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
/* Telegram sends this from Webpage Bot, and we respect it.
|
/* Telegram sends this from Webpage Bot, and Cloudflare sends it if we purge cache, and we respect it.
|
||||||
PURGE is not defined in an RFC, but other servers like Nginx apparently use it. */
|
PURGE is not defined in an RFC, but other servers like Nginx apparently use it. */
|
||||||
case 'PURGE':
|
case 'PURGE':
|
||||||
console.log('Purging cache as requested');
|
console.log('Purging cache as requested');
|
||||||
await cache.delete(cacheKey);
|
await cache.delete(cacheKey);
|
||||||
return new Response('', { status: 204 });
|
return new Response('', { status: 200 });
|
||||||
case 'HEAD':
|
case 'HEAD':
|
||||||
return new Response('', {
|
return new Response('', {
|
||||||
headers: Constants.RESPONSE_HEADERS,
|
headers: Constants.RESPONSE_HEADERS,
|
||||||
|
|
Loading…
Add table
Reference in a new issue