2016-08-12 20:01:30 +00:00
|
|
|
|
# session
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2016-04-22 17:30:49 +00:00
|
|
|
|
> Manage browser sessions, cookies, cache, proxy settings, etc.
|
2016-04-21 22:35:29 +00:00
|
|
|
|
|
2016-11-23 19:20:56 +00:00
|
|
|
|
Process: [Main](../glossary.md#main-process)
|
2016-11-03 17:26:00 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
The `session` module can be used to create new `Session` objects.
|
|
|
|
|
|
|
|
|
|
You can also access the `session` of existing pages by using the `session`
|
2016-06-22 07:34:25 +00:00
|
|
|
|
property of [`WebContents`](web-contents.md), or from the `session` module.
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { BrowserWindow } = require('electron')
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
|
let win = new BrowserWindow({ width: 800, height: 600 })
|
2016-06-22 07:34:25 +00:00
|
|
|
|
win.loadURL('http://github.com')
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2016-06-22 07:34:25 +00:00
|
|
|
|
const ses = win.webContents.session
|
2016-07-26 01:39:25 +00:00
|
|
|
|
console.log(ses.getUserAgent())
|
2015-11-19 13:31:39 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Methods
|
|
|
|
|
|
|
|
|
|
The `session` module has the following methods:
|
|
|
|
|
|
2016-08-22 18:47:55 +00:00
|
|
|
|
### `session.fromPartition(partition[, options])`
|
2015-11-19 13:31:39 +00:00
|
|
|
|
|
|
|
|
|
* `partition` String
|
2017-08-15 17:23:36 +00:00
|
|
|
|
* `options` Object (optional)
|
2016-07-12 13:21:49 +00:00
|
|
|
|
* `cache` Boolean - Whether to enable cache.
|
2015-11-19 13:31:39 +00:00
|
|
|
|
|
2016-09-24 23:59:30 +00:00
|
|
|
|
Returns `Session` - A session instance from `partition` string. When there is an existing
|
2017-02-03 13:56:37 +00:00
|
|
|
|
`Session` with the same `partition`, it will be returned; otherwise a new
|
2016-07-12 13:21:49 +00:00
|
|
|
|
`Session` instance will be created with `options`.
|
2015-11-19 13:31:39 +00:00
|
|
|
|
|
|
|
|
|
If `partition` starts with `persist:`, the page will use a persistent session
|
|
|
|
|
available to all pages in the app with the same `partition`. if there is no
|
|
|
|
|
`persist:` prefix, the page will use an in-memory session. If the `partition` is
|
|
|
|
|
empty then default session of the app will be returned.
|
|
|
|
|
|
2016-07-12 13:21:49 +00:00
|
|
|
|
To create a `Session` with `options`, you have to ensure the `Session` with the
|
|
|
|
|
`partition` has never been used before. There is no way to change the `options`
|
|
|
|
|
of an existing `Session` object.
|
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
## Properties
|
|
|
|
|
|
|
|
|
|
The `session` module has the following properties:
|
|
|
|
|
|
2016-08-22 18:47:55 +00:00
|
|
|
|
### `session.defaultSession`
|
2015-11-19 13:31:39 +00:00
|
|
|
|
|
2016-09-24 23:59:30 +00:00
|
|
|
|
A `Session` object, the default session object of the app.
|
2015-11-19 13:31:39 +00:00
|
|
|
|
|
|
|
|
|
## Class: Session
|
|
|
|
|
|
2016-08-22 21:11:03 +00:00
|
|
|
|
> Get and set properties of a session.
|
|
|
|
|
|
2016-11-23 19:20:56 +00:00
|
|
|
|
Process: [Main](../glossary.md#main-process)
|
2016-11-03 18:50:00 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
You can create a `Session` object in the `session` module:
|
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { session } = require('electron')
|
2016-07-26 01:39:25 +00:00
|
|
|
|
const ses = session.fromPartition('persist:name')
|
|
|
|
|
console.log(ses.getUserAgent())
|
2015-08-20 13:17:53 +00:00
|
|
|
|
```
|
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
### Instance Events
|
2015-09-01 10:02:14 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
The following events are available on instances of `Session`:
|
|
|
|
|
|
|
|
|
|
#### Event: 'will-download'
|
2015-09-01 10:02:14 +00:00
|
|
|
|
|
|
|
|
|
* `event` Event
|
2015-09-20 11:08:31 +00:00
|
|
|
|
* `item` [DownloadItem](download-item.md)
|
2015-09-01 12:16:28 +00:00
|
|
|
|
* `webContents` [WebContents](web-contents.md)
|
2015-09-01 10:02:14 +00:00
|
|
|
|
|
2015-11-17 13:36:36 +00:00
|
|
|
|
Emitted when Electron is about to download `item` in `webContents`.
|
2015-09-01 12:16:28 +00:00
|
|
|
|
|
2016-02-02 10:24:51 +00:00
|
|
|
|
Calling `event.preventDefault()` will cancel the download and `item` will not be
|
|
|
|
|
available from next tick of the process.
|
2015-09-01 10:02:14 +00:00
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { session } = require('electron')
|
2016-05-04 17:59:02 +00:00
|
|
|
|
session.defaultSession.on('will-download', (event, item, webContents) => {
|
2016-07-26 01:39:25 +00:00
|
|
|
|
event.preventDefault()
|
2016-05-04 17:59:02 +00:00
|
|
|
|
require('request')(item.getURL(), (data) => {
|
2016-07-26 01:39:25 +00:00
|
|
|
|
require('fs').writeFileSync('/somewhere', data)
|
|
|
|
|
})
|
|
|
|
|
})
|
2015-09-01 10:02:14 +00:00
|
|
|
|
```
|
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
### Instance Methods
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
The following methods are available on instances of `Session`:
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2016-01-14 09:31:54 +00:00
|
|
|
|
#### `ses.getCacheSize(callback)`
|
|
|
|
|
|
|
|
|
|
* `callback` Function
|
|
|
|
|
* `size` Integer - Cache size used in bytes.
|
|
|
|
|
|
2017-02-12 09:06:24 +00:00
|
|
|
|
Callback is invoked with the session's current cache size.
|
2016-01-14 09:31:54 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
#### `ses.clearCache(callback)`
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2017-11-29 10:38:35 +00:00
|
|
|
|
* `callback` Function - Called when operation is done.
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
|
|
|
|
Clears the session’s HTTP cache.
|
|
|
|
|
|
2016-07-15 06:13:56 +00:00
|
|
|
|
#### `ses.clearStorageData([options, callback])`
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
* `options` Object (optional)
|
2017-11-28 17:15:15 +00:00
|
|
|
|
* `origin` String (optional) - Should follow `window.location.origin`’s representation
|
2015-08-26 20:57:42 +00:00
|
|
|
|
`scheme://host:port`.
|
2017-11-28 17:15:15 +00:00
|
|
|
|
* `storages` String[] (optional) - The types of storages to clear, can contain:
|
2016-12-22 17:51:39 +00:00
|
|
|
|
`appcache`, `cookies`, `filesystem`, `indexdb`, `localstorage`,
|
2018-04-13 17:03:16 +00:00
|
|
|
|
`shadercache`, `websql`, `serviceworkers`, `cachestorage`.
|
2017-11-28 17:15:15 +00:00
|
|
|
|
* `quotas` String[] (optional) - The types of quotas to clear, can contain:
|
2015-08-26 20:57:42 +00:00
|
|
|
|
`temporary`, `persistent`, `syncable`.
|
2016-07-15 06:13:56 +00:00
|
|
|
|
* `callback` Function (optional) - Called when operation is done.
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
|
|
|
|
Clears the data of web storages.
|
|
|
|
|
|
2016-01-12 15:28:12 +00:00
|
|
|
|
#### `ses.flushStorageData()`
|
|
|
|
|
|
|
|
|
|
Writes any unwritten DOMStorage data to disk.
|
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
#### `ses.setProxy(config, callback)`
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2016-01-10 22:25:56 +00:00
|
|
|
|
* `config` Object
|
|
|
|
|
* `pacScript` String - The URL associated with the PAC file.
|
|
|
|
|
* `proxyRules` String - Rules indicating which proxies to use.
|
2016-07-21 04:31:08 +00:00
|
|
|
|
* `proxyBypassRules` String - Rules indicating which URLs should
|
|
|
|
|
bypass the proxy settings.
|
2015-08-26 20:57:42 +00:00
|
|
|
|
* `callback` Function - Called when operation is done.
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2016-01-11 14:45:34 +00:00
|
|
|
|
Sets the proxy settings.
|
|
|
|
|
|
2016-01-11 06:54:01 +00:00
|
|
|
|
When `pacScript` and `proxyRules` are provided together, the `proxyRules`
|
|
|
|
|
option is ignored and `pacScript` configuration is applied.
|
|
|
|
|
|
2016-06-08 02:03:01 +00:00
|
|
|
|
The `proxyRules` has to follow the rules below:
|
2016-01-11 14:45:34 +00:00
|
|
|
|
|
2017-11-20 06:18:24 +00:00
|
|
|
|
```sh
|
2016-01-11 14:45:34 +00:00
|
|
|
|
proxyRules = schemeProxies[";"<schemeProxies>]
|
|
|
|
|
schemeProxies = [<urlScheme>"="]<proxyURIList>
|
|
|
|
|
urlScheme = "http" | "https" | "ftp" | "socks"
|
|
|
|
|
proxyURIList = <proxyURL>[","<proxyURIList>]
|
|
|
|
|
proxyURL = [<proxyScheme>"://"]<proxyHost>[":"<proxyPort>]
|
2015-08-20 13:17:53 +00:00
|
|
|
|
```
|
|
|
|
|
|
2016-01-11 14:45:34 +00:00
|
|
|
|
For example:
|
2016-01-29 19:10:18 +00:00
|
|
|
|
|
2016-01-11 14:45:34 +00:00
|
|
|
|
* `http=foopy:80;ftp=foopy2` - Use HTTP proxy `foopy:80` for `http://` URLs, and
|
|
|
|
|
HTTP proxy `foopy2:80` for `ftp://` URLs.
|
|
|
|
|
* `foopy:80` - Use HTTP proxy `foopy:80` for all URLs.
|
|
|
|
|
* `foopy:80,bar,direct://` - Use HTTP proxy `foopy:80` for all URLs, failing
|
|
|
|
|
over to `bar` if `foopy:80` is unavailable, and after that using no proxy.
|
|
|
|
|
* `socks4://foopy` - Use SOCKS v4 proxy `foopy:1080` for all URLs.
|
|
|
|
|
* `http=foopy,socks5://bar.com` - Use HTTP proxy `foopy` for http URLs, and fail
|
|
|
|
|
over to the SOCKS5 proxy `bar.com` if `foopy` is unavailable.
|
|
|
|
|
* `http=foopy,direct://` - Use HTTP proxy `foopy` for http URLs, and use no
|
|
|
|
|
proxy if `foopy` is unavailable.
|
2017-11-29 10:58:24 +00:00
|
|
|
|
* `http=foopy;socks=foopy2` - Use HTTP proxy `foopy` for http URLs, and use
|
2016-01-11 14:45:34 +00:00
|
|
|
|
`socks4://foopy2` for all other URLs.
|
|
|
|
|
|
2016-07-21 04:31:08 +00:00
|
|
|
|
The `proxyBypassRules` is a comma separated list of rules described below:
|
|
|
|
|
|
|
|
|
|
* `[ URL_SCHEME "://" ] HOSTNAME_PATTERN [ ":" <port> ]`
|
|
|
|
|
|
|
|
|
|
Match all hostnames that match the pattern HOSTNAME_PATTERN.
|
|
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
"foobar.com", "*foobar.com", "*.foobar.com", "*foobar.com:99",
|
|
|
|
|
"https://x.*.y.com:99"
|
|
|
|
|
|
|
|
|
|
* `"." HOSTNAME_SUFFIX_PATTERN [ ":" PORT ]`
|
|
|
|
|
|
|
|
|
|
Match a particular domain suffix.
|
|
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
".google.com", ".com", "http://.google.com"
|
|
|
|
|
|
|
|
|
|
* `[ SCHEME "://" ] IP_LITERAL [ ":" PORT ]`
|
|
|
|
|
|
|
|
|
|
Match URLs which are IP address literals.
|
|
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
"127.0.1", "[0:0::1]", "[::1]", "http://[::1]:99"
|
|
|
|
|
|
2018-02-13 05:18:27 +00:00
|
|
|
|
* `IP_LITERAL "/" PREFIX_LENGTH_IN_BITS`
|
2016-07-21 04:31:08 +00:00
|
|
|
|
|
|
|
|
|
Match any URL that is to an IP literal that falls between the
|
|
|
|
|
given range. IP range is specified using CIDR notation.
|
|
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
"192.168.1.1/16", "fefe:13::abc/33".
|
|
|
|
|
|
2018-01-12 15:24:48 +00:00
|
|
|
|
* `<local>`
|
2016-07-21 04:31:08 +00:00
|
|
|
|
|
|
|
|
|
Match local addresses. The meaning of `<local>` is whether the
|
|
|
|
|
host matches one of: "127.0.0.1", "::1", "localhost".
|
|
|
|
|
|
2016-11-25 12:17:31 +00:00
|
|
|
|
#### `ses.resolveProxy(url, callback)`
|
2015-11-19 13:32:46 +00:00
|
|
|
|
|
|
|
|
|
* `url` URL
|
|
|
|
|
* `callback` Function
|
2017-03-07 10:25:40 +00:00
|
|
|
|
* `proxy` String
|
2015-11-19 13:32:46 +00:00
|
|
|
|
|
|
|
|
|
Resolves the proxy information for `url`. The `callback` will be called with
|
|
|
|
|
`callback(proxy)` when the request is performed.
|
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
#### `ses.setDownloadPath(path)`
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
2017-11-29 10:38:35 +00:00
|
|
|
|
* `path` String - The download location.
|
2015-08-20 13:17:53 +00:00
|
|
|
|
|
|
|
|
|
Sets download saving directory. By default, the download directory will be the
|
|
|
|
|
`Downloads` under the respective app folder.
|
2015-09-27 13:19:52 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
#### `ses.enableNetworkEmulation(options)`
|
2015-09-27 13:19:52 +00:00
|
|
|
|
|
|
|
|
|
* `options` Object
|
2016-08-22 21:25:42 +00:00
|
|
|
|
* `offline` Boolean (optional) - Whether to emulate network outage. Defaults
|
|
|
|
|
to false.
|
|
|
|
|
* `latency` Double (optional) - RTT in ms. Defaults to 0 which will disable
|
|
|
|
|
latency throttling.
|
|
|
|
|
* `downloadThroughput` Double (optional) - Download rate in Bps. Defaults to 0
|
|
|
|
|
which will disable download throttling.
|
|
|
|
|
* `uploadThroughput` Double (optional) - Upload rate in Bps. Defaults to 0
|
|
|
|
|
which will disable upload throttling.
|
2015-09-27 13:19:52 +00:00
|
|
|
|
|
|
|
|
|
Emulates network with the given configuration for the `session`.
|
|
|
|
|
|
2015-09-28 07:22:50 +00:00
|
|
|
|
```javascript
|
|
|
|
|
// To emulate a GPRS connection with 50kbps throughput and 500 ms latency.
|
|
|
|
|
window.webContents.session.enableNetworkEmulation({
|
2016-07-26 01:39:25 +00:00
|
|
|
|
latency: 500,
|
|
|
|
|
downloadThroughput: 6400,
|
|
|
|
|
uploadThroughput: 6400
|
|
|
|
|
})
|
2015-09-28 07:22:50 +00:00
|
|
|
|
|
|
|
|
|
// To emulate a network outage.
|
2018-09-13 16:10:51 +00:00
|
|
|
|
window.webContents.session.enableNetworkEmulation({ offline: true })
|
2015-09-28 07:22:50 +00:00
|
|
|
|
```
|
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
#### `ses.disableNetworkEmulation()`
|
2015-09-27 13:19:52 +00:00
|
|
|
|
|
|
|
|
|
Disables any network emulation already active for the `session`. Resets to
|
|
|
|
|
the original network configuration.
|
2015-11-18 03:35:26 +00:00
|
|
|
|
|
2015-11-19 13:31:39 +00:00
|
|
|
|
#### `ses.setCertificateVerifyProc(proc)`
|
2015-11-18 03:35:26 +00:00
|
|
|
|
|
|
|
|
|
* `proc` Function
|
2017-02-08 00:35:37 +00:00
|
|
|
|
* `request` Object
|
|
|
|
|
* `hostname` String
|
|
|
|
|
* `certificate` [Certificate](structures/certificate.md)
|
2017-10-16 09:17:21 +00:00
|
|
|
|
* `verificationResult` String - Verification result from chromium.
|
|
|
|
|
* `errorCode` Integer - Error code.
|
2016-10-13 06:30:57 +00:00
|
|
|
|
* `callback` Function
|
2016-11-09 13:05:46 +00:00
|
|
|
|
* `verificationResult` Integer - Value can be one of certificate error codes
|
|
|
|
|
from [here](https://code.google.com/p/chromium/codesearch#chromium/src/net/base/net_error_list.h).
|
|
|
|
|
Apart from the certificate error codes, the following special codes can be used.
|
2017-11-15 15:24:24 +00:00
|
|
|
|
* `0` - Indicates success and disables Certificate Transparency verification.
|
2016-11-09 13:05:46 +00:00
|
|
|
|
* `-2` - Indicates failure.
|
|
|
|
|
* `-3` - Uses the verification result from chromium.
|
2015-11-18 03:35:26 +00:00
|
|
|
|
|
|
|
|
|
Sets the certificate verify proc for `session`, the `proc` will be called with
|
2017-02-08 00:35:37 +00:00
|
|
|
|
`proc(request, callback)` whenever a server certificate
|
|
|
|
|
verification is requested. Calling `callback(0)` accepts the certificate,
|
|
|
|
|
calling `callback(-2)` rejects it.
|
2015-11-18 03:35:26 +00:00
|
|
|
|
|
|
|
|
|
Calling `setCertificateVerifyProc(null)` will revert back to default certificate
|
|
|
|
|
verify proc.
|
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { BrowserWindow } = require('electron')
|
2016-07-26 01:39:25 +00:00
|
|
|
|
let win = new BrowserWindow()
|
|
|
|
|
|
2017-02-22 10:49:14 +00:00
|
|
|
|
win.webContents.session.setCertificateVerifyProc((request, callback) => {
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { hostname } = request
|
2017-02-22 16:11:21 +00:00
|
|
|
|
if (hostname === 'github.com') {
|
2017-02-22 10:49:14 +00:00
|
|
|
|
callback(0)
|
|
|
|
|
} else {
|
|
|
|
|
callback(-2)
|
|
|
|
|
}
|
2016-07-26 01:39:25 +00:00
|
|
|
|
})
|
2015-11-18 03:35:26 +00:00
|
|
|
|
```
|
2015-12-04 00:03:56 +00:00
|
|
|
|
|
2016-01-31 21:35:34 +00:00
|
|
|
|
#### `ses.setPermissionRequestHandler(handler)`
|
|
|
|
|
|
2017-11-08 05:39:59 +00:00
|
|
|
|
* `handler` Function | null
|
2017-04-10 00:12:15 +00:00
|
|
|
|
* `webContents` [WebContents](web-contents.md) - WebContents requesting the permission.
|
2016-04-22 14:23:15 +00:00
|
|
|
|
* `permission` String - Enum of 'media', 'geolocation', 'notifications', 'midiSysex',
|
2016-04-20 16:55:15 +00:00
|
|
|
|
'pointerLock', 'fullscreen', 'openExternal'.
|
2016-10-13 06:30:57 +00:00
|
|
|
|
* `callback` Function
|
2017-11-29 10:38:35 +00:00
|
|
|
|
* `permissionGranted` Boolean - Allow or deny the permission.
|
2017-11-11 03:27:30 +00:00
|
|
|
|
* `details` Object - Some properties are only available on certain permission types.
|
2017-12-20 01:25:31 +00:00
|
|
|
|
* `externalURL` String - The url of the `openExternal` request.
|
2018-09-13 01:57:23 +00:00
|
|
|
|
* `mediaTypes` String[] - The types of media access being requested, elements can be `video`
|
|
|
|
|
or `audio`
|
2016-01-31 21:35:34 +00:00
|
|
|
|
|
|
|
|
|
Sets the handler which can be used to respond to permission requests for the `session`.
|
2016-02-01 10:03:38 +00:00
|
|
|
|
Calling `callback(true)` will allow the permission and `callback(false)` will reject it.
|
2017-11-08 05:39:59 +00:00
|
|
|
|
To clear the handler, call `setPermissionRequestHandler(null)`.
|
2016-01-31 21:35:34 +00:00
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { session } = require('electron')
|
2016-07-26 01:39:25 +00:00
|
|
|
|
session.fromPartition('some-partition').setPermissionRequestHandler((webContents, permission, callback) => {
|
|
|
|
|
if (webContents.getURL() === 'some-host' && permission === 'notifications') {
|
|
|
|
|
return callback(false) // denied.
|
2016-01-31 21:35:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-26 01:39:25 +00:00
|
|
|
|
callback(true)
|
|
|
|
|
})
|
2016-01-31 21:35:34 +00:00
|
|
|
|
```
|
|
|
|
|
|
2018-08-28 14:05:08 +00:00
|
|
|
|
#### `ses.setPermissionCheckHandler(handler)`
|
|
|
|
|
|
|
|
|
|
* `handler` Function<Boolean> | null
|
|
|
|
|
* `webContents` [WebContents](web-contents.md) - WebContents checking the permission.
|
|
|
|
|
* `permission` String - Enum of 'media'.
|
|
|
|
|
* `requestingOrigin` String - The origin URL of the permission check
|
|
|
|
|
* `details` Object - Some properties are only available on certain permission types.
|
|
|
|
|
* `securityOrigin` String - The security orign of the `media` check.
|
|
|
|
|
* `mediaType` String - The type of media access being requested, can be `video`,
|
|
|
|
|
`audio` or `unknown`
|
|
|
|
|
|
|
|
|
|
Sets the handler which can be used to respond to permission checks for the `session`.
|
|
|
|
|
Returning `true` will allow the permission and `false` will reject it.
|
|
|
|
|
To clear the handler, call `setPermissionCheckHandler(null)`.
|
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { session } = require('electron')
|
2018-08-28 14:05:08 +00:00
|
|
|
|
session.fromPartition('some-partition').setPermissionCheckHandler((webContents, permission) => {
|
|
|
|
|
if (webContents.getURL() === 'some-host' && permission === 'notifications') {
|
|
|
|
|
return false // denied
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
2016-02-01 13:33:23 +00:00
|
|
|
|
#### `ses.clearHostResolverCache([callback])`
|
|
|
|
|
|
|
|
|
|
* `callback` Function (optional) - Called when operation is done.
|
|
|
|
|
|
|
|
|
|
Clears the host resolver cache.
|
|
|
|
|
|
2016-05-23 05:29:55 +00:00
|
|
|
|
#### `ses.allowNTLMCredentialsForDomains(domains)`
|
|
|
|
|
|
2018-02-13 05:18:27 +00:00
|
|
|
|
* `domains` String - A comma-separated list of servers for which
|
2016-05-23 05:29:55 +00:00
|
|
|
|
integrated authentication is enabled.
|
|
|
|
|
|
|
|
|
|
Dynamically sets whether to always send credentials for HTTP NTLM or Negotiate
|
|
|
|
|
authentication.
|
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { session } = require('electron')
|
2016-05-23 05:29:55 +00:00
|
|
|
|
// consider any url ending with `example.com`, `foobar.com`, `baz`
|
|
|
|
|
// for integrated authentication.
|
|
|
|
|
session.defaultSession.allowNTLMCredentialsForDomains('*example.com, *foobar.com, *baz')
|
|
|
|
|
|
|
|
|
|
// consider all urls for integrated authentication.
|
|
|
|
|
session.defaultSession.allowNTLMCredentialsForDomains('*')
|
|
|
|
|
```
|
|
|
|
|
|
2016-06-22 07:05:38 +00:00
|
|
|
|
#### `ses.setUserAgent(userAgent[, acceptLanguages])`
|
|
|
|
|
|
|
|
|
|
* `userAgent` String
|
|
|
|
|
* `acceptLanguages` String (optional)
|
|
|
|
|
|
|
|
|
|
Overrides the `userAgent` and `acceptLanguages` for this session.
|
|
|
|
|
|
|
|
|
|
The `acceptLanguages` must a comma separated ordered list of language codes, for
|
|
|
|
|
example `"en-US,fr,de,ko,zh-CN,ja"`.
|
|
|
|
|
|
|
|
|
|
This doesn't affect existing `WebContents`, and each `WebContents` can use
|
|
|
|
|
`webContents.setUserAgent` to override the session-wide user agent.
|
|
|
|
|
|
|
|
|
|
#### `ses.getUserAgent()`
|
|
|
|
|
|
2016-09-24 23:59:30 +00:00
|
|
|
|
Returns `String` - The user agent for this session.
|
2016-06-22 07:05:38 +00:00
|
|
|
|
|
2016-08-23 05:59:21 +00:00
|
|
|
|
#### `ses.getBlobData(identifier, callback)`
|
2016-08-23 00:59:44 +00:00
|
|
|
|
|
2016-08-31 00:08:32 +00:00
|
|
|
|
* `identifier` String - Valid UUID.
|
2016-08-23 00:59:44 +00:00
|
|
|
|
* `callback` Function
|
|
|
|
|
* `result` Buffer - Blob data.
|
|
|
|
|
|
2016-11-23 08:35:26 +00:00
|
|
|
|
#### `ses.createInterruptedDownload(options)`
|
|
|
|
|
|
|
|
|
|
* `options` Object
|
|
|
|
|
* `path` String - Absolute path of the download.
|
|
|
|
|
* `urlChain` String[] - Complete URL chain for the download.
|
|
|
|
|
* `mimeType` String (optional)
|
|
|
|
|
* `offset` Integer - Start range for the download.
|
|
|
|
|
* `length` Integer - Total length of the download.
|
|
|
|
|
* `lastModified` String - Last-Modified header value.
|
|
|
|
|
* `eTag` String - ETag header value.
|
|
|
|
|
* `startTime` Double (optional) - Time when download was started in
|
|
|
|
|
number of seconds since UNIX epoch.
|
|
|
|
|
|
|
|
|
|
Allows resuming `cancelled` or `interrupted` downloads from previous `Session`.
|
|
|
|
|
The API will generate a [DownloadItem](download-item.md) that can be accessed with the [will-download](#event-will-download)
|
|
|
|
|
event. The [DownloadItem](download-item.md) will not have any `WebContents` associated with it and
|
|
|
|
|
the initial state will be `interrupted`. The download will start only when the
|
|
|
|
|
`resume` API is called on the [DownloadItem](download-item.md).
|
|
|
|
|
|
2016-11-30 20:29:03 +00:00
|
|
|
|
#### `ses.clearAuthCache(options[, callback])`
|
|
|
|
|
|
|
|
|
|
* `options` ([RemovePassword](structures/remove-password.md) | [RemoveClientCertificate](structures/remove-client-certificate.md))
|
2017-11-29 10:38:35 +00:00
|
|
|
|
* `callback` Function (optional) - Called when operation is done.
|
2016-11-30 20:29:03 +00:00
|
|
|
|
|
|
|
|
|
Clears the session’s HTTP authentication cache.
|
|
|
|
|
|
2017-12-05 06:59:15 +00:00
|
|
|
|
#### `ses.setPreloads(preloads)`
|
2017-09-16 15:05:49 +00:00
|
|
|
|
|
2017-12-05 06:59:15 +00:00
|
|
|
|
* `preloads` String[] - An array of absolute path to preload scripts
|
2017-09-16 15:05:49 +00:00
|
|
|
|
|
2017-12-05 06:59:15 +00:00
|
|
|
|
Adds scripts that will be executed on ALL web contents that are associated with
|
2017-09-16 15:05:49 +00:00
|
|
|
|
this session just before normal `preload` scripts run.
|
|
|
|
|
|
|
|
|
|
#### `ses.getPreloads()`
|
|
|
|
|
|
2017-12-05 06:59:15 +00:00
|
|
|
|
Returns `String[]` an array of paths to preload scripts that have been
|
|
|
|
|
registered.
|
2017-09-16 15:05:49 +00:00
|
|
|
|
|
2016-06-22 07:34:25 +00:00
|
|
|
|
### Instance Properties
|
|
|
|
|
|
|
|
|
|
The following properties are available on instances of `Session`:
|
|
|
|
|
|
|
|
|
|
#### `ses.cookies`
|
|
|
|
|
|
2017-04-09 01:50:55 +00:00
|
|
|
|
A [Cookies](cookies.md) object for this session.
|
2016-06-22 07:34:25 +00:00
|
|
|
|
|
2015-12-04 00:03:56 +00:00
|
|
|
|
#### `ses.webRequest`
|
|
|
|
|
|
2017-04-09 01:50:55 +00:00
|
|
|
|
A [WebRequest](web-request.md) object for this session.
|
2016-06-22 07:34:25 +00:00
|
|
|
|
|
|
|
|
|
#### `ses.protocol`
|
|
|
|
|
|
2017-04-09 01:50:55 +00:00
|
|
|
|
A [Protocol](protocol.md) object for this session.
|
2016-06-22 07:34:25 +00:00
|
|
|
|
|
|
|
|
|
```javascript
|
2018-09-13 16:10:51 +00:00
|
|
|
|
const { app, session } = require('electron')
|
2016-06-22 07:34:25 +00:00
|
|
|
|
const path = require('path')
|
|
|
|
|
|
|
|
|
|
app.on('ready', function () {
|
2016-07-26 01:39:25 +00:00
|
|
|
|
const protocol = session.fromPartition('some-partition').protocol
|
2016-06-22 07:34:25 +00:00
|
|
|
|
protocol.registerFileProtocol('atom', function (request, callback) {
|
|
|
|
|
var url = request.url.substr(7)
|
2018-09-13 16:10:51 +00:00
|
|
|
|
callback({ path: path.normalize(`${__dirname}/${url}`) })
|
2016-06-22 07:34:25 +00:00
|
|
|
|
}, function (error) {
|
2016-07-26 01:39:25 +00:00
|
|
|
|
if (error) console.error('Failed to register protocol')
|
2016-06-22 07:34:25 +00:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
```
|
2018-10-04 18:08:56 +00:00
|
|
|
|
|
|
|
|
|
#### `ses.netLog`
|
|
|
|
|
|
|
|
|
|
A [NetLog](net-log.md) object for this session.
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
const { app, session } = require('electron')
|
|
|
|
|
|
2019-02-19 10:48:27 +00:00
|
|
|
|
app.on('ready', async function () {
|
2018-10-04 18:08:56 +00:00
|
|
|
|
const netLog = session.fromPartition('some-partition').netLog
|
|
|
|
|
netLog.startLogging('/path/to/net-log')
|
|
|
|
|
// After some network events
|
2019-02-19 10:48:27 +00:00
|
|
|
|
const path = await netLog.stopLogging()
|
|
|
|
|
console.log('Net-logs written to', path)
|
2018-10-04 18:08:56 +00:00
|
|
|
|
})
|
|
|
|
|
```
|