2016-03-26 21:16:21 +00:00
|
|
|
/*
|
2017-08-15 04:43:09 +00:00
|
|
|
* Copyright (C) 2016-2017 Alex Yatskov <alex@foosoft.net>
|
2016-03-26 21:16:21 +00:00
|
|
|
* Author: Alex Yatskov <alex@foosoft.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-08-14 04:11:10 +00:00
|
|
|
class Backend {
|
2016-03-26 21:16:21 +00:00
|
|
|
constructor() {
|
2016-03-28 03:00:41 +00:00
|
|
|
this.translator = new Translator();
|
2016-10-16 06:23:40 +00:00
|
|
|
this.anki = new AnkiNull();
|
2016-09-29 03:14:21 +00:00
|
|
|
this.options = null;
|
2019-09-07 18:21:26 +00:00
|
|
|
this.optionsContext = {
|
2019-09-10 23:55:14 +00:00
|
|
|
depth: 0,
|
|
|
|
url: window.location.href
|
2019-09-07 18:21:26 +00:00
|
|
|
};
|
2019-08-17 22:50:48 +00:00
|
|
|
|
2019-09-07 19:06:15 +00:00
|
|
|
this.isPreparedResolve = null;
|
|
|
|
this.isPreparedPromise = new Promise((resolve) => (this.isPreparedResolve = resolve));
|
|
|
|
|
2019-10-27 13:46:27 +00:00
|
|
|
this.clipboardPasteTarget = document.querySelector('#clipboard-paste-target');
|
|
|
|
|
2019-08-17 22:50:48 +00:00
|
|
|
this.apiForwarder = new BackendApiForwarder();
|
2017-08-06 02:02:03 +00:00
|
|
|
}
|
2016-03-26 21:16:21 +00:00
|
|
|
|
2017-08-06 02:02:03 +00:00
|
|
|
async prepare() {
|
|
|
|
await this.translator.prepare();
|
2019-09-11 00:04:28 +00:00
|
|
|
this.options = await optionsLoad();
|
2019-09-11 00:46:30 +00:00
|
|
|
this.onOptionsUpdated('background');
|
2017-08-06 02:02:03 +00:00
|
|
|
|
2019-02-20 03:49:25 +00:00
|
|
|
if (chrome.commands !== null && typeof chrome.commands === 'object') {
|
|
|
|
chrome.commands.onCommand.addListener(this.onCommand.bind(this));
|
|
|
|
}
|
2017-08-06 02:02:03 +00:00
|
|
|
chrome.runtime.onMessage.addListener(this.onMessage.bind(this));
|
|
|
|
|
2019-09-07 19:06:15 +00:00
|
|
|
const options = this.getOptionsSync(this.optionsContext);
|
2019-09-07 18:21:26 +00:00
|
|
|
if (options.general.showGuide) {
|
2019-10-23 00:23:03 +00:00
|
|
|
chrome.tabs.create({url: chrome.runtime.getURL('/bg/guide.html')});
|
2017-08-06 02:02:03 +00:00
|
|
|
}
|
2019-09-07 19:06:15 +00:00
|
|
|
|
|
|
|
this.isPreparedResolve();
|
|
|
|
this.isPreparedResolve = null;
|
|
|
|
this.isPreparedPromise = null;
|
2017-08-06 02:02:03 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 00:46:30 +00:00
|
|
|
onOptionsUpdated(source) {
|
2019-09-07 18:21:26 +00:00
|
|
|
this.applyOptions();
|
2017-08-06 02:02:03 +00:00
|
|
|
|
2019-08-23 19:41:41 +00:00
|
|
|
const callback = () => this.checkLastError(chrome.runtime.lastError);
|
2017-08-06 02:02:03 +00:00
|
|
|
chrome.tabs.query({}, tabs => {
|
|
|
|
for (const tab of tabs) {
|
2019-09-11 00:46:30 +00:00
|
|
|
chrome.tabs.sendMessage(tab.id, {action: 'optionsUpdate', params: {source}}, callback);
|
2017-03-18 20:00:29 +00:00
|
|
|
}
|
|
|
|
});
|
2016-03-26 21:16:21 +00:00
|
|
|
}
|
2017-08-06 02:02:03 +00:00
|
|
|
|
|
|
|
onCommand(command) {
|
|
|
|
apiCommandExec(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
onMessage({action, params}, sender, callback) {
|
2019-10-03 00:46:48 +00:00
|
|
|
const handlers = Backend.messageHandlers;
|
|
|
|
if (handlers.hasOwnProperty(action)) {
|
|
|
|
const handler = handlers[action];
|
|
|
|
const promise = handler(params, sender);
|
2019-10-13 20:06:19 +00:00
|
|
|
promise.then(
|
|
|
|
result => callback({result}),
|
|
|
|
error => callback({error: errorToJson(error)})
|
|
|
|
);
|
2017-08-06 02:02:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2019-02-20 03:49:25 +00:00
|
|
|
|
2019-09-07 18:21:26 +00:00
|
|
|
applyOptions() {
|
2019-09-07 19:06:15 +00:00
|
|
|
const options = this.getOptionsSync(this.optionsContext);
|
2019-09-07 18:21:26 +00:00
|
|
|
if (!options.general.enable) {
|
|
|
|
this.setExtensionBadgeBackgroundColor('#555555');
|
|
|
|
this.setExtensionBadgeText('off');
|
|
|
|
} else if (!dictConfigured(options)) {
|
|
|
|
this.setExtensionBadgeBackgroundColor('#f0ad4e');
|
|
|
|
this.setExtensionBadgeText('!');
|
|
|
|
} else {
|
|
|
|
this.setExtensionBadgeText('');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.anki = options.anki.enable ? new AnkiConnect(options.anki.server) : new AnkiNull();
|
|
|
|
}
|
|
|
|
|
2019-09-07 20:15:18 +00:00
|
|
|
async getFullOptions() {
|
|
|
|
if (this.isPreparedPromise !== null) {
|
|
|
|
await this.isPreparedPromise;
|
|
|
|
}
|
|
|
|
return this.options;
|
|
|
|
}
|
|
|
|
|
2019-09-07 19:06:15 +00:00
|
|
|
async getOptions(optionsContext) {
|
|
|
|
if (this.isPreparedPromise !== null) {
|
|
|
|
await this.isPreparedPromise;
|
|
|
|
}
|
|
|
|
return this.getOptionsSync(optionsContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
getOptionsSync(optionsContext) {
|
2019-09-07 23:50:58 +00:00
|
|
|
return this.getProfileSync(optionsContext).options;
|
|
|
|
}
|
|
|
|
|
|
|
|
getProfileSync(optionsContext) {
|
|
|
|
const profiles = this.options.profiles;
|
|
|
|
if (typeof optionsContext.index === 'number') {
|
|
|
|
return profiles[optionsContext.index];
|
|
|
|
}
|
2019-10-27 21:02:41 +00:00
|
|
|
const profile = this.getProfileFromContext(optionsContext);
|
2019-09-10 23:55:14 +00:00
|
|
|
return profile !== null ? profile : this.options.profiles[this.options.profileCurrent];
|
|
|
|
}
|
|
|
|
|
|
|
|
getProfileFromContext(optionsContext) {
|
2019-10-27 21:02:41 +00:00
|
|
|
for (const profile of this.options.profiles) {
|
2019-09-10 23:55:14 +00:00
|
|
|
const conditionGroups = profile.conditionGroups;
|
|
|
|
if (conditionGroups.length > 0 && Backend.testConditionGroups(conditionGroups, optionsContext)) {
|
2019-10-27 21:02:41 +00:00
|
|
|
return profile;
|
2019-09-10 23:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
static testConditionGroups(conditionGroups, data) {
|
|
|
|
if (conditionGroups.length === 0) { return false; }
|
|
|
|
|
|
|
|
for (const conditionGroup of conditionGroups) {
|
|
|
|
const conditions = conditionGroup.conditions;
|
|
|
|
if (conditions.length > 0 && Backend.testConditions(conditions, data)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static testConditions(conditions, data) {
|
|
|
|
for (const condition of conditions) {
|
|
|
|
if (!conditionsTestValue(profileConditionsDescriptor, condition.type, condition.operator, condition.value, data)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2019-09-07 18:21:26 +00:00
|
|
|
}
|
|
|
|
|
2019-02-20 03:49:25 +00:00
|
|
|
setExtensionBadgeBackgroundColor(color) {
|
|
|
|
if (typeof chrome.browserAction.setBadgeBackgroundColor === 'function') {
|
|
|
|
chrome.browserAction.setBadgeBackgroundColor({color});
|
|
|
|
}
|
|
|
|
}
|
2019-09-07 01:23:00 +00:00
|
|
|
|
2019-02-20 03:49:25 +00:00
|
|
|
setExtensionBadgeText(text) {
|
|
|
|
if (typeof chrome.browserAction.setBadgeText === 'function') {
|
|
|
|
chrome.browserAction.setBadgeText({text});
|
|
|
|
}
|
|
|
|
}
|
2019-08-23 19:41:41 +00:00
|
|
|
|
|
|
|
checkLastError(e) {
|
|
|
|
// NOP
|
|
|
|
}
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
2017-08-06 02:02:03 +00:00
|
|
|
|
2019-10-03 00:46:48 +00:00
|
|
|
Backend.messageHandlers = {
|
|
|
|
optionsGet: ({optionsContext}) => apiOptionsGet(optionsContext),
|
2019-10-27 18:11:23 +00:00
|
|
|
optionsSet: ({changedOptions, optionsContext, source}) => apiOptionsSet(changedOptions, optionsContext, source),
|
2019-10-03 00:46:48 +00:00
|
|
|
kanjiFind: ({text, optionsContext}) => apiKanjiFind(text, optionsContext),
|
2019-11-05 01:43:40 +00:00
|
|
|
termsFind: ({text, details, optionsContext}) => apiTermsFind(text, details, optionsContext),
|
2019-10-03 00:46:48 +00:00
|
|
|
definitionAdd: ({definition, mode, context, optionsContext}) => apiDefinitionAdd(definition, mode, context, optionsContext),
|
|
|
|
definitionsAddable: ({definitions, modes, optionsContext}) => apiDefinitionsAddable(definitions, modes, optionsContext),
|
|
|
|
noteView: ({noteId}) => apiNoteView(noteId),
|
|
|
|
templateRender: ({template, data, dynamic}) => apiTemplateRender(template, data, dynamic),
|
2019-10-20 02:30:16 +00:00
|
|
|
commandExec: ({command, params}) => apiCommandExec(command, params),
|
2019-10-10 02:03:56 +00:00
|
|
|
audioGetUrl: ({definition, source, optionsContext}) => apiAudioGetUrl(definition, source, optionsContext),
|
2019-10-03 00:46:48 +00:00
|
|
|
screenshotGet: ({options}, sender) => apiScreenshotGet(options, sender),
|
|
|
|
forward: ({action, params}, sender) => apiForward(action, params, sender),
|
|
|
|
frameInformationGet: (params, sender) => apiFrameInformationGet(sender),
|
2019-10-13 21:20:55 +00:00
|
|
|
injectStylesheet: ({css}, sender) => apiInjectStylesheet(css, sender),
|
2019-10-27 13:46:27 +00:00
|
|
|
getEnvironmentInfo: () => apiGetEnvironmentInfo(),
|
|
|
|
clipboardGet: () => apiClipboardGet()
|
2019-10-03 00:46:48 +00:00
|
|
|
};
|
|
|
|
|
2017-08-14 04:11:10 +00:00
|
|
|
window.yomichan_backend = new Backend();
|
2017-08-06 02:02:03 +00:00
|
|
|
window.yomichan_backend.prepare();
|