/* tslint:disable:quotemark */ import * as _ from 'lodash'; import * as urlHelper from 'url'; import { domain as extractDomain } from '../bbcode/core'; export interface PreviewMutator { match: string | RegExp; injectJs: string; eventName: string; urlMutator?(url: string): string; } export interface ImagePreviewMutatorCollection { [key: string]: PreviewMutator; } export class ImagePreviewMutator { // tslint:disable: prefer-function-over-method private hostMutators: ImagePreviewMutatorCollection = {}; private regexMutators: PreviewMutator[] = []; private debug: boolean; constructor(debug: boolean) { this.init(); this.debug = debug; } setDebug(debug: boolean): void { this.debug = debug; } mutateUrl(url: string): string { const mutator = this.matchMutator(url); if ((!mutator) || (!mutator.urlMutator)) return url; return mutator.urlMutator(url); } getMutatorJsForSite(url: string, eventName: string): string | undefined { let mutator = this.matchMutator(url); if (!mutator) mutator = this.hostMutators['default']; if (mutator.eventName !== eventName) return; return this.wrapJs(mutator.injectJs) + this.getReShowMutator(); } matchMutator(url: string): PreviewMutator | undefined { const urlDomain = extractDomain(url); if (!urlDomain) return; if (urlDomain in this.hostMutators) return this.hostMutators[urlDomain]; return _.find( this.regexMutators, (m: PreviewMutator) => { const match = m.match; return (match instanceof RegExp) ? (urlDomain.match(match) !== null) : (match === urlDomain); } ); } protected wrapJs(mutatorJs: string): string { return `(() => { try { ${mutatorJs} } catch (err) { console.error('Mutator error', err); } })();`; } protected add( domain: string | RegExp, mutatorJs: string, urlMutator?: (url: string) => string, eventName: string = 'update-target-url' ): void { if (domain instanceof RegExp) { this.regexMutators.push( { match: domain, injectJs: mutatorJs, urlMutator, eventName } ); return; } this.hostMutators[domain] = { match: domain, injectJs: mutatorJs, urlMutator, eventName }; } protected init(): void { this.add('default', this.getBaseJsMutatorScript(['#video, video', '#image, img'])); this.add('e621.net', this.getBaseJsMutatorScript(['video', '#image'])); this.add('e-hentai.org', this.getBaseJsMutatorScript(['video', '#img'])); this.add('gelbooru.com', this.getBaseJsMutatorScript(['video', '#image'])); this.add('chan.sankakucomplex.com', this.getBaseJsMutatorScript(['video', '#image'])); this.add('danbooru.donmai.us', this.getBaseJsMutatorScript(['video', '#image'])); this.add('gfycat.com', this.getBaseJsMutatorScript(['video']), undefined, 'dom-ready'); this.add('gfycatporn.com', this.getBaseJsMutatorScript(['video']), undefined, 'dom-ready'); this.add('youtube.com', this.getBaseJsMutatorScript(['video']), undefined, 'dom-ready'); this.add('instantfap.com', this.getBaseJsMutatorScript(['#post video', '#post img'])); this.add('webmshare.com', this.getBaseJsMutatorScript(['video'])); this.add('pornhub.com', this.getBaseJsMutatorScript(['.mainPlayerDiv video', '.photoImageSection img'])); this.add('sex.com', this.getBaseJsMutatorScript(['.image_frame video', '.image_frame img'])); this.add('redirect.media.tumblr.com', this.getBaseJsMutatorScript(['picture video', 'picture img'])); this.add('i.imgur.com', this.getBaseJsMutatorScript(['video', 'img'])); this.add('postimg.cc', this.getBaseJsMutatorScript(['video', '#main-image'])); this.add('gifsauce.com', this.getBaseJsMutatorScript(['video'])); this.add('motherless.com', this.getBaseJsMutatorScript(['.content video', '.content img'])); this.add(/^media[0-9]\.giphy\.com$/, this.getBaseJsMutatorScript(['video', 'img[alt]'])); this.add('giphy.com', this.getBaseJsMutatorScript(['video', 'a > div > img'])); this.add(/^media[0-9]\.tenor\.com$/, this.getBaseJsMutatorScript(['#view .file video', '#view .file img'])); this.add('tenor.com', this.getBaseJsMutatorScript(['#view video', '#view img'])); // tslint:disable max-line-length this.add( 'imgur.com', ` const imageCount = $('.post-container video, .post-container img').length; ${this.getBaseJsMutatorScript(['.post-container video', '.post-container img'], true)} if(imageCount > 1) $('#flistWrapper').append('
${description}