mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix strings and oembed
This commit is contained in:
parent
41f770e09a
commit
a225868992
3 changed files with 10 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
||||||
import { Router } from 'itty-router';
|
import { Router } from 'itty-router';
|
||||||
import { Constants } from './constants';
|
import { Constants } from './constants';
|
||||||
import { handleStatus } from './status';
|
import { handleStatus } from './status';
|
||||||
|
import { Strings } from './strings';
|
||||||
|
|
||||||
const router = Router();
|
const router = Router();
|
||||||
|
|
||||||
|
@ -60,8 +61,6 @@ router.get('/:handle/status/:id/video/:mediaNumber', statusRequest);
|
||||||
router.get('/:handle/statuses/:id', statusRequest);
|
router.get('/:handle/statuses/:id', statusRequest);
|
||||||
router.get('/:handle/statuses/:id/photo/:mediaNumber', statusRequest);
|
router.get('/:handle/statuses/:id/photo/:mediaNumber', statusRequest);
|
||||||
router.get('/:handle/statuses/:id/video/:mediaNumber', statusRequest);
|
router.get('/:handle/statuses/:id/video/:mediaNumber', statusRequest);
|
||||||
router.get('/:handle', profileRequest);
|
|
||||||
router.get('/:handle/', profileRequest);
|
|
||||||
|
|
||||||
router.get('/owoembed', async (request: any) => {
|
router.get('/owoembed', async (request: any) => {
|
||||||
console.log('oembed hit!');
|
console.log('oembed hit!');
|
||||||
|
@ -79,7 +78,7 @@ router.get('/owoembed', async (request: any) => {
|
||||||
)}/status/${encodeURIComponent(status)}`,
|
)}/status/${encodeURIComponent(status)}`,
|
||||||
provider_name: Constants.BRANDING_NAME,
|
provider_name: Constants.BRANDING_NAME,
|
||||||
provider_url: Constants.REDIRECT_URL,
|
provider_url: Constants.REDIRECT_URL,
|
||||||
title: 'Twitter',
|
title: Strings.TWITTER,
|
||||||
type: 'link',
|
type: 'link',
|
||||||
version: '1.0'
|
version: '1.0'
|
||||||
};
|
};
|
||||||
|
@ -89,6 +88,9 @@ router.get('/owoembed', async (request: any) => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
router.get('/:handle', profileRequest);
|
||||||
|
router.get('/:handle/', profileRequest);
|
||||||
|
|
||||||
router.all('*', async request => {
|
router.all('*', async request => {
|
||||||
return Response.redirect(Constants.REDIRECT_URL, 307);
|
return Response.redirect(Constants.REDIRECT_URL, 307);
|
||||||
});
|
});
|
||||||
|
|
|
@ -20,7 +20,7 @@ export const handleStatus = async (
|
||||||
it in case a user appears multiple times in a thread. */
|
it in case a user appears multiple times in a thread. */
|
||||||
tweet.user = conversation?.globalObjects?.users?.[tweet.user_id_str] || {};
|
tweet.user = conversation?.globalObjects?.users?.[tweet.user_id_str] || {};
|
||||||
|
|
||||||
console.log(tweet);
|
// console.log(tweet);
|
||||||
|
|
||||||
/* Try to deep link to mobile apps, just like Twitter does.
|
/* Try to deep link to mobile apps, just like Twitter does.
|
||||||
No idea if this actually works.*/
|
No idea if this actually works.*/
|
||||||
|
@ -236,7 +236,7 @@ export const handleStatus = async (
|
||||||
)}" type="application/json+oembed" title="${name}">`
|
)}" type="application/json+oembed" title="${name}">`
|
||||||
);
|
);
|
||||||
|
|
||||||
console.log(JSON.stringify(tweet));
|
// console.log(JSON.stringify(tweet));
|
||||||
|
|
||||||
/* When dealing with a Tweet of unknown lang, fall back to en */
|
/* When dealing with a Tweet of unknown lang, fall back to en */
|
||||||
let lang = tweet.lang === 'unk' ? 'en' : tweet.lang || 'en';
|
let lang = tweet.lang === 'unk' ? 'en' : tweet.lang || 'en';
|
||||||
|
|
|
@ -17,4 +17,6 @@ String.prototype.format = function (options: any) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Strings = {};
|
export const Strings = {
|
||||||
|
TWITTER: 'Twitter'
|
||||||
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue