2023-01-18 22:47:40 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2023-08-25 12:30:12 +00:00
|
|
|
import { definePluginSettings, Settings } from "@api/Settings";
|
2023-01-18 22:47:40 +00:00
|
|
|
import { Link } from "@components/Link";
|
|
|
|
import { Devs } from "@utils/constants";
|
2023-02-28 05:12:35 +00:00
|
|
|
import { isTruthy } from "@utils/guards";
|
2023-05-05 23:36:00 +00:00
|
|
|
import { useAwaiter } from "@utils/react";
|
2023-01-18 22:47:40 +00:00
|
|
|
import definePlugin, { OptionType } from "@utils/types";
|
|
|
|
import { filters, findByCodeLazy, findByPropsLazy, mapMangledModuleLazy } from "@webpack";
|
2023-08-01 03:27:35 +00:00
|
|
|
import { FluxDispatcher, Forms, GuildStore, React, SelectedChannelStore, SelectedGuildStore, UserStore } from "@webpack/common";
|
2023-01-18 22:47:40 +00:00
|
|
|
|
|
|
|
const ActivityComponent = findByCodeLazy("onOpenGameProfile");
|
|
|
|
const ActivityClassName = findByPropsLazy("activity", "buttonColor");
|
|
|
|
const Colors = findByPropsLazy("profileColors");
|
|
|
|
|
|
|
|
const assetManager = mapMangledModuleLazy(
|
|
|
|
"getAssetImage: size must === [number, number] for Twitch",
|
|
|
|
{
|
|
|
|
getAsset: filters.byCode("apply("),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
async function getApplicationAsset(key: string): Promise<string> {
|
2023-08-01 03:27:35 +00:00
|
|
|
if (/https?:\/\/(cdn|media)\.discordapp\.(com|net)\/attachments\//.test(key)) return "mp:" + key.replace(/https?:\/\/(cdn|media)\.discordapp\.(com|net)\//, "");
|
2023-01-18 22:47:40 +00:00
|
|
|
return (await assetManager.getAsset(settings.store.appID, [key, undefined]))[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ActivityAssets {
|
|
|
|
large_image?: string;
|
|
|
|
large_text?: string;
|
|
|
|
small_image?: string;
|
|
|
|
small_text?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface Activity {
|
2023-02-28 05:12:35 +00:00
|
|
|
state?: string;
|
2023-01-18 22:47:40 +00:00
|
|
|
details?: string;
|
|
|
|
timestamps?: {
|
2023-02-28 05:12:35 +00:00
|
|
|
start?: number;
|
|
|
|
end?: number;
|
2023-01-18 22:47:40 +00:00
|
|
|
};
|
|
|
|
assets?: ActivityAssets;
|
|
|
|
buttons?: Array<string>;
|
|
|
|
name: string;
|
|
|
|
application_id: string;
|
|
|
|
metadata?: {
|
|
|
|
button_urls?: Array<string>;
|
|
|
|
};
|
|
|
|
type: ActivityType;
|
2023-08-01 03:27:35 +00:00
|
|
|
url?: string;
|
2023-02-28 05:12:35 +00:00
|
|
|
flags: number;
|
2023-01-18 22:47:40 +00:00
|
|
|
}
|
|
|
|
|
2023-06-13 00:36:25 +00:00
|
|
|
const enum ActivityType {
|
2023-01-18 22:47:40 +00:00
|
|
|
PLAYING = 0,
|
2023-08-01 03:27:35 +00:00
|
|
|
STREAMING = 1,
|
2023-01-18 22:47:40 +00:00
|
|
|
LISTENING = 2,
|
|
|
|
WATCHING = 3,
|
|
|
|
COMPETING = 5
|
|
|
|
}
|
|
|
|
|
2023-08-01 03:27:35 +00:00
|
|
|
const enum TimestampMode {
|
|
|
|
NONE,
|
|
|
|
NOW,
|
|
|
|
TIME,
|
|
|
|
CUSTOM,
|
|
|
|
}
|
2023-01-18 22:47:40 +00:00
|
|
|
|
|
|
|
const settings = definePluginSettings({
|
2023-08-01 03:27:35 +00:00
|
|
|
appID: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Application ID (required)",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (!value) return "Application ID is required.";
|
|
|
|
if (value && !/^\d+$/.test(value)) return "Application ID must be a number.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
appName: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Application name (required)",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (!value) return "Application name is required.";
|
|
|
|
if (value.length > 128) return "Application name must be not longer than 128 characters.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
details: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Details (line 1)",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (value && value.length > 128) return "Details (line 1) must be not longer than 128 characters.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
state: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "State (line 2)",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (value && value.length > 128) return "State (line 2) must be not longer than 128 characters.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: OptionType.SELECT,
|
|
|
|
description: "Activity type",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: "Playing",
|
|
|
|
value: ActivityType.PLAYING,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Streaming",
|
|
|
|
value: ActivityType.STREAMING
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Listening",
|
|
|
|
value: ActivityType.LISTENING
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Watching",
|
|
|
|
value: ActivityType.WATCHING
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Competing",
|
|
|
|
value: ActivityType.COMPETING
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
streamLink: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Twitch.tv or Youtube.com link (only for Streaming activity type)",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
|
|
|
disabled: isStreamLinkDisabled,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: isStreamLinkValid
|
|
|
|
},
|
|
|
|
timestampMode: {
|
|
|
|
type: OptionType.SELECT,
|
|
|
|
description: "Timestamp mode",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: "None",
|
|
|
|
value: TimestampMode.NONE,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Since discord open",
|
|
|
|
value: TimestampMode.NOW
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Same as your current time",
|
|
|
|
value: TimestampMode.TIME
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Custom",
|
|
|
|
value: TimestampMode.CUSTOM
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
startTime: {
|
|
|
|
type: OptionType.NUMBER,
|
|
|
|
description: "Start timestamp (only for custom timestamp mode)",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
|
|
|
disabled: isTimestampDisabled,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: number) => {
|
|
|
|
if (value && value < 0) return "Start timestamp must be greater than 0.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
endTime: {
|
|
|
|
type: OptionType.NUMBER,
|
|
|
|
description: "End timestamp (only for custom timestamp mode)",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
|
|
|
disabled: isTimestampDisabled,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: number) => {
|
|
|
|
if (value && value < 0) return "End timestamp must be greater than 0.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
imageBig: {
|
|
|
|
type: OptionType.STRING,
|
2023-08-25 12:30:12 +00:00
|
|
|
description: "Big image key/link",
|
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: isImageKeyValid
|
|
|
|
},
|
|
|
|
imageBigTooltip: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Big image tooltip",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (value && value.length > 128) return "Big image tooltip must be not longer than 128 characters.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
imageSmall: {
|
|
|
|
type: OptionType.STRING,
|
2023-08-25 12:30:12 +00:00
|
|
|
description: "Small image key/link",
|
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: isImageKeyValid
|
|
|
|
},
|
|
|
|
imageSmallTooltip: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Small image tooltip",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (value && value.length > 128) return "Small image tooltip must be not longer than 128 characters.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
buttonOneText: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Button 1 text",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (value && value.length > 31) return "Button 1 text must be not longer than 31 characters.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
buttonOneURL: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Button 1 URL",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange
|
2023-08-01 03:27:35 +00:00
|
|
|
},
|
|
|
|
buttonTwoText: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Button 2 text",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange,
|
2023-08-01 03:27:35 +00:00
|
|
|
isValid: (value: string) => {
|
|
|
|
if (value && value.length > 31) return "Button 2 text must be not longer than 31 characters.";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
buttonTwoURL: {
|
|
|
|
type: OptionType.STRING,
|
|
|
|
description: "Button 2 URL",
|
2023-08-25 12:30:12 +00:00
|
|
|
onChange: onChange
|
2023-08-01 03:27:35 +00:00
|
|
|
}
|
2023-01-18 22:47:40 +00:00
|
|
|
});
|
|
|
|
|
2023-08-25 12:30:12 +00:00
|
|
|
function onChange() {
|
|
|
|
setRpc(true);
|
|
|
|
if (Settings.plugins.CustomRPC.enabled) setRpc();
|
|
|
|
}
|
|
|
|
|
|
|
|
function isStreamLinkDisabled() {
|
2023-08-01 03:27:35 +00:00
|
|
|
return settings.store.type !== ActivityType.STREAMING;
|
|
|
|
}
|
|
|
|
|
2023-08-25 12:30:12 +00:00
|
|
|
function isStreamLinkValid(value: string) {
|
|
|
|
if (!isStreamLinkDisabled() && !/https?:\/\/(www\.)?(twitch\.tv|youtube\.com)\/\w+/.test(value)) return "Streaming link must be a valid URL.";
|
2023-08-01 03:27:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-08-25 12:30:12 +00:00
|
|
|
function isTimestampDisabled() {
|
2023-08-01 03:27:35 +00:00
|
|
|
return settings.store.timestampMode !== TimestampMode.CUSTOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
function isImageKeyValid(value: string) {
|
|
|
|
if (/https?:\/\/(?!i\.)?imgur\.com\//.test(value)) return "Imgur link must be a direct link to the image. (e.g. https://i.imgur.com/...)";
|
|
|
|
if (/https?:\/\/(?!media\.)?tenor\.com\//.test(value)) return "Tenor link must be a direct link to the image. (e.g. https://media.tenor.com/...)";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-18 22:47:40 +00:00
|
|
|
async function createActivity(): Promise<Activity | undefined> {
|
|
|
|
const {
|
|
|
|
appID,
|
|
|
|
appName,
|
|
|
|
details,
|
|
|
|
state,
|
|
|
|
type,
|
2023-08-01 03:27:35 +00:00
|
|
|
streamLink,
|
2023-01-18 22:47:40 +00:00
|
|
|
startTime,
|
|
|
|
endTime,
|
|
|
|
imageBig,
|
|
|
|
imageBigTooltip,
|
|
|
|
imageSmall,
|
|
|
|
imageSmallTooltip,
|
|
|
|
buttonOneText,
|
|
|
|
buttonOneURL,
|
|
|
|
buttonTwoText,
|
|
|
|
buttonTwoURL
|
|
|
|
} = settings.store;
|
|
|
|
|
|
|
|
if (!appName) return;
|
|
|
|
|
|
|
|
const activity: Activity = {
|
|
|
|
application_id: appID || "0",
|
|
|
|
name: appName,
|
|
|
|
state,
|
|
|
|
details,
|
|
|
|
type,
|
|
|
|
flags: 1 << 0,
|
|
|
|
};
|
|
|
|
|
2023-08-01 03:27:35 +00:00
|
|
|
if (type === ActivityType.STREAMING) activity.url = streamLink;
|
|
|
|
|
|
|
|
switch (settings.store.timestampMode) {
|
|
|
|
case TimestampMode.NOW:
|
|
|
|
activity.timestamps = {
|
|
|
|
start: Math.floor(Date.now() / 1000)
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case TimestampMode.TIME:
|
|
|
|
activity.timestamps = {
|
|
|
|
start: Math.floor(Date.now() / 1000) - (new Date().getHours() * 3600) - (new Date().getMinutes() * 60) - new Date().getSeconds()
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case TimestampMode.CUSTOM:
|
2023-08-25 12:30:12 +00:00
|
|
|
if (startTime || endTime) {
|
|
|
|
activity.timestamps = {};
|
|
|
|
if (startTime) activity.timestamps.start = startTime;
|
|
|
|
if (endTime) activity.timestamps.end = endTime;
|
2023-08-01 03:27:35 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TimestampMode.NONE:
|
|
|
|
default:
|
|
|
|
break;
|
2023-01-18 22:47:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (buttonOneText) {
|
|
|
|
activity.buttons = [
|
|
|
|
buttonOneText,
|
|
|
|
buttonTwoText
|
2023-02-28 05:12:35 +00:00
|
|
|
].filter(isTruthy);
|
2023-01-18 22:47:40 +00:00
|
|
|
|
|
|
|
activity.metadata = {
|
|
|
|
button_urls: [
|
|
|
|
buttonOneURL,
|
|
|
|
buttonTwoURL
|
2023-02-28 05:12:35 +00:00
|
|
|
].filter(isTruthy)
|
2023-01-18 22:47:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imageBig) {
|
|
|
|
activity.assets = {
|
|
|
|
large_image: await getApplicationAsset(imageBig),
|
2023-08-01 03:27:35 +00:00
|
|
|
large_text: imageBigTooltip || undefined
|
2023-01-18 22:47:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imageSmall) {
|
|
|
|
activity.assets = {
|
|
|
|
...activity.assets,
|
|
|
|
small_image: await getApplicationAsset(imageSmall),
|
2023-08-01 03:27:35 +00:00
|
|
|
small_text: imageSmallTooltip || undefined
|
2023-01-18 22:47:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (const k in activity) {
|
2023-08-01 03:27:35 +00:00
|
|
|
if (k === "type") continue;
|
2023-01-18 22:47:40 +00:00
|
|
|
const v = activity[k];
|
|
|
|
if (!v || v.length === 0)
|
|
|
|
delete activity[k];
|
|
|
|
}
|
|
|
|
|
|
|
|
return activity;
|
|
|
|
}
|
|
|
|
|
2023-02-28 05:12:35 +00:00
|
|
|
async function setRpc(disable?: boolean) {
|
2023-01-18 22:47:40 +00:00
|
|
|
const activity: Activity | undefined = await createActivity();
|
|
|
|
|
|
|
|
FluxDispatcher.dispatch({
|
|
|
|
type: "LOCAL_ACTIVITY_UPDATE",
|
2023-03-25 03:00:27 +00:00
|
|
|
activity: !disable ? activity : null,
|
|
|
|
socketId: "CustomRPC",
|
2023-01-18 22:47:40 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "CustomRPC",
|
|
|
|
description: "Allows you to set a custom rich presence.",
|
2023-08-01 03:27:35 +00:00
|
|
|
authors: [Devs.captain, Devs.AutumnVN],
|
2023-01-18 22:47:40 +00:00
|
|
|
start: setRpc,
|
|
|
|
stop: () => setRpc(true),
|
|
|
|
settings,
|
|
|
|
|
|
|
|
settingsAboutComponent: () => {
|
|
|
|
const activity = useAwaiter(createActivity);
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Forms.FormText>
|
2023-08-01 03:27:35 +00:00
|
|
|
Go to <Link href="https://discord.com/developers/applications">Discord Deverloper Portal</Link> to create an application and
|
|
|
|
get the application ID.
|
|
|
|
</Forms.FormText>
|
|
|
|
<Forms.FormText>
|
|
|
|
Upload images in the Rich Presence tab to get the image keys.
|
|
|
|
</Forms.FormText>
|
|
|
|
<Forms.FormText>
|
|
|
|
If you want to use image link, download your image and reupload the image to <Link href="https://imgur.com">Imgur</Link> and get the image link by right-clicking the image and select "Copy image address".
|
2023-01-18 22:47:40 +00:00
|
|
|
</Forms.FormText>
|
|
|
|
<Forms.FormDivider />
|
|
|
|
<div style={{ width: "284px" }} className={Colors.profileColors}>
|
|
|
|
{activity[0] && <ActivityComponent activity={activity[0]} className={ActivityClassName.activity} channelId={SelectedChannelStore.getChannelId()}
|
|
|
|
guild={GuildStore.getGuild(SelectedGuildStore.getLastSelectedGuildId())}
|
|
|
|
application={{ id: settings.store.appID }}
|
|
|
|
user={UserStore.getCurrentUser()} />}
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|