mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
forgot to commit this
This commit is contained in:
parent
6cef702845
commit
d68dc31f6f
4 changed files with 9 additions and 2 deletions
|
@ -63,6 +63,7 @@ const populateTweetProperties = async (
|
||||||
apiTweet.likes = tweet.favorite_count;
|
apiTweet.likes = tweet.favorite_count;
|
||||||
apiTweet.color = apiTweet.author.avatar_color;
|
apiTweet.color = apiTweet.author.avatar_color;
|
||||||
apiTweet.twitter_card = 'tweet';
|
apiTweet.twitter_card = 'tweet';
|
||||||
|
apiTweet.created_at = tweet.created_at;
|
||||||
|
|
||||||
if (tweet.lang !== 'unk') {
|
if (tweet.lang !== 'unk') {
|
||||||
apiTweet.lang = tweet.lang;
|
apiTweet.lang = tweet.lang;
|
||||||
|
|
|
@ -8,6 +8,7 @@ export const Constants = {
|
||||||
API_HOST: API_HOST,
|
API_HOST: API_HOST,
|
||||||
HOST_URL: HOST_URL,
|
HOST_URL: HOST_URL,
|
||||||
REDIRECT_URL: REDIRECT_URL,
|
REDIRECT_URL: REDIRECT_URL,
|
||||||
|
API_DOCS_URL: `https://github.com/dangeredwolf/FixTweet/wiki/Status-API`,
|
||||||
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
|
||||||
|
|
|
@ -133,7 +133,13 @@ router.get('/owoembed', async (request: Request) => {
|
||||||
router.get('/:handle', profileRequest);
|
router.get('/:handle', profileRequest);
|
||||||
router.get('/:handle/', profileRequest);
|
router.get('/:handle/', profileRequest);
|
||||||
|
|
||||||
router.get('*', async (_request: Request) => {
|
router.get('*', async (request: Request) => {
|
||||||
|
const url = new URL(request.url);
|
||||||
|
|
||||||
|
if (url.hostname === Constants.API_HOST) {
|
||||||
|
return Response.redirect(Constants.API_DOCS_URL, 307);
|
||||||
|
}
|
||||||
|
|
||||||
return Response.redirect(Constants.REDIRECT_URL, 307);
|
return Response.redirect(Constants.REDIRECT_URL, 307);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
1
src/types.d.ts
vendored
1
src/types.d.ts
vendored
|
@ -86,7 +86,6 @@ interface APIVideo {
|
||||||
interface APITweet {
|
interface APITweet {
|
||||||
id: string;
|
id: string;
|
||||||
url: string;
|
url: string;
|
||||||
tweet: string;
|
|
||||||
text: string;
|
text: string;
|
||||||
created_at: string;
|
created_at: string;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue