2020-02-09 03:30:57 +01:00
|
|
|
import * as CompileConfig from "../config.json";
|
2021-11-30 22:44:42 +01:00
|
|
|
import * as invidiousList from "../ci/invidiouslist.json";
|
2021-08-20 04:32:28 +02:00
|
|
|
import { Category, CategorySelection, CategorySkipOption, NoticeVisbilityMode, PreviewBarOption, SponsorTime, StorageChangesObject, UnEncodedSegmentTimes as UnencodedSegmentTimes } from "./types";
|
2020-04-27 00:07:10 +02:00
|
|
|
|
2020-02-03 20:11:52 +01:00
|
|
|
interface SBConfig {
|
2020-02-04 08:10:59 +01:00
|
|
|
userID: string,
|
2021-10-10 10:47:47 +02:00
|
|
|
isVip: boolean,
|
|
|
|
lastIsVipUpdate: number,
|
|
|
|
/* Contains unsubmitted segments that the user has created. */
|
2020-07-03 05:34:13 +02:00
|
|
|
segmentTimes: SBMap<string, SponsorTime[]>,
|
2021-04-06 05:35:05 +02:00
|
|
|
defaultCategory: Category,
|
2020-04-27 00:07:10 +02:00
|
|
|
whitelistedChannels: string[],
|
2020-04-27 05:14:18 +02:00
|
|
|
forceChannelCheck: boolean,
|
2021-01-17 20:25:45 +01:00
|
|
|
skipKeybind: string,
|
2020-02-03 20:11:52 +01:00
|
|
|
startSponsorKeybind: string,
|
|
|
|
submitKeybind: string,
|
|
|
|
minutesSaved: number,
|
|
|
|
skipCount: number,
|
|
|
|
sponsorTimesContributed: number,
|
2020-06-06 03:38:38 +02:00
|
|
|
submissionCountSinceCategories: number, // New count used to show the "Read The Guidelines!!" message
|
2020-07-04 01:56:08 +02:00
|
|
|
showTimeWithSkips: boolean,
|
2020-02-03 20:11:52 +01:00
|
|
|
disableSkipping: boolean,
|
2021-09-01 22:30:17 +02:00
|
|
|
muteSegments: boolean,
|
2022-01-06 22:26:59 +01:00
|
|
|
fullVideoSegments: boolean,
|
2020-02-03 20:11:52 +01:00
|
|
|
trackViewCount: boolean,
|
2021-06-12 00:17:40 +02:00
|
|
|
trackViewCountInPrivate: boolean,
|
2020-02-03 20:11:52 +01:00
|
|
|
dontShowNotice: boolean,
|
2021-08-20 04:32:28 +02:00
|
|
|
noticeVisibilityMode: NoticeVisbilityMode,
|
2020-02-03 20:11:52 +01:00
|
|
|
hideVideoPlayerControls: boolean,
|
|
|
|
hideInfoButtonPlayerControls: boolean,
|
|
|
|
hideDeleteButtonPlayerControls: boolean,
|
2020-02-09 04:18:03 +01:00
|
|
|
hideUploadButtonPlayerControls: boolean,
|
2021-10-01 01:23:17 +02:00
|
|
|
hideSkipButtonPlayerControls: boolean,
|
2020-02-03 20:11:52 +01:00
|
|
|
hideDiscordLaunches: number,
|
|
|
|
hideDiscordLink: boolean,
|
|
|
|
invidiousInstances: string[],
|
2020-02-09 01:31:18 +01:00
|
|
|
supportInvidious: boolean,
|
2020-02-09 03:30:57 +01:00
|
|
|
serverAddress: string,
|
2020-02-09 04:43:27 +01:00
|
|
|
minDuration: number,
|
2021-06-25 18:32:27 +02:00
|
|
|
skipNoticeDuration: number,
|
2020-04-04 14:59:04 +02:00
|
|
|
audioNotificationOnSkip,
|
2020-02-24 02:39:13 +01:00
|
|
|
checkForUnlistedVideos: boolean,
|
2020-04-09 06:40:11 +02:00
|
|
|
testingServer: boolean,
|
2020-09-04 18:39:00 +02:00
|
|
|
refetchWhenNotFound: boolean,
|
2021-05-12 23:00:31 +02:00
|
|
|
ytInfoPermissionGranted: boolean,
|
2021-06-24 03:09:59 +02:00
|
|
|
allowExpirements: boolean,
|
2021-08-20 06:04:42 +02:00
|
|
|
showDonationLink: boolean,
|
2021-06-28 00:50:52 +02:00
|
|
|
autoHideInfoButton: boolean,
|
2021-08-03 21:19:29 +02:00
|
|
|
autoSkipOnMusicVideos: boolean,
|
2021-10-14 05:14:51 +02:00
|
|
|
colorPalette: {
|
|
|
|
red: string,
|
|
|
|
white: string,
|
|
|
|
locked: string
|
2021-10-14 07:16:55 +02:00
|
|
|
},
|
|
|
|
scrollToEditTimeUpdate: boolean,
|
2022-01-07 02:08:12 +01:00
|
|
|
categoryPillUpdate: boolean,
|
2020-04-03 04:13:36 +02:00
|
|
|
|
|
|
|
// What categories should be skipped
|
2020-06-04 02:20:02 +02:00
|
|
|
categorySelections: CategorySelection[],
|
|
|
|
|
|
|
|
// Preview bar
|
|
|
|
barTypes: {
|
2020-07-13 02:59:35 +02:00
|
|
|
"preview-chooseACategory": PreviewBarOption,
|
2020-06-04 02:20:02 +02:00
|
|
|
"sponsor": PreviewBarOption,
|
|
|
|
"preview-sponsor": PreviewBarOption,
|
2021-03-31 04:50:36 +02:00
|
|
|
"selfpromo": PreviewBarOption,
|
|
|
|
"preview-selfpromo": PreviewBarOption,
|
|
|
|
"interaction": PreviewBarOption,
|
|
|
|
"preview-interaction": PreviewBarOption,
|
2020-06-04 02:20:02 +02:00
|
|
|
"intro": PreviewBarOption,
|
|
|
|
"preview-intro": PreviewBarOption,
|
|
|
|
"outro": PreviewBarOption,
|
|
|
|
"preview-outro": PreviewBarOption,
|
2021-03-31 04:50:36 +02:00
|
|
|
"preview": PreviewBarOption,
|
|
|
|
"preview-preview": PreviewBarOption,
|
2020-06-04 02:20:02 +02:00
|
|
|
"music_offtopic": PreviewBarOption,
|
2020-07-03 03:37:38 +02:00
|
|
|
"preview-music_offtopic": PreviewBarOption,
|
2021-08-18 04:05:19 +02:00
|
|
|
"poi_highlight": PreviewBarOption,
|
|
|
|
"preview-poi_highlight": PreviewBarOption,
|
2021-11-09 01:19:00 +01:00
|
|
|
"filler": PreviewBarOption,
|
|
|
|
"preview-filler": PreviewBarOption,
|
2020-12-30 05:06:50 +01:00
|
|
|
}
|
2020-02-03 20:11:52 +01:00
|
|
|
}
|
|
|
|
|
2020-12-14 23:37:35 +01:00
|
|
|
export interface SBObject {
|
2020-12-15 14:24:29 +01:00
|
|
|
configListeners: Array<(changes: StorageChangesObject) => unknown>;
|
2020-02-03 20:11:52 +01:00
|
|
|
defaults: SBConfig;
|
2020-02-04 08:10:59 +01:00
|
|
|
localConfig: SBConfig;
|
|
|
|
config: SBConfig;
|
2020-03-26 17:18:52 +01:00
|
|
|
|
|
|
|
// Functions
|
2021-01-17 19:01:57 +01:00
|
|
|
encodeStoredItem<T>(data: T): T | UnencodedSegmentTimes;
|
2020-03-26 17:18:52 +01:00
|
|
|
convertJSON(): void;
|
2020-01-29 04:16:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Allows a SBMap to be conveted into json form
|
|
|
|
// Currently used for local storage
|
|
|
|
class SBMap<T, U> extends Map {
|
2020-02-04 08:10:59 +01:00
|
|
|
id: string;
|
|
|
|
|
|
|
|
constructor(id: string, entries?: [T, U][]) {
|
2020-02-01 22:53:33 +01:00
|
|
|
super();
|
|
|
|
|
2020-02-04 08:10:59 +01:00
|
|
|
this.id = id;
|
|
|
|
|
2020-02-01 22:53:33 +01:00
|
|
|
// Import all entries if they were given
|
|
|
|
if (entries !== undefined) {
|
|
|
|
for (const item of entries) {
|
2020-02-09 16:34:18 +01:00
|
|
|
super.set(item[0], item[1])
|
2020-02-01 22:53:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 05:34:13 +02:00
|
|
|
get(key): U {
|
|
|
|
return super.get(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
rawSet(key, value) {
|
|
|
|
return super.set(key, value);
|
|
|
|
}
|
2020-02-04 08:10:59 +01:00
|
|
|
|
2020-07-03 05:34:13 +02:00
|
|
|
update() {
|
2020-02-04 08:10:59 +01:00
|
|
|
// Store updated SBMap locally
|
|
|
|
chrome.storage.sync.set({
|
|
|
|
[this.id]: encodeStoredItem(this)
|
|
|
|
});
|
2020-07-03 05:34:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
set(key: T, value: U) {
|
|
|
|
const result = super.set(key, value);
|
2020-02-04 08:10:59 +01:00
|
|
|
|
2020-07-03 05:34:13 +02:00
|
|
|
this.update();
|
2020-02-04 08:10:59 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(key) {
|
|
|
|
const result = super.delete(key);
|
|
|
|
|
2020-07-04 21:34:29 +02:00
|
|
|
// Make sure there are no empty elements
|
|
|
|
for (const entry of this.entries()) {
|
|
|
|
if (entry[1].length === 0) {
|
|
|
|
super.delete(entry[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.update();
|
|
|
|
|
2020-02-04 08:10:59 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
clear() {
|
|
|
|
const result = super.clear();
|
|
|
|
|
2020-07-03 05:34:13 +02:00
|
|
|
this.update();
|
2020-02-04 08:10:59 +01:00
|
|
|
return result;
|
|
|
|
}
|
2020-01-29 04:16:48 +01:00
|
|
|
}
|
|
|
|
|
2020-12-12 22:57:41 +01:00
|
|
|
const Config: SBObject = {
|
2020-01-10 02:09:32 +01:00
|
|
|
/**
|
|
|
|
* Callback function when an option is updated
|
|
|
|
*/
|
2020-01-29 04:16:48 +01:00
|
|
|
configListeners: [],
|
|
|
|
defaults: {
|
2020-02-04 08:10:59 +01:00
|
|
|
userID: null,
|
2021-10-10 10:47:47 +02:00
|
|
|
isVip: false,
|
|
|
|
lastIsVipUpdate: 0,
|
2020-07-03 05:34:13 +02:00
|
|
|
segmentTimes: new SBMap("segmentTimes"),
|
2021-04-06 05:35:05 +02:00
|
|
|
defaultCategory: "chooseACategory" as Category,
|
2020-02-04 08:10:59 +01:00
|
|
|
whitelistedChannels: [],
|
2020-04-27 05:14:18 +02:00
|
|
|
forceChannelCheck: false,
|
2021-01-17 20:25:45 +01:00
|
|
|
skipKeybind: "Enter",
|
2020-02-03 20:11:52 +01:00
|
|
|
startSponsorKeybind: ";",
|
|
|
|
submitKeybind: "'",
|
|
|
|
minutesSaved: 0,
|
|
|
|
skipCount: 0,
|
|
|
|
sponsorTimesContributed: 0,
|
2020-06-06 03:38:38 +02:00
|
|
|
submissionCountSinceCategories: 0,
|
2020-12-12 23:58:34 +01:00
|
|
|
showTimeWithSkips: true,
|
2020-02-03 20:11:52 +01:00
|
|
|
disableSkipping: false,
|
2021-09-01 22:30:17 +02:00
|
|
|
muteSegments: true,
|
2022-01-06 22:26:59 +01:00
|
|
|
fullVideoSegments: true,
|
2020-02-03 20:11:52 +01:00
|
|
|
trackViewCount: true,
|
2021-06-12 00:17:40 +02:00
|
|
|
trackViewCountInPrivate: true,
|
2020-02-03 20:11:52 +01:00
|
|
|
dontShowNotice: false,
|
2021-08-20 04:32:28 +02:00
|
|
|
noticeVisibilityMode: NoticeVisbilityMode.FadedForAutoSkip,
|
2020-02-03 20:11:52 +01:00
|
|
|
hideVideoPlayerControls: false,
|
|
|
|
hideInfoButtonPlayerControls: false,
|
|
|
|
hideDeleteButtonPlayerControls: false,
|
2020-02-09 04:18:03 +01:00
|
|
|
hideUploadButtonPlayerControls: false,
|
2021-10-01 01:23:17 +02:00
|
|
|
hideSkipButtonPlayerControls: false,
|
2020-02-03 20:11:52 +01:00
|
|
|
hideDiscordLaunches: 0,
|
|
|
|
hideDiscordLink: false,
|
2021-12-01 23:48:07 +01:00
|
|
|
invidiousInstances: ["invidious.snopyta.org"], // leave as default
|
2020-02-09 01:10:04 +01:00
|
|
|
supportInvidious: false,
|
2020-02-09 03:30:57 +01:00
|
|
|
serverAddress: CompileConfig.serverAddress,
|
2020-02-09 04:43:27 +01:00
|
|
|
minDuration: 0,
|
2021-06-25 18:32:27 +02:00
|
|
|
skipNoticeDuration: 4,
|
2020-04-04 14:59:04 +02:00
|
|
|
audioNotificationOnSkip: false,
|
2020-02-24 02:39:13 +01:00
|
|
|
checkForUnlistedVideos: false,
|
2020-04-09 06:40:11 +02:00
|
|
|
testingServer: false,
|
2020-09-04 18:39:00 +02:00
|
|
|
refetchWhenNotFound: true,
|
2021-05-12 23:00:31 +02:00
|
|
|
ytInfoPermissionGranted: false,
|
2021-06-24 03:09:59 +02:00
|
|
|
allowExpirements: true,
|
2021-08-20 06:04:42 +02:00
|
|
|
showDonationLink: true,
|
2021-06-28 00:50:52 +02:00
|
|
|
autoHideInfoButton: true,
|
2021-08-03 21:19:29 +02:00
|
|
|
autoSkipOnMusicVideos: false,
|
2021-10-04 20:20:04 +02:00
|
|
|
scrollToEditTimeUpdate: false, // false means the tooltip will be shown
|
2022-01-07 02:08:12 +01:00
|
|
|
categoryPillUpdate: false,
|
2020-04-09 06:40:11 +02:00
|
|
|
|
2020-04-03 04:13:36 +02:00
|
|
|
categorySelections: [{
|
2021-04-06 05:35:05 +02:00
|
|
|
name: "sponsor" as Category,
|
2020-04-04 18:58:02 +02:00
|
|
|
option: CategorySkipOption.AutoSkip
|
2021-11-09 01:57:46 +01:00
|
|
|
}, {
|
|
|
|
name: "poi_highlight" as Category,
|
|
|
|
option: CategorySkipOption.ManualSkip
|
2020-06-04 02:20:02 +02:00
|
|
|
}],
|
|
|
|
|
2021-10-14 05:14:51 +02:00
|
|
|
colorPalette: {
|
|
|
|
red: "#780303",
|
|
|
|
white: "#ffffff",
|
|
|
|
locked: "#ffc83d"
|
|
|
|
},
|
2021-10-09 02:43:39 +02:00
|
|
|
|
2020-06-04 02:20:02 +02:00
|
|
|
// Preview bar
|
|
|
|
barTypes: {
|
2020-07-13 02:59:35 +02:00
|
|
|
"preview-chooseACategory": {
|
|
|
|
color: "#ffffff",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
2020-06-04 02:20:02 +02:00
|
|
|
"sponsor": {
|
|
|
|
color: "#00d400",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-sponsor": {
|
|
|
|
color: "#007800",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
2021-03-31 04:50:36 +02:00
|
|
|
"selfpromo": {
|
|
|
|
color: "#ffff00",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-selfpromo": {
|
|
|
|
color: "#bfbf35",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"interaction": {
|
|
|
|
color: "#cc00ff",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-interaction": {
|
|
|
|
color: "#6c0087",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
2020-06-04 02:20:02 +02:00
|
|
|
"intro": {
|
|
|
|
color: "#00ffff",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-intro": {
|
|
|
|
color: "#008080",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"outro": {
|
|
|
|
color: "#0202ed",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-outro": {
|
|
|
|
color: "#000070",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
2021-03-31 04:50:36 +02:00
|
|
|
"preview": {
|
2021-06-20 19:20:23 +02:00
|
|
|
color: "#008fd6",
|
2020-06-04 02:20:02 +02:00
|
|
|
opacity: "0.7"
|
|
|
|
},
|
2021-03-31 04:50:36 +02:00
|
|
|
"preview-preview": {
|
2021-06-20 19:20:23 +02:00
|
|
|
color: "#005799",
|
2020-06-04 02:20:02 +02:00
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"music_offtopic": {
|
|
|
|
color: "#ff9900",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-music_offtopic": {
|
|
|
|
color: "#a6634a",
|
|
|
|
opacity: "0.7"
|
2021-04-06 05:35:05 +02:00
|
|
|
},
|
2021-08-18 04:05:19 +02:00
|
|
|
"poi_highlight": {
|
2021-04-06 05:35:05 +02:00
|
|
|
color: "#ff1684",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
2021-08-18 04:05:19 +02:00
|
|
|
"preview-poi_highlight": {
|
2021-04-06 05:35:05 +02:00
|
|
|
color: "#9b044c",
|
|
|
|
opacity: "0.7"
|
2021-11-09 01:19:00 +01:00
|
|
|
},
|
|
|
|
"filler": {
|
|
|
|
color: "#7300FF",
|
|
|
|
opacity: "0.9"
|
|
|
|
},
|
|
|
|
"preview-filler": {
|
|
|
|
color: "#2E0066",
|
|
|
|
opacity: "0.7"
|
2020-06-04 02:20:02 +02:00
|
|
|
}
|
2020-12-30 05:06:50 +01:00
|
|
|
}
|
2020-01-29 04:16:48 +01:00
|
|
|
},
|
2020-02-02 01:18:53 +01:00
|
|
|
localConfig: null,
|
2020-03-26 17:18:52 +01:00
|
|
|
config: null,
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
encodeStoredItem,
|
|
|
|
convertJSON
|
2020-01-10 02:09:32 +01:00
|
|
|
};
|
2019-12-31 21:07:43 +01:00
|
|
|
|
2020-01-09 18:46:04 +01:00
|
|
|
// Function setup
|
|
|
|
|
|
|
|
/**
|
2020-01-29 04:16:48 +01:00
|
|
|
* A SBMap cannot be stored in the chrome storage.
|
2020-02-15 05:20:11 +01:00
|
|
|
* This data will be encoded into an array instead
|
2020-01-09 18:46:04 +01:00
|
|
|
*
|
2020-02-02 01:18:53 +01:00
|
|
|
* @param data
|
2020-01-09 18:46:04 +01:00
|
|
|
*/
|
2021-01-17 18:56:37 +01:00
|
|
|
function encodeStoredItem<T>(data: T): T | UnencodedSegmentTimes {
|
2020-01-29 04:16:48 +01:00
|
|
|
// if data is SBMap convert to json for storing
|
|
|
|
if(!(data instanceof SBMap)) return data;
|
2021-01-31 18:03:54 +01:00
|
|
|
return Array.from(data.entries()).filter((element) => element[1].length > 0); // Remove empty entries
|
2020-01-09 18:12:49 +01:00
|
|
|
}
|
|
|
|
|
2020-01-09 18:38:15 +01:00
|
|
|
/**
|
2020-02-04 08:10:59 +01:00
|
|
|
* An SBMap cannot be stored in the chrome storage.
|
2020-01-09 18:38:15 +01:00
|
|
|
* This data will be decoded from the array it is stored in
|
|
|
|
*
|
|
|
|
* @param {*} data
|
|
|
|
*/
|
2020-07-03 05:34:13 +02:00
|
|
|
function decodeStoredItem<T>(id: string, data: T): T | SBMap<string, SponsorTime[]> {
|
2020-02-09 02:15:49 +01:00
|
|
|
if (!Config.defaults[id]) return data;
|
2020-02-04 23:16:40 +01:00
|
|
|
|
2020-02-09 02:15:49 +01:00
|
|
|
if (Config.defaults[id] instanceof SBMap) {
|
2020-02-04 23:16:40 +01:00
|
|
|
try {
|
2020-07-03 05:34:13 +02:00
|
|
|
if (!Array.isArray(data)) return data;
|
2021-01-17 18:56:37 +01:00
|
|
|
return new SBMap(id, data as UnencodedSegmentTimes);
|
2020-02-09 02:15:49 +01:00
|
|
|
} catch(e) {
|
2020-02-15 05:20:11 +01:00
|
|
|
console.error("Failed to parse SBMap: " + id);
|
2020-02-09 02:08:34 +01:00
|
|
|
}
|
2020-01-09 18:38:15 +01:00
|
|
|
}
|
2020-02-15 05:20:11 +01:00
|
|
|
|
2020-02-04 23:16:40 +01:00
|
|
|
// If all else fails, return the data
|
|
|
|
return data;
|
2020-01-09 00:16:02 +01:00
|
|
|
}
|
|
|
|
|
2020-12-15 18:29:47 +01:00
|
|
|
function configProxy(): SBConfig {
|
2020-12-15 14:24:29 +01:00
|
|
|
chrome.storage.onChanged.addListener((changes: {[key: string]: chrome.storage.StorageChange}) => {
|
2020-01-10 02:09:32 +01:00
|
|
|
for (const key in changes) {
|
2020-02-04 08:10:59 +01:00
|
|
|
Config.localConfig[key] = decodeStoredItem(key, changes[key].newValue);
|
2019-12-31 21:07:43 +01:00
|
|
|
}
|
2020-01-10 02:09:32 +01:00
|
|
|
|
2020-02-04 08:10:59 +01:00
|
|
|
for (const callback of Config.configListeners) {
|
2020-01-10 02:09:32 +01:00
|
|
|
callback(changes);
|
|
|
|
}
|
2019-12-31 21:07:43 +01:00
|
|
|
});
|
2020-01-09 17:39:23 +01:00
|
|
|
|
2020-12-15 18:29:47 +01:00
|
|
|
const handler: ProxyHandler<SBConfig> = {
|
|
|
|
set<K extends keyof SBConfig>(obj: SBConfig, prop: K, value: SBConfig[K]) {
|
2020-02-04 08:10:59 +01:00
|
|
|
Config.localConfig[prop] = value;
|
2020-01-09 19:16:27 +01:00
|
|
|
|
2019-12-31 21:07:43 +01:00
|
|
|
chrome.storage.sync.set({
|
2020-01-09 18:46:04 +01:00
|
|
|
[prop]: encodeStoredItem(value)
|
2020-01-08 04:59:50 +01:00
|
|
|
});
|
2020-01-29 04:16:48 +01:00
|
|
|
|
|
|
|
return true;
|
2019-12-31 21:07:43 +01:00
|
|
|
},
|
2020-01-11 20:42:35 +01:00
|
|
|
|
2020-12-15 18:29:47 +01:00
|
|
|
get<K extends keyof SBConfig>(obj: SBConfig, prop: K): SBConfig[K] {
|
2020-12-12 22:57:41 +01:00
|
|
|
const data = Config.localConfig[prop];
|
2020-01-09 18:38:15 +01:00
|
|
|
|
2020-01-11 20:42:35 +01:00
|
|
|
return obj[prop] || data;
|
|
|
|
},
|
|
|
|
|
2020-12-15 18:29:47 +01:00
|
|
|
deleteProperty(obj: SBConfig, prop: keyof SBConfig) {
|
2020-01-29 04:16:48 +01:00
|
|
|
chrome.storage.sync.remove(<string> prop);
|
|
|
|
|
|
|
|
return true;
|
2019-12-31 21:07:43 +01:00
|
|
|
}
|
2020-01-16 19:43:49 +01:00
|
|
|
|
2019-12-31 21:07:43 +01:00
|
|
|
};
|
2020-01-08 04:59:50 +01:00
|
|
|
|
2020-12-15 18:29:47 +01:00
|
|
|
return new Proxy<SBConfig>({handler} as unknown as SBConfig, handler);
|
2019-12-31 21:07:43 +01:00
|
|
|
}
|
|
|
|
|
2020-12-12 23:58:34 +01:00
|
|
|
function fetchConfig(): Promise<void> {
|
2020-12-15 12:58:44 +01:00
|
|
|
return new Promise((resolve) => {
|
2020-01-09 18:46:04 +01:00
|
|
|
chrome.storage.sync.get(null, function(items) {
|
2020-02-04 08:10:59 +01:00
|
|
|
Config.localConfig = <SBConfig> <unknown> items; // Data is ready
|
2020-01-09 18:46:04 +01:00
|
|
|
resolve();
|
|
|
|
});
|
2019-12-31 21:07:43 +01:00
|
|
|
});
|
2020-01-09 18:46:04 +01:00
|
|
|
}
|
2019-12-31 21:07:43 +01:00
|
|
|
|
2020-07-03 05:34:13 +02:00
|
|
|
function migrateOldFormats(config: SBConfig) {
|
2021-12-27 02:16:26 +01:00
|
|
|
if (config["fillerUpdate"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("fillerUpdate");
|
|
|
|
}
|
2021-11-09 01:57:46 +01:00
|
|
|
if (config["highlightCategoryAdded"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("highlightCategoryAdded");
|
|
|
|
}
|
|
|
|
if (config["highlightCategoryUpdate"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("highlightCategoryUpdate");
|
2020-07-03 05:34:13 +02:00
|
|
|
}
|
2021-06-10 01:22:02 +02:00
|
|
|
|
2021-07-21 17:48:19 +02:00
|
|
|
if (config["askAboutUnlistedVideos"]) {
|
|
|
|
chrome.storage.sync.remove("askAboutUnlistedVideos");
|
|
|
|
}
|
|
|
|
|
2021-08-03 21:19:29 +02:00
|
|
|
if (!config["autoSkipOnMusicVideosUpdate"]) {
|
|
|
|
config["autoSkipOnMusicVideosUpdate"] = true;
|
|
|
|
for (const selection of config.categorySelections) {
|
|
|
|
if (selection.name === "music_offtopic"
|
|
|
|
&& selection.option === CategorySkipOption.AutoSkip) {
|
|
|
|
|
|
|
|
config.autoSkipOnMusicVideos = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 05:34:13 +02:00
|
|
|
if (config["disableAutoSkip"]) {
|
|
|
|
for (const selection of config.categorySelections) {
|
2020-04-06 06:40:30 +02:00
|
|
|
if (selection.name === "sponsor") {
|
|
|
|
selection.option = CategorySkipOption.ManualSkip;
|
|
|
|
|
|
|
|
chrome.storage.sync.remove("disableAutoSkip");
|
|
|
|
}
|
2020-01-06 22:11:37 +01:00
|
|
|
}
|
|
|
|
}
|
2020-04-27 00:07:10 +02:00
|
|
|
|
2021-06-10 01:22:02 +02:00
|
|
|
// Remove some old unused options
|
|
|
|
if (config["sponsorVideoID"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("sponsorVideoID");
|
|
|
|
}
|
|
|
|
if (config["previousVideoID"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("previousVideoID");
|
|
|
|
}
|
2021-12-01 23:48:07 +01:00
|
|
|
|
|
|
|
// populate invidiousInstances with new instances if 3p support is **DISABLED**
|
2021-12-05 05:16:26 +01:00
|
|
|
if (!config["supportInvidious"] && config["invidiousInstances"].length !== invidiousList.length) {
|
2021-12-28 20:50:18 +01:00
|
|
|
config["invidiousInstances"] = invidiousList;
|
2021-12-01 23:48:07 +01:00
|
|
|
}
|
2020-01-06 22:11:37 +01:00
|
|
|
}
|
|
|
|
|
2020-01-09 18:46:04 +01:00
|
|
|
async function setupConfig() {
|
2019-12-31 21:07:43 +01:00
|
|
|
await fetchConfig();
|
2020-01-11 20:42:35 +01:00
|
|
|
addDefaults();
|
|
|
|
convertJSON();
|
2020-07-03 05:34:13 +02:00
|
|
|
const config = configProxy();
|
|
|
|
migrateOldFormats(config);
|
|
|
|
|
|
|
|
Config.config = config;
|
2019-12-31 21:07:43 +01:00
|
|
|
}
|
|
|
|
|
2020-03-26 17:18:52 +01:00
|
|
|
function convertJSON(): void {
|
2020-02-09 02:05:31 +01:00
|
|
|
Object.keys(Config.localConfig).forEach(key => {
|
2020-02-04 08:10:59 +01:00
|
|
|
Config.localConfig[key] = decodeStoredItem(key, Config.localConfig[key]);
|
2020-01-11 20:42:35 +01:00
|
|
|
});
|
2020-01-09 17:39:23 +01:00
|
|
|
}
|
2020-01-09 18:46:04 +01:00
|
|
|
|
2019-12-31 23:46:16 +01:00
|
|
|
// Add defaults
|
|
|
|
function addDefaults() {
|
2020-02-04 08:10:59 +01:00
|
|
|
for (const key in Config.defaults) {
|
2020-12-12 23:58:34 +01:00
|
|
|
if(!Object.prototype.hasOwnProperty.call(Config.localConfig, key)) {
|
|
|
|
Config.localConfig[key] = Config.defaults[key];
|
2020-07-03 03:37:38 +02:00
|
|
|
} else if (key === "barTypes") {
|
|
|
|
for (const key2 in Config.defaults[key]) {
|
2020-12-12 23:58:34 +01:00
|
|
|
if(!Object.prototype.hasOwnProperty.call(Config.localConfig[key], key2)) {
|
2020-07-03 03:37:38 +02:00
|
|
|
Config.localConfig[key][key2] = Config.defaults[key][key2];
|
|
|
|
}
|
|
|
|
}
|
2020-01-11 20:42:35 +01:00
|
|
|
}
|
2020-01-11 19:27:20 +01:00
|
|
|
}
|
2020-12-12 22:57:41 +01:00
|
|
|
}
|
2019-12-31 23:46:16 +01:00
|
|
|
|
2019-12-31 21:07:43 +01:00
|
|
|
// Sync config
|
2020-01-09 18:46:04 +01:00
|
|
|
setupConfig();
|
2020-01-29 04:16:48 +01:00
|
|
|
|
2020-06-26 20:19:51 +02:00
|
|
|
export default Config;
|