avm99963 | 4c1a679 | 2020-08-31 21:30:42 +0200 | [diff] [blame] | 1 | const 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, |
avm99963 | ad65e75 | 2020-09-01 00:13:59 +0200 | [diff] [blame] | 15 | 'profileindicatoralt': false, |
| 16 | 'profileindicatoralt_months': 12, |
avm99963 | 0bc113a | 2020-09-07 13:02:11 +0200 | [diff] [blame] | 17 | 'ccdarktheme': false, |
| 18 | 'ccdarktheme_mode': 'switch', |
| 19 | 'ccdarktheme_switch_enabled': true, |
avm99963 | 129942f | 2020-09-08 02:07:18 +0200 | [diff] [blame] | 20 | 'ccforcehidedrawer': false, |
avm99963 | 8e0c100 | 2020-12-03 16:54:20 +0100 | [diff] [blame] | 21 | 'ccdragndropfix': false, |
avm99963 | f592396 | 2020-12-07 16:44:37 +0100 | [diff] [blame] | 22 | 'batchlock': false, |
avm99963 | b38b741 | 2020-12-11 17:59:02 +0100 | [diff] [blame] | 23 | 'smei_sortdirection': false, |
avm99963 | 4c1a679 | 2020-08-31 21:30:42 +0200 | [diff] [blame] | 24 | }; |
| 25 | |
avm99963 | ad65e75 | 2020-09-01 00:13:59 +0200 | [diff] [blame] | 26 | const specialOptions = [ |
| 27 | 'profileindicatoralt_months', |
avm99963 | 0bc113a | 2020-09-07 13:02:11 +0200 | [diff] [blame] | 28 | 'ccdarktheme_mode', |
| 29 | 'ccdarktheme_switch_enabled', |
avm99963 | 8e0c100 | 2020-12-03 16:54:20 +0100 | [diff] [blame] | 30 | 'ccdragndropfix', |
avm99963 | ad65e75 | 2020-09-01 00:13:59 +0200 | [diff] [blame] | 31 | ]; |
| 32 | |
avm99963 | 4c1a679 | 2020-08-31 21:30:42 +0200 | [diff] [blame] | 33 | const deprecatedOptions = [ |
| 34 | 'escalatethreads', |
| 35 | 'movethreads', |
| 36 | 'batchduplicate', |
| 37 | ]; |
| 38 | |
| 39 | function isEmpty(obj) { |
| 40 | return Object.keys(obj).length === 0; |
| 41 | } |
| 42 | |
| 43 | function cleanUpOptions(options) { |
| 44 | console.log('[cleanUpOptions] Previous options', options); |
avm99963 | ad65e75 | 2020-09-01 00:13:59 +0200 | [diff] [blame] | 45 | |
| 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 | } |
avm99963 | 4c1a679 | 2020-08-31 21:30:42 +0200 | [diff] [blame] | 55 | } |
| 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 | } |
avm99963 | 8e0c100 | 2020-12-03 16:54:20 +0100 | [diff] [blame] | 66 | |
| 67 | // This method is based on the fact that when building the extension for Firefox |
| 68 | // the browser_specific_settings.gecko entry is included. |
| 69 | function isFirefox() { |
| 70 | var manifest = chrome.runtime.getManifest(); |
| 71 | return manifest.browser_specific_settings !== undefined && |
| 72 | manifest.browser_specific_settings.gecko !== undefined; |
| 73 | } |