2016-06-01 10:42:24 +09:00
|
|
|
const {EventEmitter} = require('events')
|
2016-06-01 10:53:06 +09:00
|
|
|
const electron = require('electron')
|
2016-03-24 13:15:04 -07:00
|
|
|
const bindings = process.atomBinding('session')
|
2016-06-01 10:42:24 +09:00
|
|
|
|
2016-03-24 13:15:04 -07:00
|
|
|
const PERSIST_PREFIX = 'persist:'
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2016-06-01 10:53:06 +09:00
|
|
|
// Wrapper of binding.fromPartition that checks for ready event.
|
|
|
|
const fromPartition = function (partition, persist) {
|
|
|
|
if (!electron.app.isReady()) {
|
|
|
|
throw new Error('session module can only be used when app is ready')
|
|
|
|
}
|
|
|
|
|
|
|
|
return bindings.fromPartition(partition, persist)
|
|
|
|
}
|
|
|
|
|
2016-01-14 10:35:29 -08:00
|
|
|
// Returns the Session from |partition| string.
|
2016-06-01 10:42:24 +09:00
|
|
|
exports.fromPartition = function (partition = '') {
|
|
|
|
if (partition === '') return exports.defaultSession
|
|
|
|
|
2016-02-21 00:14:34 -08:00
|
|
|
if (partition.startsWith(PERSIST_PREFIX)) {
|
2016-06-01 10:53:06 +09:00
|
|
|
return fromPartition(partition.substr(PERSIST_PREFIX.length), false)
|
2016-01-11 18:40:23 -08:00
|
|
|
} else {
|
2016-06-01 10:53:06 +09:00
|
|
|
return fromPartition(partition, true)
|
2016-01-11 18:40:23 -08:00
|
|
|
}
|
2016-03-24 13:15:04 -07:00
|
|
|
}
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2016-01-14 10:35:29 -08:00
|
|
|
// Returns the default session.
|
2016-01-11 18:40:23 -08:00
|
|
|
Object.defineProperty(exports, 'defaultSession', {
|
|
|
|
enumerable: true,
|
2016-03-24 13:15:04 -07:00
|
|
|
get: function () {
|
2016-06-01 10:53:06 +09:00
|
|
|
return fromPartition('', false)
|
2016-01-11 18:40:23 -08:00
|
|
|
}
|
2016-03-24 13:15:04 -07:00
|
|
|
})
|
2016-06-01 10:42:24 +09:00
|
|
|
|
|
|
|
const wrapSession = function (session) {
|
|
|
|
// Session is an EventEmitter.
|
|
|
|
Object.setPrototypeOf(session, EventEmitter.prototype)
|
|
|
|
}
|
|
|
|
|
|
|
|
bindings._setWrapSession(wrapSession)
|