mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Add comments, merge html and strings
This commit is contained in:
parent
f80c695264
commit
9de7a9bdfd
6 changed files with 30 additions and 25 deletions
|
@ -41,8 +41,8 @@ export const renderCard = async (
|
||||||
let totalVotes = 0;
|
let totalVotes = 0;
|
||||||
let timeLeft = '';
|
let timeLeft = '';
|
||||||
|
|
||||||
/* TODO: make poll code cleaner */
|
|
||||||
if (typeof values !== 'undefined') {
|
if (typeof values !== 'undefined') {
|
||||||
|
/* TODO: make poll code cleaner */
|
||||||
if (
|
if (
|
||||||
typeof values.choice1_count !== 'undefined' &&
|
typeof values.choice1_count !== 'undefined' &&
|
||||||
typeof values.choice2_count !== 'undefined'
|
typeof values.choice2_count !== 'undefined'
|
||||||
|
@ -83,6 +83,7 @@ export const renderCard = async (
|
||||||
|
|
||||||
console.log(str);
|
console.log(str);
|
||||||
}
|
}
|
||||||
|
/* Oh good, a non-Twitter video URL! This enables YouTube embeds*/
|
||||||
} else if (typeof values.player_url !== 'undefined') {
|
} else if (typeof values.player_url !== 'undefined') {
|
||||||
headers.push(
|
headers.push(
|
||||||
`<meta name="twitter:player" content="${values.player_url.string_value}">`,
|
`<meta name="twitter:player" content="${values.player_url.string_value}">`,
|
||||||
|
@ -102,7 +103,8 @@ export const renderCard = async (
|
||||||
values.player_height?.string_value || '720'
|
values.player_height?.string_value || '720'
|
||||||
}">`
|
}">`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/* A control sequence I made up to tell status.ts that external media is being embedded */
|
||||||
str = 'EMBED_CARD';
|
str = 'EMBED_CARD';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
19
src/html.ts
19
src/html.ts
|
@ -1,19 +0,0 @@
|
||||||
import { Strings } from './strings';
|
|
||||||
|
|
||||||
export const Html = {
|
|
||||||
BASE_HTML: `<!DOCTYPE html>
|
|
||||||
<html {lang}>
|
|
||||||
<!-- ███████████ ▐█▌ ███ ███
|
|
||||||
███ █ ███ ███
|
|
||||||
███ ███ ███
|
|
||||||
█████▌ ███ ███ ███ ███ ███ ███ ███ ██████ ██████ ▐████▌ ███▐███
|
|
||||||
███ ██▌ ▐█▌▐█▌ ███ ███ ███ ███ ███ ███ ███ ▐█▌ ▐█▌ ███▌
|
|
||||||
███ ███ ▐██▌ ███ ███ ███ ███ ███ ███ ███ ████████ ███
|
|
||||||
███ ▐██▌ ▐█▌▐█▌ ███ ▐██▌ ███ ▐██▌ ███ ▐██▌ ▐██▌ ▐█▌ ███
|
|
||||||
█████▌ ███ ███ ███ ▐█████████▌ ███ ▐████ ▐███ ▐████ ███
|
|
||||||
███
|
|
||||||
███ The best way to embed tweets.
|
|
||||||
███ A work in progress by @dangeredwolf
|
|
||||||
-->
|
|
||||||
<head>{headers}</head>`
|
|
||||||
};
|
|
|
@ -55,6 +55,7 @@ const profileRequest = async (request: any, _event: FetchEvent) => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Handlers for Twitter statuses */
|
||||||
router.get('/:handle/status/:id', statusRequest);
|
router.get('/:handle/status/:id', statusRequest);
|
||||||
router.get('/:handle/status/:id/photo/:mediaNumber', statusRequest);
|
router.get('/:handle/status/:id/photo/:mediaNumber', statusRequest);
|
||||||
router.get('/:handle/status/:id/video/:mediaNumber', statusRequest);
|
router.get('/:handle/status/:id/video/:mediaNumber', statusRequest);
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
import { Constants } from './constants';
|
import { Constants } from './constants';
|
||||||
import { fetchUsingGuest } from './fetch';
|
import { fetchUsingGuest } from './fetch';
|
||||||
import { Html } from './html';
|
|
||||||
import { linkFixer } from './linkFixer';
|
import { linkFixer } from './linkFixer';
|
||||||
import { colorFromPalette } from './palette';
|
import { colorFromPalette } from './palette';
|
||||||
import { renderCard } from './card';
|
import { renderCard } from './card';
|
||||||
import { handleQuote } from './quote';
|
import { handleQuote } from './quote';
|
||||||
import { sanitizeText } from './utils';
|
import { sanitizeText } from './utils';
|
||||||
|
import { Strings } from './strings';
|
||||||
|
|
||||||
export const handleStatus = async (
|
export const handleStatus = async (
|
||||||
status: string,
|
status: string,
|
||||||
|
@ -39,7 +39,7 @@ export const handleStatus = async (
|
||||||
`<meta content="Tweet failed to load :(" property="og:description"/>`
|
`<meta content="Tweet failed to load :(" property="og:description"/>`
|
||||||
);
|
);
|
||||||
|
|
||||||
return Html.BASE_HTML.format({
|
return Strings.BASE_HTML.format({
|
||||||
lang: '',
|
lang: '',
|
||||||
headers: headers.join(''),
|
headers: headers.join(''),
|
||||||
tweet: JSON.stringify(tweet)
|
tweet: JSON.stringify(tweet)
|
||||||
|
@ -247,7 +247,7 @@ export const handleStatus = async (
|
||||||
/* 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';
|
||||||
|
|
||||||
return Html.BASE_HTML.format({
|
return Strings.BASE_HTML.format({
|
||||||
lang: `lang="${lang}"`,
|
lang: `lang="${lang}"`,
|
||||||
headers: headers.join('')
|
headers: headers.join('')
|
||||||
});
|
});
|
||||||
|
|
|
@ -17,6 +17,22 @@ String.prototype.format = function (options: any) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Maybe we should, but pxTwitter doesn't use strings as much as pronouns bot did */
|
||||||
export const Strings = {
|
export const Strings = {
|
||||||
TWITTER: 'Twitter'
|
TWITTER: 'Twitter',
|
||||||
|
BASE_HTML: `<!DOCTYPE html>
|
||||||
|
<html {lang}>
|
||||||
|
<!-- ███████████ ▐█▌ ███ ███
|
||||||
|
███ █ ███ ███
|
||||||
|
███ ███ ███
|
||||||
|
█████▌ ███ ███ ███ ███ ███ ███ ███ ██████ ██████ ▐████▌ ███▐███
|
||||||
|
███ ██▌ ▐█▌▐█▌ ███ ███ ███ ███ ███ ███ ███ ▐█▌ ▐█▌ ███▌
|
||||||
|
███ ███ ▐██▌ ███ ███ ███ ███ ███ ███ ███ ████████ ███
|
||||||
|
███ ▐██▌ ▐█▌▐█▌ ███ ▐██▌ ███ ▐██▌ ███ ▐██▌ ▐██▌ ▐█▌ ███
|
||||||
|
█████▌ ███ ███ ███ ▐█████████▌ ███ ▐████ ▐███ ▐████ ███
|
||||||
|
███
|
||||||
|
███ The best way to embed tweets.
|
||||||
|
███ A work in progress by @dangeredwolf
|
||||||
|
-->
|
||||||
|
<head>{headers}</head>`
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
/*
|
||||||
|
Types for various objects.
|
||||||
|
Note that a lot of these are not actually complete types. Many unused values may be missing.
|
||||||
|
*/
|
||||||
|
|
||||||
type TimelineBlobPartial = {
|
type TimelineBlobPartial = {
|
||||||
globalObjects: {
|
globalObjects: {
|
||||||
tweets: {
|
tweets: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue