blob: 28a86fde4b518970bc7fec9ebeb8592dee757fc9 [file] [log] [blame]
avm999634c1a6792020-08-31 21:30:42 +02001const defaultOptions = {
2 'list': true,
3 'thread': true,
4 'threadall': false,
5 'fixedtoolbar': false,
6 'redirect': false,
7 'history': false,
8 'loaddrafts': false,
9 'batchduplicate': false,
10 'escalatethreads': false,
11 'movethreads': false,
12 'increasecontrast': false,
13 'stickysidebarheaders': false,
14 'profileindicator': false,
avm99963ad65e752020-09-01 00:13:59 +020015 'profileindicatoralt': false,
16 'profileindicatoralt_months': 12,
avm999630bc113a2020-09-07 13:02:11 +020017 'ccdarktheme': false,
18 'ccdarktheme_mode': 'switch',
19 'ccdarktheme_switch_enabled': true,
avm99963129942f2020-09-08 02:07:18 +020020 'ccforcehidedrawer': false,
avm999638e0c1002020-12-03 16:54:20 +010021 'ccdragndropfix': false,
avm99963f5923962020-12-07 16:44:37 +010022 'batchlock': false,
avm99963b38b7412020-12-11 17:59:02 +010023 'smei_sortdirection': false,
avm999634c1a6792020-08-31 21:30:42 +020024};
25
avm99963ad65e752020-09-01 00:13:59 +020026const specialOptions = [
27 'profileindicatoralt_months',
avm999630bc113a2020-09-07 13:02:11 +020028 'ccdarktheme_mode',
29 'ccdarktheme_switch_enabled',
avm999638e0c1002020-12-03 16:54:20 +010030 'ccdragndropfix',
avm99963ad65e752020-09-01 00:13:59 +020031];
32
avm999634c1a6792020-08-31 21:30:42 +020033const deprecatedOptions = [
34 'escalatethreads',
35 'movethreads',
36 'batchduplicate',
37];
38
39function isEmpty(obj) {
40 return Object.keys(obj).length === 0;
41}
42
43function cleanUpOptions(options) {
44 console.log('[cleanUpOptions] Previous options', options);
avm99963ad65e752020-09-01 00:13:59 +020045
46 if (typeof options !== 'object' || options === null) {
47 options = defaultOptions;
48 } else {
49 var ok = true;
50 for (const [opt, value] of Object.entries(defaultOptions)) {
51 if (!(opt in options)) {
52 ok = false;
53 options[opt] = value;
54 }
avm999634c1a6792020-08-31 21:30:42 +020055 }
56 }
57
58 console.log('[cleanUpOptions] New options', options);
59
60 if (!ok) {
61 chrome.storage.sync.set(options);
62 }
63
64 return options;
65}
avm999638e0c1002020-12-03 16:54:20 +010066
67// This method is based on the fact that when building the extension for Firefox
68// the browser_specific_settings.gecko entry is included.
69function isFirefox() {
70 var manifest = chrome.runtime.getManifest();
71 return manifest.browser_specific_settings !== undefined &&
72 manifest.browser_specific_settings.gecko !== undefined;
73}