forked from CringeStudios/element-desktop

* Support authenticated media downloads in Desktop too We can't use service workers for a variety of reasons/errors, so we instead intercept HTTP(S) requests from the renderer process. With a bit of help from the IPC channels, we're able to emulate what the Element Web ServiceWorker does. The IPC channel is considered "safe" for transmitting sensitive details like the user access token: if we can't trust the IPC, we can't trust much of anything. This is unlike the `postMessage` API in a web browser where browser extensions may be listening: we don't have extensions in this environment. * Remove unused import * Appease the linter
58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
/*
|
|
Copyright 2018, 2019, 2021 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { ipcRenderer, contextBridge, IpcRendererEvent } from "electron";
|
|
|
|
// Expose only expected IPC wrapper APIs to the renderer process to avoid
|
|
// handing out generalised messaging access.
|
|
|
|
const CHANNELS = [
|
|
"app_onAction",
|
|
"before-quit",
|
|
"check_updates",
|
|
"install_update",
|
|
"ipcCall",
|
|
"ipcReply",
|
|
"loudNotification",
|
|
"preferences",
|
|
"seshat",
|
|
"seshatReply",
|
|
"setBadgeCount",
|
|
"update-downloaded",
|
|
"userDownloadCompleted",
|
|
"userDownloadAction",
|
|
"openDesktopCapturerSourcePicker",
|
|
"userAccessToken",
|
|
"serverSupportedVersions",
|
|
];
|
|
|
|
contextBridge.exposeInMainWorld("electron", {
|
|
on(channel: string, listener: (event: IpcRendererEvent, ...args: any[]) => void): void {
|
|
if (!CHANNELS.includes(channel)) {
|
|
console.error(`Unknown IPC channel ${channel} ignored`);
|
|
return;
|
|
}
|
|
ipcRenderer.on(channel, listener);
|
|
},
|
|
send(channel: string, ...args: any[]): void {
|
|
if (!CHANNELS.includes(channel)) {
|
|
console.error(`Unknown IPC channel ${channel} ignored`);
|
|
return;
|
|
}
|
|
ipcRenderer.send(channel, ...args);
|
|
},
|
|
});
|