SponsorBlock/src/config.ts

483 lines
14 KiB
TypeScript
Raw Normal View History

import * as CompileConfig from "../config.json";
import * as invidiousList from "../ci/invidiouslist.json";
import { Category, CategorySelection, CategorySkipOption, NoticeVisbilityMode, PreviewBarOption, SponsorTime, StorageChangesObject, UnEncodedSegmentTimes as UnencodedSegmentTimes } from "./types";
interface SBConfig {
userID: string,
isVip: boolean,
lastIsVipUpdate: number,
/* Contains unsubmitted segments that the user has created. */
segmentTimes: SBMap<string, SponsorTime[]>,
2021-04-06 05:35:05 +02:00
defaultCategory: Category,
whitelistedChannels: string[],
forceChannelCheck: boolean,
skipKeybind: string,
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
showTimeWithSkips: boolean,
disableSkipping: boolean,
muteSegments: boolean,
fullVideoSegments: boolean,
trackViewCount: boolean,
trackViewCountInPrivate: boolean,
dontShowNotice: boolean,
noticeVisibilityMode: NoticeVisbilityMode,
hideVideoPlayerControls: boolean,
hideInfoButtonPlayerControls: boolean,
hideDeleteButtonPlayerControls: boolean,
hideUploadButtonPlayerControls: boolean,
hideSkipButtonPlayerControls: boolean,
hideDiscordLaunches: number,
hideDiscordLink: boolean,
invidiousInstances: string[],
supportInvidious: boolean,
serverAddress: string,
minDuration: number,
skipNoticeDuration: number,
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,
allowExpirements: boolean,
2021-08-20 06:04:42 +02:00
showDonationLink: boolean,
autoHideInfoButton: boolean,
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: {
"preview-chooseACategory": PreviewBarOption,
2020-06-04 02:20:02 +02:00
"sponsor": PreviewBarOption,
"preview-sponsor": PreviewBarOption,
"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,
"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,
"poi_highlight": PreviewBarOption,
"preview-poi_highlight": PreviewBarOption,
"filler": PreviewBarOption,
"preview-filler": PreviewBarOption,
}
}
export interface SBObject {
configListeners: Array<(changes: StorageChangesObject) => unknown>;
defaults: SBConfig;
localConfig: SBConfig;
config: SBConfig;
// Functions
2021-01-17 19:01:57 +01:00
encodeStoredItem<T>(data: T): T | UnencodedSegmentTimes;
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 {
id: string;
constructor(id: string, entries?: [T, U][]) {
2020-02-01 22:53:33 +01:00
super();
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
}
}
}
get(key): U {
return super.get(key);
}
rawSet(key, value) {
return super.set(key, value);
}
update() {
// Store updated SBMap locally
chrome.storage.sync.set({
[this.id]: encodeStoredItem(this)
});
}
set(key: T, value: U) {
const result = super.set(key, value);
this.update();
return result;
}
delete(key) {
const result = super.delete(key);
// Make sure there are no empty elements
for (const entry of this.entries()) {
if (entry[1].length === 0) {
super.delete(entry[0]);
}
}
this.update();
return result;
}
clear() {
const result = super.clear();
this.update();
return result;
}
2020-01-29 04:16:48 +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: {
userID: null,
isVip: false,
lastIsVipUpdate: 0,
segmentTimes: new SBMap("segmentTimes"),
2021-04-06 05:35:05 +02:00
defaultCategory: "chooseACategory" as Category,
whitelistedChannels: [],
forceChannelCheck: false,
skipKeybind: "Enter",
startSponsorKeybind: ";",
submitKeybind: "'",
minutesSaved: 0,
skipCount: 0,
sponsorTimesContributed: 0,
2020-06-06 03:38:38 +02:00
submissionCountSinceCategories: 0,
showTimeWithSkips: true,
disableSkipping: false,
muteSegments: true,
fullVideoSegments: true,
trackViewCount: true,
trackViewCountInPrivate: true,
dontShowNotice: false,
noticeVisibilityMode: NoticeVisbilityMode.FadedForAutoSkip,
hideVideoPlayerControls: false,
hideInfoButtonPlayerControls: false,
hideDeleteButtonPlayerControls: false,
hideUploadButtonPlayerControls: false,
hideSkipButtonPlayerControls: false,
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,
serverAddress: CompileConfig.serverAddress,
minDuration: 0,
skipNoticeDuration: 4,
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,
allowExpirements: true,
2021-08-20 06:04:42 +02:00
showDonationLink: true,
autoHideInfoButton: true,
autoSkipOnMusicVideos: false,
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,
option: CategorySkipOption.AutoSkip
}, {
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"
},
2020-06-04 02:20:02 +02:00
// Preview bar
barTypes: {
"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"
},
"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"
},
"preview": {
2021-06-20 19:20:23 +02:00
color: "#008fd6",
2020-06-04 02:20:02 +02:00
opacity: "0.7"
},
"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
},
"poi_highlight": {
2021-04-06 05:35:05 +02:00
color: "#ff1684",
opacity: "0.7"
},
"preview-poi_highlight": {
2021-04-06 05:35:05 +02:00
color: "#9b044c",
opacity: "0.7"
},
"filler": {
color: "#7300FF",
opacity: "0.9"
},
"preview-filler": {
color: "#2E0066",
opacity: "0.7"
2020-06-04 02:20:02 +02:00
}
}
2020-01-29 04:16:48 +01:00
},
2020-02-02 01:18:53 +01:00
localConfig: null,
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
}
/**
* An SBMap cannot be stored in the chrome storage.
* This data will be decoded from the array it is stored in
*
* @param {*} data
*/
function decodeStoredItem<T>(id: string, data: T): T | SBMap<string, SponsorTime[]> {
if (!Config.defaults[id]) return data;
if (Config.defaults[id] instanceof SBMap) {
try {
if (!Array.isArray(data)) return data;
2021-01-17 18:56:37 +01:00
return new SBMap(id, data as UnencodedSegmentTimes);
} 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-02-15 05:20:11 +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 {
chrome.storage.onChanged.addListener((changes: {[key: string]: chrome.storage.StorageChange}) => {
2020-01-10 02:09:32 +01:00
for (const key in changes) {
Config.localConfig[key] = decodeStoredItem(key, changes[key].newValue);
2019-12-31 21:07:43 +01:00
}
2020-01-10 02:09:32 +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]) {
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-12-15 18:29:47 +01:00
get<K extends keyof SBConfig>(obj: SBConfig, prop: K): SBConfig[K] {
const data = Config.localConfig[prop];
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
}
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) {
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
function migrateOldFormats(config: SBConfig) {
2021-12-27 02:16:26 +01:00
if (config["fillerUpdate"] !== undefined) {
chrome.storage.sync.remove("fillerUpdate");
}
if (config["highlightCategoryAdded"] !== undefined) {
chrome.storage.sync.remove("highlightCategoryAdded");
}
if (config["highlightCategoryUpdate"] !== undefined) {
chrome.storage.sync.remove("highlightCategoryUpdate");
}
2021-06-10 01:22:02 +02:00
2021-07-21 17:48:19 +02:00
if (config["askAboutUnlistedVideos"]) {
chrome.storage.sync.remove("askAboutUnlistedVideos");
}
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;
}
}
}
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
}
}
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();
addDefaults();
convertJSON();
const config = configProxy();
migrateOldFormats(config);
Config.config = config;
2019-12-31 21:07:43 +01:00
}
function convertJSON(): void {
2020-02-09 02:05:31 +01:00
Object.keys(Config.localConfig).forEach(key => {
Config.localConfig[key] = decodeStoredItem(key, Config.localConfig[key]);
});
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() {
for (const key in Config.defaults) {
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]) {
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];
}
}
}
}
}
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;