2017-05-15 06:26:37 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2017-12-09 00:53:12 +00:00
|
|
|
buildNode6IfNecessary();
|
|
|
|
|
2017-08-31 04:40:15 +00:00
|
|
|
if (process.env.PUPPETEER_SKIP_CHROMIUM_DOWNLOAD) {
|
|
|
|
console.log('**INFO** Skipping Chromium download. "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD" environment variable was found.');
|
|
|
|
return;
|
|
|
|
}
|
2017-09-26 02:10:46 +00:00
|
|
|
if (process.env.NPM_CONFIG_PUPPETEER_SKIP_CHROMIUM_DOWNLOAD || process.env.npm_config_puppeteer_skip_chromium_download) {
|
|
|
|
console.log('**INFO** Skipping Chromium download. "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD" was set in npm config.');
|
|
|
|
return;
|
|
|
|
}
|
2017-08-31 04:40:15 +00:00
|
|
|
|
2018-02-07 17:31:53 +00:00
|
|
|
const downloadHost = process.env.PUPPETEER_DOWNLOAD_HOST || process.env.npm_config_puppeteer_download_host;
|
|
|
|
|
|
|
|
const puppeteer = require('./index');
|
|
|
|
const browserFetcher = puppeteer.createBrowserFetcher({ host: downloadHost });
|
2017-12-08 21:39:13 +00:00
|
|
|
|
2018-03-30 17:49:48 +00:00
|
|
|
const revision = process.env.PUPPETEER_CHROMIUM_REVISION || process.env.npm_config_puppeteer_chromium_revision
|
|
|
|
|| require('./package.json').puppeteer.chromium_revision;
|
|
|
|
|
2018-02-07 17:31:53 +00:00
|
|
|
const revisionInfo = browserFetcher.revisionInfo(revision);
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-05-15 03:05:41 +00:00
|
|
|
// Do nothing if the revision is already downloaded.
|
2018-02-07 17:31:53 +00:00
|
|
|
if (revisionInfo.local)
|
2017-06-21 20:51:06 +00:00
|
|
|
return;
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-09-09 06:37:22 +00:00
|
|
|
// Override current environment proxy settings with npm configuration, if any.
|
|
|
|
const NPM_HTTPS_PROXY = process.env.npm_config_https_proxy || process.env.npm_config_proxy;
|
|
|
|
const NPM_HTTP_PROXY = process.env.npm_config_http_proxy || process.env.npm_config_proxy;
|
2017-11-08 04:16:22 +00:00
|
|
|
const NPM_NO_PROXY = process.env.npm_config_no_proxy;
|
|
|
|
|
2017-09-09 06:37:22 +00:00
|
|
|
if (NPM_HTTPS_PROXY)
|
|
|
|
process.env.HTTPS_PROXY = NPM_HTTPS_PROXY;
|
|
|
|
if (NPM_HTTP_PROXY)
|
|
|
|
process.env.HTTP_PROXY = NPM_HTTP_PROXY;
|
2017-11-08 04:16:22 +00:00
|
|
|
if (NPM_NO_PROXY)
|
|
|
|
process.env.NO_PROXY = NPM_NO_PROXY;
|
2017-09-09 06:37:22 +00:00
|
|
|
|
2018-02-07 17:31:53 +00:00
|
|
|
browserFetcher.download(revisionInfo.revision, onProgress)
|
|
|
|
.then(() => browserFetcher.localRevisions())
|
2017-09-06 01:41:21 +00:00
|
|
|
.then(onSuccess)
|
2017-08-21 20:34:10 +00:00
|
|
|
.catch(onError);
|
|
|
|
|
2017-09-06 01:41:21 +00:00
|
|
|
/**
|
2018-02-07 17:31:53 +00:00
|
|
|
* @param {!Array<string>}
|
2017-09-06 01:41:21 +00:00
|
|
|
* @return {!Promise}
|
|
|
|
*/
|
2018-02-07 17:31:53 +00:00
|
|
|
function onSuccess(localRevisions) {
|
2017-09-06 01:41:21 +00:00
|
|
|
console.log('Chromium downloaded to ' + revisionInfo.folderPath);
|
2018-02-07 17:31:53 +00:00
|
|
|
localRevisions = localRevisions.filter(revision => revision !== revisionInfo.revision);
|
2017-09-06 01:41:21 +00:00
|
|
|
// Remove previous chromium revisions.
|
2018-02-07 17:31:53 +00:00
|
|
|
const cleanupOldVersions = localRevisions.map(revision => browserFetcher.remove(revision));
|
2017-09-06 01:41:21 +00:00
|
|
|
return Promise.all(cleanupOldVersions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {!Error} error
|
|
|
|
*/
|
2017-08-21 20:34:10 +00:00
|
|
|
function onError(error) {
|
2017-09-02 03:59:28 +00:00
|
|
|
console.error(`ERROR: Failed to download Chromium r${revision}! Set "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD" env variable to skip download.`);
|
2017-09-06 01:41:21 +00:00
|
|
|
console.error(error);
|
2017-09-02 03:59:28 +00:00
|
|
|
process.exit(1);
|
2017-08-21 20:34:10 +00:00
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
let progressBar = null;
|
2018-02-07 17:31:53 +00:00
|
|
|
let lastDownloadedBytes = 0;
|
|
|
|
function onProgress(downloadedBytes, totalBytes) {
|
2017-06-21 20:51:06 +00:00
|
|
|
if (!progressBar) {
|
2018-02-07 17:31:53 +00:00
|
|
|
const ProgressBar = require('progress');
|
|
|
|
progressBar = new ProgressBar(`Downloading Chromium r${revision} - ${toMegabytes(totalBytes)} [:bar] :percent :etas `, {
|
2017-06-21 20:51:06 +00:00
|
|
|
complete: '=',
|
|
|
|
incomplete: ' ',
|
|
|
|
width: 20,
|
2018-02-07 17:31:53 +00:00
|
|
|
total: totalBytes,
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
|
|
|
}
|
2018-02-07 17:31:53 +00:00
|
|
|
const delta = downloadedBytes - lastDownloadedBytes;
|
|
|
|
lastDownloadedBytes = downloadedBytes;
|
2017-06-21 20:51:06 +00:00
|
|
|
progressBar.tick(delta);
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function toMegabytes(bytes) {
|
2017-08-21 23:39:04 +00:00
|
|
|
const mb = bytes / 1024 / 1024;
|
2017-08-17 18:56:11 +00:00
|
|
|
return `${Math.round(mb * 10) / 10} Mb`;
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
|
2017-12-09 00:53:12 +00:00
|
|
|
function buildNode6IfNecessary() {
|
|
|
|
const fs = require('fs');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
// if this package is installed from NPM, then it already has up-to-date node6
|
|
|
|
// folder.
|
|
|
|
if (!fs.existsSync(path.join('utils', 'node6-transform')))
|
|
|
|
return;
|
|
|
|
let asyncawait = true;
|
|
|
|
try {
|
|
|
|
new Function('async function test(){await 1}');
|
|
|
|
} catch (error) {
|
|
|
|
asyncawait = false;
|
|
|
|
}
|
|
|
|
// if async/await is supported, then node6 is not needed.
|
|
|
|
if (asyncawait)
|
|
|
|
return;
|
|
|
|
// Re-build node6/ folder.
|
|
|
|
console.log('Building Puppeteer for Node 6');
|
|
|
|
require(path.join(__dirname, 'utils', 'node6-transform'));
|
|
|
|
}
|