🚨 Cleaned up linter errors and added basic html

This commit is contained in:
Wazbat 2023-04-15 20:14:52 +02:00
parent 1f8ca1c8b3
commit 68f77c98cd
2 changed files with 19 additions and 13 deletions

View file

@ -1,12 +1,5 @@
import { renderCard } from '../helpers/card';
import { Constants } from '../constants';
import { fetchConversation, fetchUser } from '../fetch';
import { linkFixer } from '../helpers/linkFixer';
import { handleMosaic } from '../helpers/mosaic';
import { colorFromPalette } from '../helpers/palette';
import { translateTweet } from '../helpers/translate';
import { unescapeText } from '../helpers/utils';
import { processMedia } from '../helpers/media';
import { fetchUser } from '../fetch';
/* This function does the heavy lifting of processing data from Twitter API
and using it to create FixTweet's streamlined API responses */

View file

@ -1,8 +1,5 @@
import { Constants } from './constants';
import { handleQuote } from './helpers/quote';
import { formatNumber, sanitizeText } from './helpers/utils';
import { Strings } from './strings';
import { getAuthorText } from './helpers/author';
import { userAPI } from './api/user';
export const returnError = (error: string): StatusResponse => {
@ -32,7 +29,7 @@ export const handleProfile = async (
/* Catch this request if it's an API response */
// For now we just always return the API response while testing
if (flags?.api || true) {
if (flags?.api) {
return {
response: new Response(JSON.stringify(api), {
headers: { ...Constants.RESPONSE_HEADERS, ...Constants.API_RESPONSE_HEADERS },
@ -42,7 +39,7 @@ export const handleProfile = async (
}
/* If there was any errors fetching the User, we'll return it */
switch (api.code || true) {
switch (api.code) {
case 401:
return returnError(Strings.ERROR_PRIVATE);
case 404:
@ -50,4 +47,20 @@ export const handleProfile = async (
case 500:
return returnError(Strings.ERROR_API_FAIL);
}
/* Base headers included in all responses */
const headers = [
`<meta property="twitter:site" content="@${user.screen_name}"/>`,
];
// TODO Add card creation logic here
/* Finally, after all that work we return the response HTML! */
return {
text: Strings.BASE_HTML.format({
lang: `lang="en"`,
headers: headers.join('')
}),
cacheControl: null
};
};