aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV <vendicated@riseup.net>2023-06-29 04:33:28 +0200
committerV <vendicated@riseup.net>2023-06-29 04:33:35 +0200
commit51adb26d01013e737bdb97f7b278df2587fb042b (patch)
treef2b2231f818c2297fbd0c6b7edb26b27d209bafc
parentcb980a1cadc3eeb6b69e62821be951764dd5c806 (diff)
downloadVencord-51adb26d01013e737bdb97f7b278df2587fb042b.tar.gz
Vencord-51adb26d01013e737bdb97f7b278df2587fb042b.tar.bz2
Vencord-51adb26d01013e737bdb97f7b278df2587fb042b.zip
New plugin: OpenInApp - Open spotify urls in spotify app
-rw-r--r--src/plugins/openInApp.ts49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/plugins/openInApp.ts b/src/plugins/openInApp.ts
new file mode 100644
index 0000000..d5e0273
--- /dev/null
+++ b/src/plugins/openInApp.ts
@@ -0,0 +1,49 @@
+/*
+ * Vencord, a modification for Discord's desktop app
+ * Copyright (c) 2023 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/>.
+*/
+
+import { Devs } from "@utils/constants";
+import definePlugin from "@utils/types";
+
+const SpotifyMatcher = /https:\/\/open\.spotify\.com\/(track|album|artist|playlist)\/([^S]+)/;
+
+export default definePlugin({
+ name: "OpenInApp",
+ description: "Open spotify URLs in app",
+ authors: [Devs.Ven],
+
+ patches: [{
+ find: '"MaskedLinkStore"',
+ replacement: {
+ match: /return ((\i)\.apply\(this,arguments\))(?=\}function \i.{0,200}\.trusted)/,
+ replace: "return $self.handleLink(...arguments)||$1"
+ }
+ }],
+
+ handleLink(data: { href: string; }, event: MouseEvent) {
+ if (!data) return;
+
+ const match = SpotifyMatcher.exec(data.href);
+ if (!match) return;
+
+ const [, type, id] = match;
+ VencordNative.native.openExternal(`spotify:${type}:${id}`);
+ event.preventDefault();
+
+ return Promise.resolve();
+ }
+});