2020-07-13 09:58:49 -07:00
|
|
|
import { app, session } from 'electron/main';
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2016-07-12 19:27:15 +09:00
|
|
|
// Global protocol APIs.
|
2020-06-22 20:32:45 -07:00
|
|
|
const protocol = process._linkedBinding('electron_browser_protocol');
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2016-07-12 19:27:15 +09:00
|
|
|
// Fallback protocol APIs of default session.
|
2019-02-12 06:22:33 -08:00
|
|
|
Object.setPrototypeOf(protocol, new Proxy({}, {
|
2019-03-07 12:56:02 -08:00
|
|
|
get (_target, property) {
|
2020-03-20 13:28:31 -07:00
|
|
|
if (!app.isReady()) return;
|
2016-07-12 19:39:06 +09:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
const protocol = session.defaultSession!.protocol;
|
2020-03-26 10:34:32 -07:00
|
|
|
if (!Object.prototype.hasOwnProperty.call(protocol, property)) return;
|
2016-07-12 19:39:06 +09:00
|
|
|
|
|
|
|
// Returning a native function directly would throw error.
|
2020-03-20 13:28:31 -07:00
|
|
|
return (...args: any[]) => (protocol[property as keyof Electron.Protocol] as Function)(...args);
|
2016-07-12 19:27:15 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
ownKeys () {
|
2020-03-20 13:28:31 -07:00
|
|
|
if (!app.isReady()) return [];
|
2020-12-16 16:56:53 +09:00
|
|
|
return Reflect.ownKeys(session.defaultSession!.protocol);
|
|
|
|
},
|
2016-07-12 19:39:06 +09:00
|
|
|
|
2020-12-16 16:56:53 +09:00
|
|
|
has: (target, property: string) => {
|
|
|
|
if (!app.isReady()) return false;
|
|
|
|
return Reflect.has(session.defaultSession!.protocol, property);
|
2016-07-12 19:27:15 +09:00
|
|
|
},
|
2016-06-16 16:23:08 -07:00
|
|
|
|
2019-03-07 12:56:02 -08:00
|
|
|
getOwnPropertyDescriptor () {
|
2020-03-20 13:28:31 -07:00
|
|
|
return { configurable: true, enumerable: true };
|
2016-07-12 19:27:15 +09:00
|
|
|
}
|
2020-03-20 13:28:31 -07:00
|
|
|
}));
|
2019-02-12 06:22:33 -08:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
export default protocol;
|