fchat-rising/chat/preview/image-url-mutator.ts

225 lines
6.7 KiB
TypeScript
Raw Normal View History

2019-10-27 18:58:41 +00:00
import * as _ from 'lodash';
import Axios from 'axios';
export type UrlSolverCallback = (url: string, match: RegExpMatchArray) => Promise<string>;
export interface UrlSolver {
matcher: RegExp;
solver: UrlSolverCallback;
}
export class ImageUrlMutator {
private solvers: UrlSolver[] = [];
private static IMGUR_CLIENT_ID = 'd60e27140a73b2e';
private debug: boolean;
constructor(debug: boolean) {
this.debug = debug;
this.init();
}
protected init(): void {
2020-12-28 23:07:10 +00:00
// this.add(
// /^https?:\/\/.*twitter.com/,
// async(): Promise<string> => 'https://i.imgur.com/ScNLbsp.png'
// );
2020-10-24 19:42:04 +00:00
2020-03-30 21:52:25 +00:00
this.add(
/^https?:\/\/(www.)?pornhub.com\/view_video.php\?viewkey=([a-z0-9A-Z]+)/,
async(_url: string, match: RegExpMatchArray): Promise<string> => {
// https://www.pornhub.com/view_video.php?viewkey=ph5e11b975327f2
// https://www.pornhub.com/embed/ph5e11b975327f2
const videoId = match[2];
return `https://pornhub.com/embed/${videoId}`;
}
2020-04-01 22:19:55 +00:00
);
2020-04-04 18:38:00 +00:00
this.add(
/^https?:\/\/(www.)?pornhub.com\/gif\/([a-z0-9A-Z]+)/,
async(_url: string, match: RegExpMatchArray): Promise<string> => {
const gifId = match[2];
return `https://pornhub.com/embedgif/${gifId}`;
}
);
2020-06-29 18:42:42 +00:00
this.add(
/^https?:\/\/(www.)?redgifs.com\/watch\/([a-z0-9A-Z]+)/,
async(_url: string, match: RegExpMatchArray): Promise<string> => {
const redgifId = match[2];
return `https://www.gifdeliverynetwork.com/ifr/${redgifId}?controls=0&hd=1`;
}
);
2020-04-01 22:19:55 +00:00
this.add(
/^https?:\/\/(www.)?gfycat.com\/([a-z0-9A-Z\-]+)\/?$/,
async(_url: string, match: RegExpMatchArray): Promise<string> => {
const gfyId = match[2];
return `https://gfycat.com/ifr/${gfyId}?controls=0&hd=1`;
}
2020-03-30 21:52:25 +00:00
);
2020-04-04 18:38:00 +00:00
this.add(
/^https?:\/\/e621.net\/(posts|post\/show)\/([0-9]+)/,
async(url: string, match: RegExpMatchArray): Promise<string> => {
const galleryId = match[2];
try {
const result = await Axios.get(
`https://e621.net/posts/${galleryId}.json`,
{
// headers: {
// 'User-Agent': 'F-List-Rising-Client/1.0'
// }
}
);
const imageUrl = _.get(result, 'data.post.file.url') as string;
return imageUrl || url;
} catch(err) {
console.error('E621 API Failure', url, err);
return url;
}
}
);
2019-10-27 18:58:41 +00:00
this.add(
/^https?:\/\/imgur.com\/gallery\/([a-zA-Z0-9]+)/,
async(url: string, match: RegExpMatchArray): Promise<string> => {
// Imgur Gallery
const galleryId = match[1];
try {
const result = await Axios.get(
`https://api.imgur.com/3/gallery/${galleryId}/images`,
{
headers: {
Authorization: `Client-ID ${ImageUrlMutator.IMGUR_CLIENT_ID}`
}
}
);
const imageUrl = _.get(result, 'data.data.0.link', null);
if (!imageUrl) {
return url;
}
const imageCount = _.get(result, 'data.data.length', 1);
if (this.debug)
console.log('Imgur gallery', url, imageUrl, imageCount);
return `${imageUrl}?flist_gallery_image_count=${imageCount}`;
} catch (err) {
console.error('Imgur Gallery Failure', url, err);
return url;
}
}
);
this.add(
/^https?:\/\/imgur.com\/a\/([a-zA-Z0-9]+)/,
async(url: string, match: RegExpMatchArray): Promise<string> => {
// Imgur Album
const albumId = match[1];
try {
const result = await Axios.get(
`https://api.imgur.com/3/album/${albumId}/images`,
{
headers: {
Authorization: `Client-ID ${ImageUrlMutator.IMGUR_CLIENT_ID}`
}
}
);
const imageUrl = _.get(result, 'data.data.0.link', null);
if (!imageUrl) {
return url;
}
const imageCount = _.get(result, 'data.data.length', 1);
if (this.debug)
console.log('Imgur album', url, imageUrl, imageCount);
return `${imageUrl}?flist_gallery_image_count=${imageCount}`;
} catch (err) {
console.error('Imgur Album Failure', url, err);
return url;
}
}
);
// must be AFTER gallery & album test
2019-10-27 18:58:41 +00:00
this.add(
/^https?:\/\/imgur.com\/([a-zA-Z0-9]+)/,
async(url: string, match: RegExpMatchArray): Promise<string> => {
// Single Imgur Image
const imageId = match[1];
try {
const result = await Axios.get(
`https://api.imgur.com/3/image/${imageId}`,
{
headers: {
Authorization: `Client-ID ${ImageUrlMutator.IMGUR_CLIENT_ID}`
}
}
);
const imageUrl = _.get(result, 'data.data.link', url);
if (this.debug)
console.log('Imgur image', url, imageUrl);
return imageUrl as string;
} catch (err) {
console.error('Imgur Image Failure', url, err);
return url;
}
}
);
2020-10-04 21:30:15 +00:00
2019-10-27 18:58:41 +00:00
}
setDebug(debug: boolean): void {
this.debug = debug;
}
protected add(matcher: RegExp, solver: UrlSolverCallback): void {
this.solvers.push({matcher, solver});
}
async resolve(url: string): Promise<string> {
const match = _.find(this.solvers, (s: UrlSolver) => url.match(s.matcher)) as (UrlSolver | undefined);
if (!match) {
return url;
}
return match.solver(url, url.match(match.matcher) as RegExpMatchArray);
}
}