2020-10-09 19:35:46 +02:00
|
|
|
import { PluginManifest } from './utils/types';
|
|
|
|
import ViewController from './ViewController';
|
|
|
|
import shim from 'lib/shim';
|
|
|
|
import { ViewHandle } from './utils/createViewHandle';
|
2020-10-21 01:23:55 +02:00
|
|
|
import { ContentScriptType } from './api/types';
|
|
|
|
import Logger from 'lib/Logger';
|
2020-10-09 19:35:46 +02:00
|
|
|
|
|
|
|
interface ViewControllers {
|
|
|
|
[key:string]: ViewController
|
|
|
|
}
|
|
|
|
|
2020-10-21 01:23:55 +02:00
|
|
|
export interface ContentScript {
|
|
|
|
id: string,
|
|
|
|
path: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ContentScripts {
|
|
|
|
[type:string]: ContentScript[];
|
|
|
|
}
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
export default class Plugin {
|
|
|
|
|
|
|
|
private id_:string;
|
|
|
|
private baseDir_:string;
|
|
|
|
private manifest_:PluginManifest;
|
|
|
|
private scriptText_:string;
|
|
|
|
private enabled_:boolean = true;
|
2020-10-21 01:23:55 +02:00
|
|
|
private logger_:Logger = null;
|
2020-10-09 19:35:46 +02:00
|
|
|
private viewControllers_:ViewControllers = {};
|
2020-10-21 01:23:55 +02:00
|
|
|
private contentScripts_:ContentScripts = {};
|
|
|
|
private dispatch_:Function;
|
2020-10-09 19:35:46 +02:00
|
|
|
|
2020-10-21 01:23:55 +02:00
|
|
|
constructor(id:string, baseDir:string, manifest:PluginManifest, scriptText:string, logger:Logger, dispatch:Function) {
|
2020-10-09 19:35:46 +02:00
|
|
|
this.id_ = id;
|
|
|
|
this.baseDir_ = shim.fsDriver().resolve(baseDir);
|
|
|
|
this.manifest_ = manifest;
|
|
|
|
this.scriptText_ = scriptText;
|
|
|
|
this.logger_ = logger;
|
2020-10-21 01:23:55 +02:00
|
|
|
this.dispatch_ = dispatch;
|
2020-10-09 19:35:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public get id():string {
|
|
|
|
return this.id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get enabled():boolean {
|
|
|
|
return this.enabled_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get manifest():PluginManifest {
|
|
|
|
return this.manifest_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get scriptText():string {
|
|
|
|
return this.scriptText_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get baseDir():string {
|
|
|
|
return this.baseDir_;
|
|
|
|
}
|
|
|
|
|
2020-10-21 01:23:55 +02:00
|
|
|
public registerContentScript(type:ContentScriptType, id:string, path:string) {
|
|
|
|
if (!this.contentScripts_[type]) this.contentScripts_[type] = [];
|
|
|
|
|
|
|
|
const absolutePath = shim.fsDriver().resolveRelativePathWithinDir(this.baseDir, path);
|
|
|
|
|
|
|
|
this.contentScripts_[type].push({ id, path: absolutePath });
|
|
|
|
|
|
|
|
this.logger_.debug(`Plugin: ${this.id}: Registered content script: ${type}: ${id}: ${absolutePath}`);
|
|
|
|
|
|
|
|
this.dispatch_({
|
|
|
|
type: 'PLUGIN_CONTENT_SCRIPTS_ADD',
|
|
|
|
pluginId: this.id,
|
|
|
|
contentScript: {
|
|
|
|
type: type,
|
|
|
|
id: id,
|
|
|
|
path: absolutePath,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public contentScriptsByType(type:ContentScriptType):ContentScript[] {
|
|
|
|
return this.contentScripts_[type] ? this.contentScripts_[type] : [];
|
|
|
|
}
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
public addViewController(v:ViewController) {
|
|
|
|
if (this.viewControllers_[v.handle]) throw new Error(`View already added: ${v.handle}`);
|
|
|
|
this.viewControllers_[v.handle] = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
public viewController(handle:ViewHandle):ViewController {
|
|
|
|
if (!this.viewControllers_[handle]) throw new Error(`View not found: ${handle}`);
|
|
|
|
return this.viewControllers_[handle];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|