diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-16 13:55:20 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-16 13:55:20 +1000 |
commit | ab107ca4e8db671e689254cc22bdf7d56430b987 (patch) | |
tree | 4a4c5033670df79e45d5d447b7e8c5566d0f4081 | |
parent | hmm (diff) | |
download | server-ab107ca4e8db671e689254cc22bdf7d56430b987.tar.xz |
Forgot the webrtc client plugin
-rw-r--r-- | api/assets/preload-plugins/webrtc.js | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/api/assets/preload-plugins/webrtc.js b/api/assets/preload-plugins/webrtc.js new file mode 100644 index 00000000..1acd443a --- /dev/null +++ b/api/assets/preload-plugins/webrtc.js @@ -0,0 +1,74 @@ +(this.webpackChunkdiscord_app = this.webpackChunkdiscord_app || []).push([ + [[228974]], + { + 632540: (module, exports, req) => { + window.find = (filter, options = {}) => { + const { cacheOnly = false } = options; + for (let i in req.c) { + if (req.c.hasOwnProperty(i)) { + let m = req.c[i].exports; + if (m && m.__esModule && m.default && filter(m.default)) return m.default; + if (m && filter(m)) return m; + } + } + if (cacheOnly) { + console.warn("Cannot find loaded module in cache"); + return null; + } + console.warn("Cannot find loaded module in cache. Loading all modules may have unexpected side effects"); + for (let i = 0; i < req.m.length; ++i) { + let m = req(i); + if (m && m.__esModule && m.default && filter(m.default)) return m.default; + if (m && filter(m)) return m; + } + console.warn("Cannot find module"); + return null; + }; + window.findByUniqueProperties = (propNames, options) => + find((module) => propNames.every((prop) => module[prop] !== undefined), options); + window.findByDisplayName = (displayName, options) => find((module) => module.displayName === displayName, options); + window.req = req; + + init(); + } + }, + (t) => t(632540) +]); + +function retry(callback) { + return new Promise((resolve) => { + const interval = setInterval(() => { + const mod = callback(); + if (!mod) return; + + clearInterval(interval); + resolve(mod); + }, 50); + }); +} + +async function init() { + const SDP = await retry(() => findByUniqueProperties(["truncateSDP"])); + const StringManipulator = findByUniqueProperties(["uniq"]); + + const truncateSDP = SDP.truncateSDP; + SDP.truncateSDP = (e) => { + const result = truncateSDP(e); + const i = result.codecs.find((x) => x.name === "VP8"); + const a = new RegExp("^a=ice|a=extmap|opus|VP8|fingerprint|" + i?.rtxPayloadType + " rtx", "i"); + return { + sdp: StringManipulator(e) + .split(/\r\n/) + .filter(function (e) { + return a.test(e); + }) + .uniq() + .join("\n"), + codecs: result.codecs + }; + }; + // SDP.generateUnifiedSessionDescription = (e) => { + // console.log(e); + // return new RTCSessionDescription({ sdp: e.baseSDP.replace(/sendonly/g, "recvonly"), type: "answer" }); + // }; +} \ No newline at end of file |