Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

browser.js 8.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /**
  2. Licensed to the Apache Software Foundation (ASF) under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. The ASF licenses this file
  6. to you under the Apache License, Version 2.0 (the
  7. "License"); you may not use this file except in compliance
  8. with the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing,
  11. software distributed under the License is distributed on an
  12. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  13. KIND, either express or implied. See the License for the
  14. specific language governing permissions and limitations
  15. under the License.
  16. */
  17. /* globals Promise: true */
  18. var child_process = require('child_process');
  19. var fs = require('fs');
  20. var open = require('opn');
  21. var which = require('which');
  22. var exec = require('./exec');
  23. var NOT_INSTALLED = 'The browser target is not installed: %target%';
  24. var NOT_SUPPORTED = 'The browser target is not supported: %target%';
  25. /**
  26. * Launches the specified browser with the given URL.
  27. * Based on https://github.com/domenic/opener
  28. * @param {{target: ?string, url: ?string, dataDir: ?string}} opts - parameters:
  29. * target - the target browser - ie, chrome, safari, opera, firefox or chromium
  30. * url - the url to open in the browser
  31. * dataDir - a data dir to provide to Chrome (can be used to force it to open in a new window)
  32. * @return {Promise} Promise to launch the specified browser
  33. */
  34. module.exports = function (opts) {
  35. opts = opts || {};
  36. var target = opts.target || 'default';
  37. var url = opts.url || '';
  38. target = target.toLowerCase();
  39. if (target === 'default') {
  40. open(url);
  41. return Promise.resolve();
  42. } else {
  43. return getBrowser(target, opts.dataDir).then(function (browser) {
  44. var args;
  45. var urlAdded = false;
  46. switch (process.platform) {
  47. case 'darwin':
  48. args = ['open'];
  49. if (target === 'chrome') {
  50. // Chrome needs to be launched in a new window. Other browsers, particularly, opera does not work with this.
  51. args.push('-n');
  52. }
  53. args.push('-a', browser);
  54. break;
  55. case 'win32':
  56. // On Windows, we really want to use the "start" command. But, the rules regarding arguments with spaces, and
  57. // escaping them with quotes, can get really arcane. So the easiest way to deal with this is to pass off the
  58. // responsibility to "cmd /c", which has that logic built in.
  59. //
  60. // Furthermore, if "cmd /c" double-quoted the first parameter, then "start" will interpret it as a window title,
  61. // so we need to add a dummy empty-string window title: http://stackoverflow.com/a/154090/3191
  62. if (target === 'edge') {
  63. browser += ':' + url;
  64. urlAdded = true;
  65. }
  66. args = ['cmd /c start ""', browser];
  67. break;
  68. case 'linux':
  69. // if a browser is specified, launch it with the url as argument
  70. // otherwise, use xdg-open.
  71. args = [browser];
  72. break;
  73. }
  74. if (!urlAdded) {
  75. args.push(url);
  76. }
  77. var command = args.join(' ');
  78. var result = exec(command);
  79. result.catch(function () {
  80. // Assume any error means that the browser is not installed and display that as a more friendly error.
  81. throw new Error(NOT_INSTALLED.replace('%target%', target));
  82. });
  83. return result;
  84. // return exec(command).catch(function (error) {
  85. // // Assume any error means that the browser is not installed and display that as a more friendly error.
  86. // throw new Error(NOT_INSTALLED.replace('%target%', target));
  87. // });
  88. });
  89. }
  90. };
  91. function getBrowser (target, dataDir) {
  92. dataDir = dataDir || 'temp_chrome_user_data_dir_for_cordova';
  93. var chromeArgs = ' --user-data-dir=/tmp/' + dataDir;
  94. var browsers = {
  95. 'win32': {
  96. 'ie': 'iexplore',
  97. 'chrome': 'chrome --user-data-dir=%TEMP%\\' + dataDir,
  98. 'safari': 'safari',
  99. 'opera': 'opera',
  100. 'firefox': 'firefox',
  101. 'edge': 'microsoft-edge'
  102. },
  103. 'darwin': {
  104. 'chrome': '"Google Chrome" --args' + chromeArgs,
  105. 'safari': 'safari',
  106. 'firefox': 'firefox',
  107. 'opera': 'opera'
  108. },
  109. 'linux': {
  110. 'chrome': 'google-chrome' + chromeArgs,
  111. 'chromium': 'chromium-browser' + chromeArgs,
  112. 'firefox': 'firefox',
  113. 'opera': 'opera'
  114. }
  115. };
  116. if (target in browsers[process.platform]) {
  117. var browser = browsers[process.platform][target];
  118. return checkBrowserExistsWindows(browser, target).then(function () {
  119. return Promise.resolve(browser);
  120. });
  121. } else {
  122. return Promise.reject(NOT_SUPPORTED.replace('%target%', target));
  123. }
  124. }
  125. // err might be null, in which case defaultMsg is used.
  126. // target MUST be defined or an error is thrown.
  127. function getErrorMessage (err, target, defaultMsg) {
  128. var errMessage;
  129. if (err) {
  130. errMessage = err.toString();
  131. } else {
  132. errMessage = defaultMsg;
  133. }
  134. return errMessage.replace('%target%', target);
  135. }
  136. function checkBrowserExistsWindows (browser, target) {
  137. var promise = new Promise(function (resolve, reject) {
  138. // Windows displays a dialog if the browser is not installed. We'd prefer to avoid that.
  139. if (process.platform === 'win32') {
  140. if (target === 'edge') {
  141. edgeSupported().then(function () {
  142. resolve();
  143. })
  144. .catch(function (err) {
  145. var errMessage = getErrorMessage(err, target, NOT_INSTALLED);
  146. reject(errMessage);
  147. });
  148. } else {
  149. browserInstalled(browser).then(function () {
  150. resolve();
  151. })
  152. .catch(function (err) {
  153. var errMessage = getErrorMessage(err, target, NOT_INSTALLED);
  154. reject(errMessage);
  155. });
  156. }
  157. } else {
  158. resolve();
  159. }
  160. });
  161. return promise;
  162. }
  163. function edgeSupported () {
  164. var prom = new Promise(function (resolve, reject) {
  165. child_process.exec('ver', function (err, stdout, stderr) {
  166. if (err || stderr) {
  167. reject(err || stderr);
  168. } else {
  169. var windowsVersion = stdout.match(/([0-9.])+/g)[0];
  170. if (parseInt(windowsVersion) < 10) {
  171. reject(new Error('The browser target is not supported on this version of Windows: %target%'));
  172. } else {
  173. resolve();
  174. }
  175. }
  176. });
  177. });
  178. return prom;
  179. }
  180. var regItemPattern = /\s*\([^)]+\)\s+(REG_SZ)\s+([^\s].*)\s*/;
  181. function browserInstalled (browser) {
  182. // On Windows, the 'start' command searches the path then 'App Paths' in the registry.
  183. // We do the same here. Note that the start command uses the PATHEXT environment variable
  184. // for the list of extensions to use if no extension is provided. We simplify that to just '.EXE'
  185. // since that is what all the supported browsers use. Check path (simple but usually won't get a hit)
  186. var promise = new Promise(function (resolve, reject) {
  187. if (which.sync(browser, { nothrow: true })) {
  188. return resolve();
  189. } else {
  190. var regQPre = 'reg QUERY "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\';
  191. var regQPost = '.EXE" /v ""';
  192. var regQuery = regQPre + browser.split(' ')[0] + regQPost;
  193. child_process.exec(regQuery, function (err, stdout, stderr) {
  194. if (err) {
  195. // The registry key does not exist, which just means the app is not installed.
  196. reject(err);
  197. } else {
  198. var result = regItemPattern.exec(stdout);
  199. if (fs.existsSync(trimRegPath(result[2]))) {
  200. resolve();
  201. } else {
  202. // The default value is not a file that exists, which means the app is not installed.
  203. reject(new Error(NOT_INSTALLED));
  204. }
  205. }
  206. });
  207. }
  208. });
  209. return promise;
  210. }
  211. function trimRegPath (path) {
  212. // Trim quotes and whitespace
  213. return path.replace(/^[\s"]+|[\s"]+$/g, '');
  214. }