From 9240865f65112f9fee5187e9f5fcdd5ed2758285 Mon Sep 17 00:00:00 2001 From: CanadaHonk <19228318+CanadaHonk@users.noreply.github.com> Date: Sun, 20 Nov 2022 15:21:42 +0000 Subject: [PATCH] feat(arRPC): update for server 2.0 (#224) --- src/plugins/arRPC.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/plugins/arRPC.tsx b/src/plugins/arRPC.tsx index bfacb6f60..54a74734d 100644 --- a/src/plugins/arRPC.tsx +++ b/src/plugins/arRPC.tsx @@ -16,12 +16,24 @@ * along with this program. If not, see . */ -import { popNotice,showNotice } from "../api/Notices"; +import { popNotice, showNotice } from "../api/Notices"; import { Link } from "../components/Link"; import { Devs } from "../utils/constants"; import definePlugin from "../utils/types"; +import { Webpack } from "../Vencord"; import { FluxDispatcher, Forms, Toasts } from "../webpack/common"; +const assetManager = Webpack.mapMangledModuleLazy( + "getAssetImage: size must === [number, number] for Twitch", + { + getAsset: Webpack.filters.byCode("apply("), + } +); + +async function lookupAsset(applicationId: string, key: string): Promise { + return (await assetManager.getAsset(applicationId, [key, undefined]))[0]; +} + let ws: WebSocket; export default definePlugin({ name: "WebRichPresence (arRPC)", @@ -42,8 +54,12 @@ export default definePlugin({ if (ws) ws.close(); ws = new WebSocket("ws://127.0.0.1:1337"); // try to open WebSocket - ws.onmessage = e => { // on message, set status to data + ws.onmessage = async e => { // on message, set status to data const data = JSON.parse(e.data); + + if (data.activity?.assets?.large_image) data.activity.assets.large_image = await lookupAsset(data.activity.application_id, data.activity.assets.large_image); + if (data.activity?.assets?.small_image) data.activity.assets.small_image = await lookupAsset(data.activity.application_id, data.activity.assets.small_image); + FluxDispatcher.dispatch({ type: "LOCAL_ACTIVITY_UPDATE", ...data }); };