mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Notice about TwitFix API no longer being available
This commit is contained in:
parent
34adab5817
commit
5356aa4d73
3 changed files with 10 additions and 2 deletions
|
@ -9,7 +9,7 @@ export const Constants = {
|
||||||
HOST_URL: HOST_URL,
|
HOST_URL: HOST_URL,
|
||||||
REDIRECT_URL: REDIRECT_URL,
|
REDIRECT_URL: REDIRECT_URL,
|
||||||
RELEASE_NAME: RELEASE_NAME,
|
RELEASE_NAME: RELEASE_NAME,
|
||||||
API_DOCS_URL: `https://github.com/dangeredwolf/FixTweet/wiki/Status-API`,
|
API_DOCS_URL: `https://github.com/dangeredwolf/FixTweet/wiki/API-Home`,
|
||||||
TWITTER_ROOT: 'https://twitter.com',
|
TWITTER_ROOT: 'https://twitter.com',
|
||||||
TWITTER_API_ROOT: 'https://api.twitter.com',
|
TWITTER_API_ROOT: 'https://api.twitter.com',
|
||||||
/* We used to use Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA
|
/* We used to use Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA
|
||||||
|
|
|
@ -176,6 +176,13 @@ export const cacheWrapper = async (
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cacheUrl.pathname.startsWith('/api/') || cacheUrl.pathname.startsWith('/other/') || cacheUrl.pathname.startsWith('/info/')) {
|
||||||
|
return new Response(Strings.TWITFIX_API_SUNSET, {
|
||||||
|
headers: Constants.RESPONSE_HEADERS,
|
||||||
|
status: 404
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
switch (request.method) {
|
switch (request.method) {
|
||||||
case 'GET':
|
case 'GET':
|
||||||
if (cacheUrl.hostname !== Constants.API_HOST) {
|
if (cacheUrl.hostname !== Constants.API_HOST) {
|
||||||
|
|
|
@ -86,5 +86,6 @@ This is caused by Twitter API downtime or a new bug. Try again in a little while
|
||||||
ERROR_API_FAIL: 'Tweet failed to load due to an API error :(',
|
ERROR_API_FAIL: 'Tweet failed to load due to an API error :(',
|
||||||
ERROR_PRIVATE: `I can't embed Tweets from private accounts, sorry about that :(`,
|
ERROR_PRIVATE: `I can't embed Tweets from private accounts, sorry about that :(`,
|
||||||
ERROR_TWEET_NOT_FOUND: `Sorry, that Tweet doesn't exist :(`,
|
ERROR_TWEET_NOT_FOUND: `Sorry, that Tweet doesn't exist :(`,
|
||||||
ERROR_UNKNOWN: `Unknown error occurred, sorry about that :(`
|
ERROR_UNKNOWN: `Unknown error occurred, sorry about that :(`,
|
||||||
|
TWITFIX_API_SUNSET: `The original TwitFix API has been sunset. To learn more about the FixTweet API, check out <a href="https://${API_HOST}">${API_HOST}</a>`,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue