/* tslint:disable:quotemark */ import * as _ from 'lodash'; import { domain } from '../bbcode/core'; export interface PreviewMutator { match: string|RegExp; injectJs: string; } export interface ImagePreviewMutatorCollection { [key: string]: PreviewMutator; } export class ImagePreviewMutator { private hostMutators: ImagePreviewMutatorCollection = {}; private regexMutators: PreviewMutator[] = []; constructor() { this.init(); } getMutatorJsForSite(url: string): string | undefined { let mutator = this.matchMutator(url); if (!mutator) mutator = this.hostMutators['default']; return this.wrapJs(mutator.injectJs); } matchMutator(url: string): PreviewMutator | undefined { const urlDomain = domain(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) { return `(() => { try { ${mutatorJs} } catch (err) { console.error('Mutator error', err); } })();`; } protected add(domain: string|RegExp, mutatorJs: string) { if (domain instanceof RegExp) { this.regexMutators.push( { match: domain, injectJs: mutatorJs } ); return; } this.hostMutators[domain] = { match: domain, injectJs: mutatorJs }; } protected init() { this.add('default', this.getBaseJsMutatorScript('#video, #image, video, img')); this.add('e621.net', this.getBaseJsMutatorScript('#image, video')); this.add('e-hentai.org', this.getBaseJsMutatorScript('#img, video')); this.add('gelbooru.com', this.getBaseJsMutatorScript('#image, video')); this.add('chan.sankakucomplex.com', this.getBaseJsMutatorScript('#image, video')); this.add('danbooru.donmai.us', this.getBaseJsMutatorScript('#image, video')); this.add('gfycat.com', this.getBaseJsMutatorScript('video')); this.add('gfycatporn.com', this.getBaseJsMutatorScript('video')); this.add('youtube.com', this.getBaseJsMutatorScript('video')); this.add('instantfap.com', this.getBaseJsMutatorScript('#post img, #post video')); 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 img, .image_frame video')); this.add('redirect.media.tumblr.com', this.getBaseJsMutatorScript('picture img, picture video')); this.add('i.imgur.com', this.getBaseJsMutatorScript('video, img')); this.add('postimg.cc', this.getBaseJsMutatorScript('#main-image, video')); this.add('gifsauce.com', this.getBaseJsMutatorScript('video')); this.add('motherless.com', this.getBaseJsMutatorScript('.content video, .content img')); // this.add('beeg.com', this.getBaseJsMutatorScript('video')); this.add(/^media[0-9]\.giphy\.com$/, this.getBaseJsMutatorScript('video, img[alt]')); 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}