2016-04-04 03:05:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
|
|
|
|
* 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-01-14 04:47:40 +00:00
|
|
|
function optionsSetDefaults(options) {
|
2016-04-04 03:05:22 +00:00
|
|
|
const defaults = {
|
2017-01-14 04:47:40 +00:00
|
|
|
general: {
|
2017-02-26 03:14:44 +00:00
|
|
|
enable: true,
|
2017-01-14 04:47:40 +00:00
|
|
|
audioPlayback: true,
|
2017-01-15 20:42:44 +00:00
|
|
|
groupResults: true,
|
2017-01-27 17:01:12 +00:00
|
|
|
softKatakana: true,
|
|
|
|
maxResults: 32,
|
2017-01-15 20:42:44 +00:00
|
|
|
showAdvanced: false
|
2017-01-14 04:47:40 +00:00
|
|
|
},
|
2016-10-16 02:05:53 +00:00
|
|
|
|
2017-01-14 04:47:40 +00:00
|
|
|
scanning: {
|
|
|
|
requireShift: true,
|
2017-01-15 20:42:44 +00:00
|
|
|
selectText: true,
|
2017-02-08 17:24:14 +00:00
|
|
|
imposter: true,
|
2017-01-15 20:42:44 +00:00
|
|
|
delay: 15,
|
|
|
|
length: 10
|
2017-01-14 04:47:40 +00:00
|
|
|
},
|
2016-11-07 02:09:12 +00:00
|
|
|
|
2017-01-14 04:47:40 +00:00
|
|
|
dictionaries: {},
|
2016-09-15 05:54:07 +00:00
|
|
|
|
2017-01-14 04:47:40 +00:00
|
|
|
anki: {
|
2017-01-15 20:42:44 +00:00
|
|
|
enable: false,
|
2017-02-05 19:44:59 +00:00
|
|
|
server: 'http://127.0.0.1:8765',
|
2017-01-15 20:42:44 +00:00
|
|
|
tags: ['yomichan'],
|
2017-01-19 04:46:17 +00:00
|
|
|
htmlCards: true,
|
2017-01-14 04:47:40 +00:00
|
|
|
sentenceExt: 200,
|
2017-01-15 20:42:44 +00:00
|
|
|
terms: {deck: '', model: '', fields: {}},
|
|
|
|
kanji: {deck: '', model: '', fields: {}}
|
2017-01-14 04:47:40 +00:00
|
|
|
}
|
2016-04-04 03:05:22 +00:00
|
|
|
};
|
|
|
|
|
2017-01-14 04:47:40 +00:00
|
|
|
const combine = (target, source) => {
|
|
|
|
for (const key in source) {
|
2017-02-26 18:38:48 +00:00
|
|
|
if (!target.hasOwnProperty(key)) {
|
2017-01-14 04:47:40 +00:00
|
|
|
target[key] = source[key];
|
|
|
|
}
|
2016-04-06 05:18:55 +00:00
|
|
|
}
|
2017-01-14 04:47:40 +00:00
|
|
|
};
|
|
|
|
|
2017-01-15 20:42:44 +00:00
|
|
|
combine(options, defaults);
|
|
|
|
combine(options.general, defaults.general);
|
|
|
|
combine(options.scanning, defaults.scanning);
|
|
|
|
combine(options.anki, defaults.anki);
|
2017-01-14 04:47:40 +00:00
|
|
|
combine(options.anki.terms, defaults.anki.terms);
|
|
|
|
combine(options.anki.kanji, defaults.anki.kanji);
|
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function optionsVersion(options) {
|
|
|
|
const fixups = [
|
|
|
|
() => {
|
2017-02-05 19:44:59 +00:00
|
|
|
const copy = (targetDict, targetKey, sourceDict, sourceKey) => {
|
|
|
|
targetDict[targetKey] = sourceDict.hasOwnProperty(sourceKey) ? sourceDict[sourceKey] : targetDict[targetKey];
|
|
|
|
};
|
2017-01-14 04:47:40 +00:00
|
|
|
|
2017-01-15 20:42:44 +00:00
|
|
|
copy(options.general, 'autoStart', options, 'activateOnStartup');
|
2017-01-14 04:47:40 +00:00
|
|
|
copy(options.general, 'audioPlayback', options, 'enableAudioPlayback');
|
2017-01-15 20:42:44 +00:00
|
|
|
copy(options.general, 'softKatakana', options, 'enableSoftKatakanaSearch');
|
|
|
|
copy(options.general, 'groupResults', options, 'groupTermResults');
|
|
|
|
copy(options.general, 'showAdvanced', options, 'showAdvancedOptions');
|
2017-01-14 04:47:40 +00:00
|
|
|
|
|
|
|
copy(options.scanning, 'requireShift', options, 'holdShiftToScan');
|
2017-01-15 20:42:44 +00:00
|
|
|
copy(options.scanning, 'selectText', options, 'selectMatchedText');
|
|
|
|
copy(options.scanning, 'delay', options, 'scanDelay');
|
|
|
|
copy(options.scanning, 'length', options, 'scanLength');
|
2017-01-14 04:47:40 +00:00
|
|
|
|
|
|
|
options.anki.enable = options.ankiMethod === 'ankiconnect';
|
|
|
|
|
2017-01-15 20:42:44 +00:00
|
|
|
copy(options.anki, 'tags', options, 'ankiCardTags');
|
|
|
|
copy(options.anki, 'sentenceExt', options, 'sentenceExtent');
|
|
|
|
copy(options.anki.terms, 'deck', options, 'ankiTermDeck');
|
|
|
|
copy(options.anki.terms, 'model', options, 'ankiTermModel');
|
|
|
|
copy(options.anki.terms, 'fields', options, 'ankiTermFields');
|
|
|
|
copy(options.anki.kanji, 'deck', options, 'ankiKanjiDeck');
|
|
|
|
copy(options.anki.kanji, 'model', options, 'ankiKanjiModel');
|
|
|
|
copy(options.anki.kanji, 'fields', options, 'ankiKanjiFields');
|
|
|
|
|
|
|
|
for (const title in options.dictionaries) {
|
2017-01-17 06:30:53 +00:00
|
|
|
const dictionary = options.dictionaries[title];
|
|
|
|
dictionary.enabled = dictionary.enableTerms || dictionary.enableKanji;
|
|
|
|
dictionary.priority = 0;
|
2017-01-15 20:42:44 +00:00
|
|
|
}
|
2017-01-29 02:14:07 +00:00
|
|
|
},
|
|
|
|
() => {
|
|
|
|
const fixupFields = fields => {
|
|
|
|
const fixups = {
|
|
|
|
'{expression-furigana}': '{furigana}',
|
|
|
|
'{glossary-list}': '{glossary}'
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const name in fields) {
|
|
|
|
for (const fixup in fixups) {
|
|
|
|
fields[name] = fields[name].replace(fixup, fixups[fixup]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fixupFields(options.anki.terms.fields);
|
|
|
|
fixupFields(options.anki.kanji.fields);
|
2017-01-15 20:42:44 +00:00
|
|
|
}
|
2017-01-14 04:47:40 +00:00
|
|
|
];
|
|
|
|
|
2017-02-26 18:38:48 +00:00
|
|
|
optionsSetDefaults(options);
|
|
|
|
if (!options.hasOwnProperty('version')) {
|
|
|
|
options.version = fixups.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (options.version < fixups.length) {
|
|
|
|
fixups[options.version++]();
|
2016-04-04 03:05:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
2017-01-14 04:47:40 +00:00
|
|
|
function optionsLoad() {
|
2016-09-16 03:10:11 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-01-14 04:47:40 +00:00
|
|
|
chrome.storage.sync.get(null, options => resolve(optionsVersion(options)));
|
2016-09-16 03:10:11 +00:00
|
|
|
});
|
2016-04-04 03:05:22 +00:00
|
|
|
}
|
|
|
|
|
2017-01-14 04:47:40 +00:00
|
|
|
function optionsSave(options) {
|
2016-09-16 03:10:11 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-01-14 04:47:40 +00:00
|
|
|
chrome.storage.sync.set(options, resolve);
|
2016-09-16 03:10:11 +00:00
|
|
|
});
|
2016-04-04 03:05:22 +00:00
|
|
|
}
|