mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Prettier
This commit is contained in:
parent
bdc233be42
commit
71653d5b1a
7 changed files with 26 additions and 14 deletions
|
@ -1,6 +1,9 @@
|
||||||
import { Constants } from './constants';
|
import { Constants } from './constants';
|
||||||
|
|
||||||
export const fetchUsingGuest = async (status: string, event: FetchEvent): Promise<TimelineBlobPartial> => {
|
export const fetchUsingGuest = async (
|
||||||
|
status: string,
|
||||||
|
event: FetchEvent
|
||||||
|
): Promise<TimelineBlobPartial> => {
|
||||||
let apiAttempts = 0;
|
let apiAttempts = 0;
|
||||||
let cachedTokenFailed = false;
|
let cachedTokenFailed = false;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Constants } from "./constants"
|
import { Constants } from './constants';
|
||||||
|
|
||||||
export const handleMosaic = async (mediaList: TweetMedia[]): Promise<TweetMedia> => {
|
export const handleMosaic = async (mediaList: TweetMedia[]): Promise<TweetMedia> => {
|
||||||
let mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
let mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
||||||
|
@ -20,7 +20,11 @@ export const handleMosaic = async (mediaList: TweetMedia[]): Promise<TweetMedia>
|
||||||
return mediaList[0];
|
return mediaList[0];
|
||||||
} else {
|
} else {
|
||||||
console.log('mediaList', mediaList);
|
console.log('mediaList', mediaList);
|
||||||
let mosaicMedia = mediaList.map(media => media.media_url_https?.match(/(?<=\/media\/)[a-zA-Z0-9_\-]+(?=[\.\?])/g)?.[0] || '');
|
let mosaicMedia = mediaList.map(
|
||||||
|
media =>
|
||||||
|
media.media_url_https?.match(/(?<=\/media\/)[a-zA-Z0-9_\-]+(?=[\.\?])/g)?.[0] ||
|
||||||
|
''
|
||||||
|
);
|
||||||
console.log('mosaicMedia', mosaicMedia);
|
console.log('mosaicMedia', mosaicMedia);
|
||||||
let constructUrl = `https://${selectedDomain}/1`;
|
let constructUrl = `https://${selectedDomain}/1`;
|
||||||
if (mosaicMedia[0]) {
|
if (mosaicMedia[0]) {
|
||||||
|
@ -45,4 +49,4 @@ export const handleMosaic = async (mediaList: TweetMedia[]): Promise<TweetMedia>
|
||||||
type: 'photo'
|
type: 'photo'
|
||||||
} as TweetMedia;
|
} as TweetMedia;
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
|
@ -5,12 +5,17 @@ import { Strings } from './strings';
|
||||||
|
|
||||||
const router = Router();
|
const router = Router();
|
||||||
|
|
||||||
const statusRequest = async (request: Request, event: FetchEvent, flags: InputFlags = {}) => {
|
const statusRequest = async (
|
||||||
|
request: Request,
|
||||||
|
event: FetchEvent,
|
||||||
|
flags: InputFlags = {}
|
||||||
|
) => {
|
||||||
const { handle, id, mediaNumber } = request.params;
|
const { handle, id, mediaNumber } = request.params;
|
||||||
const url = new URL(request.url);
|
const url = new URL(request.url);
|
||||||
const userAgent = request.headers.get('User-Agent') || '';
|
const userAgent = request.headers.get('User-Agent') || '';
|
||||||
|
|
||||||
let isBotUA = userAgent.match(/bot|facebook|embed|got|Firefox\/92|curl|wget/gi) !== null;
|
let isBotUA =
|
||||||
|
userAgent.match(/bot|facebook|embed|got|Firefox\/92|curl|wget/gi) !== null;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
url.pathname.match(/\/status(es)?\/\d+\.(mp4|png|jpg)/g) !== null ||
|
url.pathname.match(/\/status(es)?\/\d+\.(mp4|png|jpg)/g) !== null ||
|
||||||
|
|
2
src/types.d.ts
vendored
2
src/types.d.ts
vendored
|
@ -13,5 +13,5 @@ interface StatusResponse {
|
||||||
interface Request {
|
interface Request {
|
||||||
params: {
|
params: {
|
||||||
[param: string]: string;
|
[param: string]: string;
|
||||||
}
|
};
|
||||||
}
|
}
|
|
@ -34,7 +34,7 @@ module.exports = {
|
||||||
}),
|
}),
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
MOSAIC_DOMAIN_LIST: `'${process.env.MOSAIC_DOMAIN_LIST}'`
|
MOSAIC_DOMAIN_LIST: `'${process.env.MOSAIC_DOMAIN_LIST}'`
|
||||||
}),
|
})
|
||||||
],
|
],
|
||||||
optimization: {
|
optimization: {
|
||||||
mangleExports: 'size'
|
mangleExports: 'size'
|
||||||
|
|
Loading…
Add table
Reference in a new issue