2020-06-26 01:05:36 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-08-24 23:48:03 +02:00
|
|
|
import { Browser } from '../server/browser';
|
|
|
|
|
import * as channels from '../protocol/channels';
|
2020-06-26 01:05:36 +02:00
|
|
|
import { BrowserContextDispatcher } from './browserContextDispatcher';
|
2020-07-08 03:47:00 +02:00
|
|
|
import { CDPSessionDispatcher } from './cdpSessionDispatcher';
|
2020-07-01 07:21:17 +02:00
|
|
|
import { Dispatcher, DispatcherScope } from './dispatcher';
|
2020-08-24 23:48:03 +02:00
|
|
|
import { CRBrowser } from '../server/chromium/crBrowser';
|
2020-07-10 00:33:01 +02:00
|
|
|
import { PageDispatcher } from './pageDispatcher';
|
2020-06-26 01:05:36 +02:00
|
|
|
|
2020-08-20 20:25:33 +02:00
|
|
|
export class BrowserDispatcher extends Dispatcher<Browser, channels.BrowserInitializer> implements channels.BrowserChannel {
|
2020-09-03 01:15:43 +02:00
|
|
|
constructor(scope: DispatcherScope, browser: Browser) {
|
2021-01-30 01:00:56 +01:00
|
|
|
super(scope, browser, 'Browser', { version: browser.version(), name: browser.options.name }, true);
|
2020-08-22 01:26:33 +02:00
|
|
|
browser.on(Browser.Events.Disconnected, () => this._didClose());
|
2020-08-13 22:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_didClose() {
|
|
|
|
|
this._dispatchEvent('close');
|
|
|
|
|
this._dispose();
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|
|
|
|
|
|
2020-08-20 20:25:33 +02:00
|
|
|
async newContext(params: channels.BrowserNewContextParams): Promise<channels.BrowserNewContextResult> {
|
2020-11-13 23:24:53 +01:00
|
|
|
const context = await this._object.newContext(params);
|
|
|
|
|
if (params.storageState)
|
|
|
|
|
await context.setStorageState(params.storageState);
|
|
|
|
|
return { context: new BrowserContextDispatcher(this._scope, context) };
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async close(): Promise<void> {
|
2020-06-27 02:24:21 +02:00
|
|
|
await this._object.close();
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|
2020-07-08 03:47:00 +02:00
|
|
|
|
2020-08-20 20:25:33 +02:00
|
|
|
async crNewBrowserCDPSession(): Promise<channels.BrowserCrNewBrowserCDPSessionResult> {
|
2021-01-30 01:00:56 +01:00
|
|
|
if (!this._object.options.isChromium)
|
2020-08-28 19:23:02 +02:00
|
|
|
throw new Error(`CDP session is only available in Chromium`);
|
2020-07-08 03:47:00 +02:00
|
|
|
const crBrowser = this._object as CRBrowser;
|
2020-07-15 03:26:50 +02:00
|
|
|
return { session: new CDPSessionDispatcher(this._scope, await crBrowser.newBrowserCDPSession()) };
|
2020-07-08 03:47:00 +02:00
|
|
|
}
|
2020-07-10 00:33:01 +02:00
|
|
|
|
2020-08-20 20:25:33 +02:00
|
|
|
async crStartTracing(params: channels.BrowserCrStartTracingParams): Promise<void> {
|
2021-01-30 01:00:56 +01:00
|
|
|
if (!this._object.options.isChromium)
|
2020-08-28 19:23:02 +02:00
|
|
|
throw new Error(`Tracing is only available in Chromium`);
|
2020-07-10 00:33:01 +02:00
|
|
|
const crBrowser = this._object as CRBrowser;
|
2020-08-20 20:25:33 +02:00
|
|
|
await crBrowser.startTracing(params.page ? (params.page as PageDispatcher)._object : undefined, params);
|
2020-07-10 00:33:01 +02:00
|
|
|
}
|
|
|
|
|
|
2020-08-20 20:25:33 +02:00
|
|
|
async crStopTracing(): Promise<channels.BrowserCrStopTracingResult> {
|
2021-01-30 01:00:56 +01:00
|
|
|
if (!this._object.options.isChromium)
|
2020-08-28 19:23:02 +02:00
|
|
|
throw new Error(`Tracing is only available in Chromium`);
|
2020-07-10 00:33:01 +02:00
|
|
|
const crBrowser = this._object as CRBrowser;
|
|
|
|
|
const buffer = await crBrowser.stopTracing();
|
2020-07-15 03:26:50 +02:00
|
|
|
return { binary: buffer.toString('base64') };
|
2020-07-10 00:33:01 +02:00
|
|
|
}
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|