electron/lib/browser/api/protocol.js

28 lines
777 B
JavaScript
Raw Normal View History

2018-09-13 16:10:51 +00:00
const { app, session } = require('electron')
2016-01-12 02:40:23 +00:00
// Global protocol APIs.
module.exports = process.atomBinding('protocol')
2016-01-12 02:40:23 +00:00
// Fallback protocol APIs of default session.
Object.setPrototypeOf(module.exports, new Proxy({}, {
get (target, property) {
if (!app.isReady()) return
const protocol = session.defaultSession.protocol
2016-08-02 12:02:28 +00:00
if (!Object.getPrototypeOf(protocol).hasOwnProperty(property)) return
// Returning a native function directly would throw error.
return (...args) => protocol[property](...args)
},
ownKeys () {
if (!app.isReady()) return []
2016-08-02 12:02:28 +00:00
return Object.getOwnPropertyNames(Object.getPrototypeOf(session.defaultSession.protocol))
},
getOwnPropertyDescriptor (target) {
return { configurable: true, enumerable: true }
}
}))