2020-05-29 23:45:54 +00:00
|
|
|
/*
|
2022-02-03 01:43:10 +00:00
|
|
|
* Copyright (C) 2020-2022 Yomichan Authors
|
2020-05-29 23:45:54 +00:00
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global
|
2020-10-08 01:23:42 +00:00
|
|
|
* HtmlTemplateCollection
|
2021-01-15 00:14:29 +00:00
|
|
|
* OptionsUtil
|
2021-02-11 23:55:09 +00:00
|
|
|
* PermissionsUtil
|
2020-05-29 23:45:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class SettingsController extends EventDispatcher {
|
2022-08-20 15:31:50 +00:00
|
|
|
constructor() {
|
2020-05-29 23:45:54 +00:00
|
|
|
super();
|
2022-08-20 15:31:50 +00:00
|
|
|
this._profileIndex = 0;
|
2020-08-22 19:49:24 +00:00
|
|
|
this._source = generateId(16);
|
2020-07-03 15:56:26 +00:00
|
|
|
this._pageExitPreventions = new Set();
|
|
|
|
this._pageExitPreventionEventListeners = new EventListenerCollection();
|
2020-10-08 01:23:42 +00:00
|
|
|
this._templates = new HtmlTemplateCollection(document);
|
2021-02-11 23:55:09 +00:00
|
|
|
this._permissionsUtil = new PermissionsUtil();
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-30 20:20:31 +00:00
|
|
|
get source() {
|
|
|
|
return this._source;
|
|
|
|
}
|
|
|
|
|
2020-05-29 23:45:54 +00:00
|
|
|
get profileIndex() {
|
|
|
|
return this._profileIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
set profileIndex(value) {
|
|
|
|
if (this._profileIndex === value) { return; }
|
2022-08-20 15:31:50 +00:00
|
|
|
this._setProfileIndex(value, true);
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|
|
|
|
|
2021-02-11 23:55:09 +00:00
|
|
|
get permissionsUtil() {
|
|
|
|
return this._permissionsUtil;
|
|
|
|
}
|
|
|
|
|
2022-08-20 15:31:50 +00:00
|
|
|
async prepare() {
|
2020-05-29 23:45:54 +00:00
|
|
|
yomichan.on('optionsUpdated', this._onOptionsUpdated.bind(this));
|
2021-03-11 01:26:57 +00:00
|
|
|
if (this._canObservePermissionsChanges()) {
|
|
|
|
chrome.permissions.onAdded.addListener(this._onPermissionsChanged.bind(this));
|
|
|
|
chrome.permissions.onRemoved.addListener(this._onPermissionsChanged.bind(this));
|
|
|
|
}
|
2022-08-20 15:31:50 +00:00
|
|
|
const optionsFull = await this.getOptionsFull();
|
|
|
|
const {profiles, profileCurrent} = optionsFull;
|
|
|
|
if (profileCurrent >= 0 && profileCurrent < profiles.length) {
|
|
|
|
this._profileIndex = profileCurrent;
|
|
|
|
}
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|
|
|
|
|
2020-09-13 22:42:37 +00:00
|
|
|
async refresh() {
|
2022-08-20 15:31:50 +00:00
|
|
|
await this._onOptionsUpdatedInternal(true);
|
2020-09-13 22:42:37 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 23:45:54 +00:00
|
|
|
async getOptions() {
|
|
|
|
const optionsContext = this.getOptionsContext();
|
2021-02-14 20:53:35 +00:00
|
|
|
return await yomichan.api.optionsGet(optionsContext);
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async getOptionsFull() {
|
2021-02-14 20:53:35 +00:00
|
|
|
return await yomichan.api.optionsGetFull();
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-30 20:23:56 +00:00
|
|
|
async setAllSettings(value) {
|
|
|
|
const profileIndex = value.profileCurrent;
|
2021-02-14 20:53:35 +00:00
|
|
|
await yomichan.api.setAllSettings(value, this._source);
|
2022-08-20 15:31:50 +00:00
|
|
|
this._setProfileIndex(profileIndex, true);
|
2020-05-30 13:33:13 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 01:53:36 +00:00
|
|
|
async getSettings(targets) {
|
|
|
|
return await this._getSettings(targets, {});
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:24:34 +00:00
|
|
|
async getGlobalSettings(targets) {
|
|
|
|
return await this._getSettings(targets, {scope: 'global'});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getProfileSettings(targets) {
|
2020-05-31 01:53:36 +00:00
|
|
|
return await this._getSettings(targets, {scope: 'profile'});
|
|
|
|
}
|
|
|
|
|
|
|
|
async modifySettings(targets) {
|
|
|
|
return await this._modifySettings(targets, {});
|
2020-05-30 15:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async modifyGlobalSettings(targets) {
|
|
|
|
return await this._modifySettings(targets, {scope: 'global'});
|
|
|
|
}
|
|
|
|
|
|
|
|
async modifyProfileSettings(targets) {
|
2020-05-31 01:53:36 +00:00
|
|
|
return await this._modifySettings(targets, {scope: 'profile'});
|
2020-05-30 15:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async setGlobalSetting(path, value) {
|
|
|
|
return await this.modifyGlobalSettings([{action: 'set', path, value}]);
|
|
|
|
}
|
|
|
|
|
|
|
|
async setProfileSetting(path, value) {
|
|
|
|
return await this.modifyProfileSettings([{action: 'set', path, value}]);
|
|
|
|
}
|
|
|
|
|
2020-11-05 23:45:57 +00:00
|
|
|
async getDictionaryInfo() {
|
2021-02-14 20:53:35 +00:00
|
|
|
return await yomichan.api.getDictionaryInfo();
|
2020-11-05 23:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 23:45:54 +00:00
|
|
|
getOptionsContext() {
|
|
|
|
return {index: this._profileIndex};
|
|
|
|
}
|
|
|
|
|
2020-07-03 15:56:26 +00:00
|
|
|
preventPageExit() {
|
|
|
|
const obj = {end: null};
|
|
|
|
obj.end = this._endPreventPageExit.bind(this, obj);
|
|
|
|
if (this._pageExitPreventionEventListeners.size === 0) {
|
|
|
|
this._pageExitPreventionEventListeners.addEventListener(window, 'beforeunload', this._onBeforeUnload.bind(this), false);
|
|
|
|
}
|
|
|
|
this._pageExitPreventions.add(obj);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2020-10-08 01:23:42 +00:00
|
|
|
instantiateTemplate(name) {
|
|
|
|
return this._templates.instantiate(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
instantiateTemplateFragment(name) {
|
|
|
|
return this._templates.instantiateFragment(name);
|
|
|
|
}
|
|
|
|
|
2021-01-15 00:14:29 +00:00
|
|
|
async getDefaultOptions() {
|
|
|
|
const optionsUtil = new OptionsUtil();
|
|
|
|
await optionsUtil.prepare();
|
|
|
|
const optionsFull = optionsUtil.getDefault();
|
|
|
|
return optionsFull;
|
|
|
|
}
|
|
|
|
|
2020-05-29 23:45:54 +00:00
|
|
|
// Private
|
|
|
|
|
2022-08-20 15:31:50 +00:00
|
|
|
_setProfileIndex(value, canUpdateProfileIndex) {
|
2020-05-30 20:23:56 +00:00
|
|
|
this._profileIndex = value;
|
|
|
|
this.trigger('optionsContextChanged');
|
2022-08-20 15:31:50 +00:00
|
|
|
this._onOptionsUpdatedInternal(canUpdateProfileIndex);
|
2020-05-30 20:23:56 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 23:45:54 +00:00
|
|
|
_onOptionsUpdated({source}) {
|
|
|
|
if (source === this._source) { return; }
|
2022-08-20 15:31:50 +00:00
|
|
|
this._onOptionsUpdatedInternal(true);
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|
|
|
|
|
2022-08-20 15:31:50 +00:00
|
|
|
async _onOptionsUpdatedInternal(canUpdateProfileIndex) {
|
2020-05-30 15:24:34 +00:00
|
|
|
const optionsContext = this.getOptionsContext();
|
2022-08-20 15:31:50 +00:00
|
|
|
try {
|
|
|
|
const options = await this.getOptions();
|
|
|
|
this.trigger('optionsChanged', {options, optionsContext});
|
|
|
|
} catch (e) {
|
|
|
|
if (canUpdateProfileIndex) {
|
|
|
|
this._setProfileIndex(0, false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
}
|
2020-05-30 15:24:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 01:53:36 +00:00
|
|
|
_setupTargets(targets, extraFields) {
|
|
|
|
return targets.map((target) => {
|
|
|
|
target = Object.assign({}, extraFields, target);
|
|
|
|
if (target.scope === 'profile') {
|
|
|
|
target.optionsContext = this.getOptionsContext();
|
|
|
|
}
|
|
|
|
return target;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:24:34 +00:00
|
|
|
async _getSettings(targets, extraFields) {
|
2020-05-31 01:53:36 +00:00
|
|
|
targets = this._setupTargets(targets, extraFields);
|
2021-02-14 20:53:35 +00:00
|
|
|
return await yomichan.api.getSettings(targets);
|
2020-05-30 15:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async _modifySettings(targets, extraFields) {
|
2020-05-31 01:53:36 +00:00
|
|
|
targets = this._setupTargets(targets, extraFields);
|
2021-02-14 20:53:35 +00:00
|
|
|
return await yomichan.api.modifySettings(targets, this._source);
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|
2020-07-03 15:56:26 +00:00
|
|
|
|
|
|
|
_onBeforeUnload(e) {
|
|
|
|
if (this._pageExitPreventions.size === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.returnValue = '';
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
_endPreventPageExit(obj) {
|
|
|
|
this._pageExitPreventions.delete(obj);
|
|
|
|
if (this._pageExitPreventions.size === 0) {
|
|
|
|
this._pageExitPreventionEventListeners.removeAllEventListeners();
|
|
|
|
}
|
|
|
|
}
|
2021-01-31 16:55:11 +00:00
|
|
|
|
|
|
|
_onPermissionsChanged() {
|
|
|
|
this._triggerPermissionsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
async _triggerPermissionsChanged() {
|
|
|
|
const event = 'permissionsChanged';
|
|
|
|
if (!this.hasListeners(event)) { return; }
|
|
|
|
|
2021-02-11 23:55:09 +00:00
|
|
|
const permissions = await this._permissionsUtil.getAllPermissions();
|
2021-01-31 16:55:11 +00:00
|
|
|
this.trigger(event, {permissions});
|
|
|
|
}
|
2021-03-11 01:26:57 +00:00
|
|
|
|
|
|
|
_canObservePermissionsChanges() {
|
|
|
|
return isObject(chrome.permissions) && isObject(chrome.permissions.onAdded) && isObject(chrome.permissions.onRemoved);
|
|
|
|
}
|
2020-05-29 23:45:54 +00:00
|
|
|
}
|