home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / linux / mozilla-installer_linux / xpi / browser.xpi / bin / components / nsProxyAutoConfig.js < prev    next >
Text File  |  2001-11-20  |  15KB  |  442 lines

  1. /* -*- Mode: Java; tab-width: 4; c-basic-offset: 4; -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Netscape Public License
  6.  * Version 1.1 (the "License"); you may not use this file except in
  7.  * compliance with the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/NPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is 
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Akhil Arora <akhil.arora@sun.com>
  24.  *   Tomi Leppikangas <Tomi.Leppikangas@oulu.fi>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the NPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the NPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. /*
  41.    Script for Proxy Auto Config in the new world order.
  42.        - Gagan Saksena 04/24/00 
  43. */
  44.  
  45. const kPAC_CONTRACTID = "@mozilla.org/network/proxy_autoconfig;1";
  46. const kIOSERVICE_CONTRACTID = "@mozilla.org/network/io-service;1";
  47. const kDNS_CONTRACTID = "@mozilla.org/network/dns-service;1";
  48. const kPAC_CID = Components.ID("{63ac8c66-1dd2-11b2-b070-84d00d3eaece}");
  49. const nsIProxyAutoConfig = Components.interfaces.nsIProxyAutoConfig;
  50. const nsIIOService = Components.interfaces['nsIIOService'];
  51. const nsIDNSService = Components.interfaces.nsIDNSService;
  52. const nsIRequest = Components.interfaces.nsIRequest;
  53.  
  54. // implementor of nsIProxyAutoConfig
  55. function nsProxyAutoConfig() {};
  56.  
  57. // global variable that will hold the downloaded js 
  58. var pac = null;
  59. //hold PAC's URL, used in evalAsCodebase()
  60. var pacURL;
  61. // ptr to eval'ed FindProxyForURL function
  62. var LocalFindProxyForURL=null;
  63. // sendbox in which we eval loaded autoconfig js file
  64. var ProxySandBox = null;
  65.  
  66. nsProxyAutoConfig.prototype = {
  67.     sis: null,
  68.     done: false,
  69.  
  70.     ProxyForURL: function(url, host, port, type) {
  71.         /* If we're not done loading the pac yet, wait (ideally). For
  72.            now, just return DIRECT to avoid loops. A simple mutex
  73.            between ProxyForURL and LoadPACFromURL locks-up the
  74.            browser. */
  75.         if (!this.done) {
  76.             host.value = null;
  77.             type.value = "direct";
  78.             return;
  79.         }
  80.  
  81.         var uri = url.QueryInterface(Components.interfaces.nsIURI);
  82.         // Call the original function-
  83.         var proxy = LocalFindProxyForURL(uri.spec, uri.host);
  84.         if (proxy == "DIRECT") {
  85.             host.value = null;
  86.             type.value = "direct";
  87.         }
  88.         else {
  89.             // TODO warn about SOCKS
  90.  
  91.             // we ignore everything else past the first proxy. 
  92.             // we could theoretically check isResolvable now and continue 
  93.             // parsing. but for now...
  94.             var hostport = /^PROXY ([^:]+):(\d+)/(proxy);
  95.             host.value = hostport[1];
  96.             port.value = hostport[2];
  97.             type.value = "http"; //proxy (http, socks, direct, etc)
  98.         }
  99.     },
  100.  
  101.     LoadPACFromURL: function(uri, ioService) {
  102.         this.done = false;
  103.         var channel = ioService.newChannelFromURI(uri);
  104.         // don't cache the PAC content
  105.         channel.loadFlags |= nsIRequest.LOAD_BYPASS_CACHE;
  106.         pacURL = uri.spec;
  107.         channel.asyncOpen(this, null);
  108.     },
  109.  
  110.     // nsIStreamListener interface
  111.     onStartRequest: function(request, ctxt) { 
  112.         pac = '';
  113.         LocalFindProxyForURL=null;
  114.         this.sis = 
  115.         Components.Constructor('@mozilla.org/scriptableinputstream;1',
  116.                                'nsIScriptableInputStream', 
  117.                                'init');
  118.     },
  119.  
  120.     onStopRequest: function(request, ctxt, status, errorMsg) {
  121.         if(!ProxySandBox) {
  122.            ProxySandBox = new Sandbox();
  123.         }
  124.         // add predefined functions to pac
  125.         var mypac = pacUtils + pac;
  126.         // evaluate loded js file
  127.         evalInSandbox(mypac, ProxySandBox, pacURL);
  128.         try {
  129.             ProxySandBox.myIP = dns.myIPAddress;
  130.         } catch (e) {
  131.             // Well, theres nothing better.
  132.             // see bugs 80363 and 92516.
  133.             ProxySandBox.myIP = "127.0.0.1";
  134.         }
  135.         ProxySandBox.dnsResolve = dnsResolve;
  136.         LocalFindProxyForURL=ProxySandBox.FindProxyForURL;
  137.         this.done = true;
  138.     },
  139.  
  140.     onDataAvailable: function(request, ctxt, inStream, sourceOffset, count) {
  141.         var ins = new this.sis(inStream);
  142.         pac += ins.read(count);
  143.     }
  144. }
  145.  
  146. // Synchronous calls to nsDNSService::Resolve ignore the cache! (bug 97097)
  147. // Keep a simple one of our own.
  148. var dnsResolveCachedHost = null;
  149. var dnsResolveCachedIp = null;
  150.  
  151. // wrapper for dns.resolve to catch exception on failure
  152. function dnsResolve(host) {
  153.     if (host == dnsResolveCachedHost) {
  154.         return dnsResolveCachedIp;
  155.     }
  156.     dnsResolveCachedHost = host;
  157.     try {
  158.         dnsResolveCachedIp = dns.resolve(host);
  159.     }
  160.     catch (e) {
  161.         dnsResolveCachedIp = null;
  162.     }
  163.     return dnsResolveCachedIp;
  164. }
  165.  
  166. var pacModule = new Object();
  167.  
  168. pacModule.registerSelf =
  169.     function (compMgr, fileSpec, location, type) {
  170.         compMgr.registerComponentWithType(kPAC_CID,
  171.             "Proxy Auto Config",
  172.             kPAC_CONTRACTID,
  173.             fileSpec, location, 
  174.             true, true, type);
  175.     }
  176.  
  177. pacModule.getClassObject =
  178. function (compMgr, cid, iid) {
  179.         if (!cid.equals(kPAC_CID))
  180.             throw Components.results.NS_ERROR_NO_INTERFACE;
  181.  
  182.         if (!iid.equals(Components.interfaces.nsIFactory))
  183.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  184.  
  185.         return pacFactory;
  186.     }
  187.  
  188. pacModule.canUnload =
  189.     function (compMgr) {
  190.         return true;
  191.     }
  192.  
  193. var pacFactory = new Object();
  194. pacFactory.createInstance =
  195.     function (outer, iid) {
  196.         if (outer != null)
  197.             throw Components.results.NS_ERROR_NO_AGGREGATION;
  198.  
  199.         if (!iid.equals(nsIProxyAutoConfig) &&
  200.             !!iid.equals(Components.interfaces.nsIStreamListener) &&
  201.             !iid.equals(Components.interfaces.nsISupports)) {
  202.             // shouldn't this be NO_INTERFACE?
  203.             throw Components.results.NS_ERROR_INVALID_ARG;
  204.         }
  205.         return PacMan;
  206.     }
  207.  
  208. function NSGetModule(compMgr, fileSpec) {
  209.     return pacModule;
  210. }
  211.  
  212. var PacMan = new nsProxyAutoConfig() ;
  213.  
  214. var ios = Components.classes[kIOSERVICE_CONTRACTID].getService(nsIIOService);
  215. var dns = Components.classes[kDNS_CONTRACTID].getService(nsIDNSService);
  216.  
  217. var pacUtils = 
  218. "function dnsDomainIs(host, domain) {\n" +
  219. "    return (host.length >= domain.length &&\n" +
  220. "            host.substring(host.length - domain.length) == domain);\n" +
  221. "}\n" +
  222.  
  223. "function dnsDomainLevels(host) {\n" +
  224. "    return host.split('.').length-1;\n" +
  225. "}\n" +
  226.  
  227. "function convert_addr(ipchars) {\n"+
  228. "    var bytes = ipchars.split('.');\n"+
  229. "    var result = ((bytes[0] & 0xff) << 24) |\n"+
  230. "                 ((bytes[1] & 0xff) << 16) |\n"+
  231. "                 ((bytes[2] & 0xff) <<  8) |\n"+
  232. "                  (bytes[3] & 0xff);\n"+
  233. "    return result;\n"+
  234. "}\n"+
  235.  
  236. "function isInNet(ipaddr, pattern, maskstr) {\n"+
  237. "    var test = /^(\\d{1,4})\\.(\\d{1,4})\\.(\\d{1,4})\\.(\\d{1,4})$/(ipaddr);\n"+
  238. "    if (test == null) {\n"+
  239. "        ipaddr = dnsResolve(ipaddr);\n"+
  240. "        if (ipaddr == null)\n"+
  241. "            return false;\n"+
  242. "    } else if (test[1] > 255 || test[2] > 255 || \n"+
  243. "               test[3] > 255 || test[4] > 255) {\n"+
  244. "        return false;    // not an IP address\n"+
  245. "    }\n"+
  246. "    var host = convert_addr(ipaddr);\n"+
  247. "    var pat  = convert_addr(pattern);\n"+
  248. "    var mask = convert_addr(maskstr);\n"+
  249. "    return ((host & mask) == (pat & mask));\n"+
  250. "    \n"+
  251. "}\n"+
  252.  
  253. "function isPlainHostName(host) {\n" +
  254. "    return (host.search('\\\\.') == -1);\n" +
  255. "}\n" +
  256.  
  257. "function isResolvable(host) {\n" +
  258. "    var ip = dnsResolve(host);\n" +
  259. "    return (ip != null);\n" +
  260. "}\n" +
  261.  
  262. "function localHostOrDomainIs(host, hostdom) {\n" +
  263. "    if (isPlainHostName(host)) {\n" +
  264. "        return (hostdom.search('/^' + host + '/') != -1);\n" +
  265. "    }\n" +
  266. "    else {\n" +
  267. "        return (host == hostdom); //TODO check \n" +
  268. "    }\n" +
  269. "}\n" +
  270.  
  271. " var myIP;\n" +
  272. "function myIpAddress() {\n" +
  273. "    return (myIP) ? myIP : '127.0.0.1';\n" +
  274. "}\n" +
  275.  
  276. "function shExpMatch(url, pattern) {\n" +
  277. "   pattern = pattern.replace(/\\./g, '\\\\.');\n" +
  278. "   pattern = pattern.replace(/\\*/g, '.*');\n" +
  279. "   pattern = pattern.replace(/\\?/g, '.');\n" +
  280. "   var newRe = new RegExp(pattern);\n" +
  281. "   return newRe.test(url);\n" +
  282. "}\n" +
  283.  
  284. "var wdays = new Array('SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT');\n" +
  285.  
  286. "var monthes = new Array('JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC');\n"+
  287.  
  288. "function weekdayRange() {\n" +
  289. "    function getDay(weekday) {\n" +
  290. "        for (var i = 0; i < 6; i++) {\n" +
  291. "            if (weekday == wdays[i]) \n" +
  292. "                return i;\n" +
  293. "        }\n" +
  294. "        return -1;\n" +
  295. "    }\n" +
  296. "    var date = new Date();\n" +
  297. "    var argc = arguments.length;\n" +
  298. "    var wday;\n" +
  299. "    if (argc < 1)\n" +
  300. "        return false;\n" +
  301. "    if (arguments[argc - 1] == 'GMT') {\n" +
  302. "        argc--;\n" +
  303. "        wday = date.getUTCDay();\n" +
  304. "    } else {\n" +
  305. "        wday = date.getDay();\n" +
  306. "    }\n" +
  307. "    var wd1 = getDay(arguments[0]);\n" +
  308. "    var wd2 = (argc == 2) ? getDay(arguments[1]) : wd1;\n" +
  309. "    return (wd1 == -1 || wd2 == -1) ? false\n" +
  310. "                                    : (wd1 <= wday && wday <= wd2);\n" +
  311. "}\n" +
  312.  
  313. "function dateRange() {\n" +
  314. "    function getMonth(name) {\n" +
  315. "        for (var i = 0; i < 6; i++) {\n" +
  316. "            if (name == monthes[i])\n" +
  317. "                return i;\n" +
  318. "        }\n" +
  319. "        return -1;\n" +
  320. "    }\n" +
  321. "    var date = new Date();\n" +
  322. "    var argc = arguments.length;\n" +
  323. "    if (argc < 1) {\n" +
  324. "        return false;\n" +
  325. "    }\n" +
  326. "    var isGMT = (arguments[argc - 1] == 'GMT');\n" +
  327. "\n" +
  328. "    if (isGMT) {\n" +
  329. "        argc--;\n" +
  330. "    }\n" +
  331. "    // function will work even without explict handling of this case\n" +
  332. "    if (argc == 1) {\n" +
  333. "        var tmp = parseInt(arguments[0]);\n" +
  334. "        if (isNaN(tmp)) {\n" +
  335. "            return ((isGMT ? date.getUTCMonth() : date.getMonth()) ==\n" +
  336. "getMonth(arguments[0]));\n" +
  337. "        } else if (tmp < 32) {\n" +
  338. "            return ((isGMT ? date.getUTCDate() : date.getDate()) == tmp);\n" +
  339. "        } else { \n" +
  340. "            return ((isGMT ? date.getUTCFullYear() : date.getFullYear()) ==\n" +
  341. "tmp);\n" +
  342. "        }\n" +
  343. "    }\n" +
  344. "    var year = date.getFullYear();\n" +
  345. "    var date1, date2;\n" +
  346. "    date1 = new Date(year,  0,  1,  0,  0,  0);\n" +
  347. "    date2 = new Date(year, 11, 31, 23, 59, 59);\n" +
  348. "    var adjustMonth = false;\n" +
  349. "    for (var i = 0; i < (argc >> 1); i++) {\n" +
  350. "        var tmp = parseInt(arguments[i]);\n" +
  351. "        if (isNaN(tmp)) {\n" +
  352. "            var mon = getMonth(arguments[i]);\n" +
  353. "            date1.setMonth(mon);\n" +
  354. "        } else if (tmp < 32) {\n" +
  355. "            adjustMonth = (argc <= 2);\n" +
  356. "            date1.setDate(tmp);\n" +
  357. "        } else {\n" +
  358. "            date1.setFullYear(tmp);\n" +
  359. "        }\n" +
  360. "    }\n" +
  361. "    for (var i = (argc >> 1); i < argc; i++) {\n" +
  362. "        var tmp = parseInt(arguments[i]);\n" +
  363. "        if (isNaN(tmp)) {\n" +
  364. "            var mon = getMonth(arguments[i]);\n" +
  365. "            date2.setMonth(mon);\n" +
  366. "        } else if (tmp < 32) {\n" +
  367. "            date2.setDate(tmp);\n" +
  368. "        } else {\n" +
  369. "            date2.setFullYear(tmp);\n" +
  370. "        }\n" +
  371. "    }\n" +
  372. "    if (adjustMonth) {\n" +
  373. "        date1.setMonth(date.getMonth());\n" +
  374. "        date2.setMonth(date.getMonth());\n" +
  375. "    }\n" +
  376. "    if (isGMT) {\n" +
  377. "    var tmp = date;\n" +
  378. "        tmp.setFullYear(date.getUTCFullYear());\n" +
  379. "        tmp.setMonth(date.getUTCMonth());\n" +
  380. "        tmp.setDate(date.getUTCDate());\n" +
  381. "        tmp.setHours(date.getUTCHours());\n" +
  382. "        tmp.setMinutes(date.getUTCMinutes());\n" +
  383. "        tmp.setSeconds(date.getUTCSeconds());\n" +
  384. "        date = tmp;\n" +
  385. "    }\n" +
  386. "    return ((date1 <= date) && (date <= date2));\n" +
  387. "}\n" +
  388.  
  389. "function timeRange() {\n" +
  390. "    var argc = arguments.length;\n" +
  391. "    var date = new Date();\n" +
  392. "    var isGMT= false;\n"+
  393. "\n" +
  394. "    if (argc < 1) {\n" +
  395. "        return false;\n" +
  396. "    }\n" +
  397. "    if (arguments[argc - 1] == 'GMT') {\n" +
  398. "        isGMT = true;\n" +
  399. "        argc--;\n" +
  400. "    }\n" +
  401. "\n" +
  402. "    var hour = isGMT ? date.getUTCHours() : date.getHours();\n" +
  403. "    var date1, date2;\n" +
  404. "    date1 = new Date();\n" +
  405. "    date2 = new Date();\n" +
  406. "\n" +
  407. "    if (argc == 1) {\n" +
  408. "        return (hour == arguments[0]);\n" +
  409. "    } else if (argc == 2) {\n" +
  410. "        return ((arguments[0] <= hour) && (hour <= arguments[1]));\n" +
  411. "    } else {\n" +
  412. "        switch (argc) {\n" +
  413. "        case 6:\n" +
  414. "            date1.setSeconds(arguments[2]);\n" +
  415. "            date2.setSeconds(arguments[5]);\n" +
  416. "        case 4:\n" +
  417. "            var middle = argc >> 1;\n" +
  418. "            date1.setHours(arguments[0]);\n" +
  419. "            date1.setMinutes(arguments[1]);\n" +
  420. "            date2.setHours(arguments[middle]);\n" +
  421. "            date2.setMinutes(arguments[middle + 1]);\n" +
  422. "            if (middle == 2) {\n" +
  423. "                date2.setSeconds(59);\n" +
  424. "            }\n" +
  425. "            break;\n" +
  426. "        default:\n" +
  427. "          throw 'timeRange: bad number of arguments'\n" +
  428. "        }\n" +
  429. "    }\n" +
  430. "\n" +
  431. "    if (isGMT) {\n" +
  432. "        date.setFullYear(date.getUTCFullYear());\n" +
  433. "        date.setMonth(date.getUTCMonth());\n" +
  434. "        date.setDate(date.getUTCDate());\n" +
  435. "        date.setHours(date.getUTCHours());\n" +
  436. "        date.setMinutes(date.getUTCMinutes());\n" +
  437. "        date.setSeconds(date.getUTCSeconds());\n" +
  438. "    }\n" +
  439. "    return ((date1 <= date) && (date <= date2));\n" +
  440. "}\n"
  441.  
  442.