mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Merge pull request #104 from Mokou/patch-direct-media
Add .jpeg extension and improve logging for direct media requests
This commit is contained in:
commit
d7db462ae4
1 changed files with 8 additions and 7 deletions
|
@ -38,21 +38,22 @@ const statusRequest = async (
|
||||||
|
|
||||||
/* Check if domain is a direct media domain (i.e. d.fxtwitter.com),
|
/* Check if domain is a direct media domain (i.e. d.fxtwitter.com),
|
||||||
the tweet is prefixed with /dl/ or /dir/ (for TwitFix interop), or the
|
the tweet is prefixed with /dl/ or /dir/ (for TwitFix interop), or the
|
||||||
tweet ends in .mp4, .jpg, or .png
|
tweet ends in .mp4, .jpg, .jpeg, or .png
|
||||||
|
|
||||||
Note that .png is not documented because images always redirect to a jpg,
|
Note that .png is not documented because images always redirect to a jpg,
|
||||||
but it will help someone who does it mistakenly on something like Discord
|
but it will help someone who does it mistakenly on something like Discord
|
||||||
|
|
||||||
Also note that all we're doing here is setting the direct flag. If someone
|
Also note that all we're doing here is setting the direct flag. If someone
|
||||||
links a video and ends it with .jpg, it will still redirect to a .mp4! */
|
links a video and ends it with .jpg, it will still redirect to a .mp4! */
|
||||||
if (
|
if ( url.pathname.match(/\/status(es)?\/\d{2,20}\.(mp4|png|jpe?g)/g)) {
|
||||||
url.pathname.match(/\/status(es)?\/\d{2,20}\.(mp4|png|jpg)/g) !== null ||
|
|
||||||
Constants.DIRECT_MEDIA_DOMAINS.includes(url.hostname) ||
|
|
||||||
prefix === 'dl' ||
|
|
||||||
prefix === 'dir'
|
|
||||||
) {
|
|
||||||
console.log('Direct media request by extension');
|
console.log('Direct media request by extension');
|
||||||
flags.direct = true;
|
flags.direct = true;
|
||||||
|
} else if (Constants.DIRECT_MEDIA_DOMAINS.includes(url.hostname)) {
|
||||||
|
console.log('Direct media request by domain');
|
||||||
|
flags.direct = true;
|
||||||
|
} else if (prefix === 'dl' || prefix === 'dir') {
|
||||||
|
console.log('Direct media request by path prefix');
|
||||||
|
flags.direct = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The pxtwitter.com domain is deprecated and Tweets posted after deprecation
|
/* The pxtwitter.com domain is deprecated and Tweets posted after deprecation
|
||||||
|
|
Loading…
Add table
Reference in a new issue