2022-11-21 13:25:40 -05:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-04-06 20:27:18 -04:00
|
|
|
import { showNotification } from "@api/Notifications";
|
2023-05-05 19:36:00 -04:00
|
|
|
import { PlainSettings, Settings } from "@api/Settings";
|
2022-11-28 07:37:55 -05:00
|
|
|
import { Toasts } from "@webpack/common";
|
2023-04-06 20:27:18 -04:00
|
|
|
import { deflateSync, inflateSync } from "fflate";
|
2022-11-28 07:37:55 -05:00
|
|
|
|
2023-04-06 20:27:18 -04:00
|
|
|
import { getCloudAuth, getCloudUrl } from "./cloud";
|
2023-05-05 19:36:00 -04:00
|
|
|
import { Logger } from "./Logger";
|
2023-09-23 19:16:41 -04:00
|
|
|
import { relaunch } from "./native";
|
2023-07-25 19:27:04 -04:00
|
|
|
import { chooseFile, saveFile } from "./web";
|
2022-11-21 13:25:40 -05:00
|
|
|
|
|
|
|
export async function importSettings(data: string) {
|
|
|
|
try {
|
|
|
|
var parsed = JSON.parse(data);
|
|
|
|
} catch (err) {
|
|
|
|
console.log(data);
|
|
|
|
throw new Error("Failed to parse JSON: " + String(err));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ("settings" in parsed && "quickCss" in parsed) {
|
2023-04-15 08:50:00 -04:00
|
|
|
Object.assign(PlainSettings, parsed.settings);
|
2024-03-13 16:45:45 -04:00
|
|
|
await VencordNative.settings.set(parsed.settings);
|
2023-05-01 20:50:51 -04:00
|
|
|
await VencordNative.quickCss.set(parsed.quickCss);
|
2022-11-21 13:25:40 -05:00
|
|
|
} else
|
|
|
|
throw new Error("Invalid Settings. Is this even a Vencord Settings file?");
|
|
|
|
}
|
|
|
|
|
2023-07-04 11:57:28 -04:00
|
|
|
export async function exportSettings({ minify }: { minify?: boolean; } = {}) {
|
2024-03-13 16:45:45 -04:00
|
|
|
const settings = VencordNative.settings.get();
|
2023-05-01 20:50:51 -04:00
|
|
|
const quickCss = await VencordNative.quickCss.get();
|
2023-07-04 11:57:28 -04:00
|
|
|
return JSON.stringify({ settings, quickCss }, null, minify ? undefined : 4);
|
2022-11-21 13:25:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function downloadSettingsBackup() {
|
|
|
|
const filename = "vencord-settings-backup.json";
|
|
|
|
const backup = await exportSettings();
|
|
|
|
const data = new TextEncoder().encode(backup);
|
|
|
|
|
2023-04-03 19:16:29 -04:00
|
|
|
if (IS_DISCORD_DESKTOP) {
|
|
|
|
DiscordNative.fileManager.saveWithDialog(data, filename);
|
|
|
|
} else {
|
2023-04-07 21:51:37 -04:00
|
|
|
saveFile(new File([data], filename, { type: "application/json" }));
|
2022-11-21 13:25:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-06 20:27:18 -04:00
|
|
|
const toast = (type: number, message: string) =>
|
|
|
|
Toasts.show({
|
|
|
|
type,
|
|
|
|
message,
|
|
|
|
id: Toasts.genId()
|
|
|
|
});
|
2022-11-21 13:25:40 -05:00
|
|
|
|
2023-04-06 20:27:18 -04:00
|
|
|
const toastSuccess = () =>
|
|
|
|
toast(Toasts.Type.SUCCESS, "Settings successfully imported. Restart to apply changes!");
|
|
|
|
|
|
|
|
const toastFailure = (err: any) =>
|
|
|
|
toast(Toasts.Type.FAILURE, `Failed to import settings: ${String(err)}`);
|
2022-11-21 13:25:40 -05:00
|
|
|
|
|
|
|
export async function uploadSettingsBackup(showToast = true): Promise<void> {
|
2023-04-03 19:16:29 -04:00
|
|
|
if (IS_DISCORD_DESKTOP) {
|
|
|
|
const [file] = await DiscordNative.fileManager.openFiles({
|
|
|
|
filters: [
|
|
|
|
{ name: "Vencord Settings Backup", extensions: ["json"] },
|
|
|
|
{ name: "all", extensions: ["*"] }
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
try {
|
|
|
|
await importSettings(new TextDecoder().decode(file.data));
|
|
|
|
if (showToast) toastSuccess();
|
|
|
|
} catch (err) {
|
|
|
|
new Logger("SettingsSync").error(err);
|
|
|
|
if (showToast) toastFailure(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2023-07-25 19:27:04 -04:00
|
|
|
const file = await chooseFile("application/json");
|
|
|
|
if (!file) return;
|
2022-11-21 13:25:40 -05:00
|
|
|
|
2023-07-25 19:27:04 -04:00
|
|
|
const reader = new FileReader();
|
|
|
|
reader.onload = async () => {
|
|
|
|
try {
|
|
|
|
await importSettings(reader.result as string);
|
|
|
|
if (showToast) toastSuccess();
|
|
|
|
} catch (err) {
|
|
|
|
new Logger("SettingsSync").error(err);
|
|
|
|
if (showToast) toastFailure(err);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
reader.readAsText(file);
|
2022-11-21 13:25:40 -05:00
|
|
|
}
|
|
|
|
}
|
2023-04-06 20:27:18 -04:00
|
|
|
|
|
|
|
// Cloud settings
|
|
|
|
const cloudSettingsLogger = new Logger("Cloud:Settings", "#39b7e0");
|
|
|
|
|
2023-07-04 11:59:42 -04:00
|
|
|
export async function putCloudSettings(manual?: boolean) {
|
2023-07-04 11:57:28 -04:00
|
|
|
const settings = await exportSettings({ minify: true });
|
2023-04-06 20:27:18 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
const res = await fetch(new URL("/v1/settings", getCloudUrl()), {
|
|
|
|
method: "PUT",
|
2024-02-29 19:26:32 -05:00
|
|
|
headers: {
|
2023-04-06 20:27:18 -04:00
|
|
|
Authorization: await getCloudAuth(),
|
|
|
|
"Content-Type": "application/octet-stream"
|
2024-02-29 19:26:32 -05:00
|
|
|
},
|
2023-04-06 20:27:18 -04:00
|
|
|
body: deflateSync(new TextEncoder().encode(settings))
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!res.ok) {
|
|
|
|
cloudSettingsLogger.error(`Failed to sync up, API returned ${res.status}`);
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: `Could not synchronize settings to cloud (API returned ${res.status}).`,
|
|
|
|
color: "var(--red-360)"
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { written } = await res.json();
|
|
|
|
PlainSettings.cloud.settingsSyncVersion = written;
|
2024-03-13 16:45:45 -04:00
|
|
|
VencordNative.settings.set(PlainSettings);
|
2023-04-06 20:27:18 -04:00
|
|
|
|
|
|
|
cloudSettingsLogger.info("Settings uploaded to cloud successfully");
|
2023-07-04 11:59:42 -04:00
|
|
|
|
|
|
|
if (manual) {
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: "Synchronized settings to the cloud!",
|
|
|
|
noPersist: true,
|
|
|
|
});
|
|
|
|
}
|
2023-04-06 20:27:18 -04:00
|
|
|
} catch (e: any) {
|
|
|
|
cloudSettingsLogger.error("Failed to sync up", e);
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: `Could not synchronize settings to the cloud (${e.toString()}).`,
|
|
|
|
color: "var(--red-360)"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getCloudSettings(shouldNotify = true, force = false) {
|
|
|
|
try {
|
|
|
|
const res = await fetch(new URL("/v1/settings", getCloudUrl()), {
|
|
|
|
method: "GET",
|
2024-02-29 19:26:32 -05:00
|
|
|
headers: {
|
2023-04-06 20:27:18 -04:00
|
|
|
Authorization: await getCloudAuth(),
|
|
|
|
Accept: "application/octet-stream",
|
|
|
|
"If-None-Match": Settings.cloud.settingsSyncVersion.toString()
|
2024-02-29 19:26:32 -05:00
|
|
|
},
|
2023-04-06 20:27:18 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
if (res.status === 404) {
|
|
|
|
cloudSettingsLogger.info("No settings on the cloud");
|
|
|
|
if (shouldNotify)
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
2023-04-13 13:15:36 -04:00
|
|
|
body: "There are no settings in the cloud.",
|
|
|
|
noPersist: true
|
2023-04-06 20:27:18 -04:00
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res.status === 304) {
|
|
|
|
cloudSettingsLogger.info("Settings up to date");
|
|
|
|
if (shouldNotify)
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
2023-04-13 13:15:36 -04:00
|
|
|
body: "Your settings are up to date.",
|
|
|
|
noPersist: true
|
2023-04-06 20:27:18 -04:00
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!res.ok) {
|
|
|
|
cloudSettingsLogger.error(`Failed to sync down, API returned ${res.status}`);
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: `Could not synchronize settings from the cloud (API returned ${res.status}).`,
|
|
|
|
color: "var(--red-360)"
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const written = Number(res.headers.get("etag")!);
|
|
|
|
const localWritten = Settings.cloud.settingsSyncVersion;
|
|
|
|
|
|
|
|
// don't need to check for written > localWritten because the server will return 304 due to if-none-match
|
|
|
|
if (!force && written < localWritten) {
|
|
|
|
if (shouldNotify)
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
2023-04-13 13:15:36 -04:00
|
|
|
body: "Your local settings are newer than the cloud ones.",
|
|
|
|
noPersist: true,
|
2023-04-06 20:27:18 -04:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = await res.arrayBuffer();
|
|
|
|
|
|
|
|
const settings = new TextDecoder().decode(inflateSync(new Uint8Array(data)));
|
|
|
|
await importSettings(settings);
|
|
|
|
|
|
|
|
// sync with server timestamp instead of local one
|
|
|
|
PlainSettings.cloud.settingsSyncVersion = written;
|
2024-03-13 16:45:45 -04:00
|
|
|
VencordNative.settings.set(PlainSettings);
|
2023-04-06 20:27:18 -04:00
|
|
|
|
|
|
|
cloudSettingsLogger.info("Settings loaded from cloud successfully");
|
|
|
|
if (shouldNotify)
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: "Your settings have been updated! Click here to restart to fully apply changes!",
|
|
|
|
color: "var(--green-360)",
|
2023-09-23 19:16:41 -04:00
|
|
|
onClick: IS_WEB ? () => location.reload() : relaunch,
|
2023-04-13 13:15:36 -04:00
|
|
|
noPersist: true
|
2023-04-06 20:27:18 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} catch (e: any) {
|
|
|
|
cloudSettingsLogger.error("Failed to sync down", e);
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: `Could not synchronize settings from the cloud (${e.toString()}).`,
|
|
|
|
color: "var(--red-360)"
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function deleteCloudSettings() {
|
|
|
|
try {
|
|
|
|
const res = await fetch(new URL("/v1/settings", getCloudUrl()), {
|
|
|
|
method: "DELETE",
|
2024-02-29 19:26:32 -05:00
|
|
|
headers: { Authorization: await getCloudAuth() },
|
2023-04-06 20:27:18 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!res.ok) {
|
|
|
|
cloudSettingsLogger.error(`Failed to delete, API returned ${res.status}`);
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: `Could not delete settings (API returned ${res.status}).`,
|
|
|
|
color: "var(--red-360)"
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cloudSettingsLogger.info("Settings deleted from cloud successfully");
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: "Settings deleted from cloud!",
|
|
|
|
color: "var(--green-360)"
|
|
|
|
});
|
|
|
|
} catch (e: any) {
|
|
|
|
cloudSettingsLogger.error("Failed to delete", e);
|
|
|
|
showNotification({
|
|
|
|
title: "Cloud Settings",
|
|
|
|
body: `Could not delete settings (${e.toString()}).`,
|
|
|
|
color: "var(--red-360)"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|