home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 July & August / PCWorld_2003-07-08_cd.bin / Komunik / firebird / MozillaFirebird-0.6-win32.exe / MozillaFirebird / components / nsProxyAutoConfig.js < prev    next >
Text File  |  2003-04-15  |  15KB  |  440 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-auto-config;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.     getProxyForURI: function(uri) {
  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 getProxyForURI and loadPACFromURI locks-up the
  74.         // browser.
  75.         if (!this.done)
  76.             return null;
  77.  
  78.         // Call the original function-
  79.         return LocalFindProxyForURL(uri.spec, uri.host);
  80.     },
  81.  
  82.     loadPACFromURI: function(uri, ioService) {
  83.         this.done = false;
  84.         var channel = ioService.newChannelFromURI(uri);
  85.         // don't cache the PAC content
  86.         channel.loadFlags |= nsIRequest.LOAD_BYPASS_CACHE;
  87.         pacURL = uri.spec;
  88.         channel.notificationCallbacks = this;
  89.         channel.asyncOpen(this, null);
  90.         Components.returnCode = Components.results.NS_OK;
  91.     },
  92.  
  93.     // nsIInterfaceRequestor interface
  94.     getInterface: function(iid, instance) {
  95.         if (iid.equals(Components.interfaces.nsIAuthPrompt)) {
  96.             // use the window watcher service to get a nsIAuthPrompt impl
  97.             var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  98.                                .getService(Components.interfaces.nsIWindowWatcher);
  99.             return ww.getNewAuthPrompter(null);
  100.         }
  101.         Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  102.         return null;
  103.     },
  104.  
  105.     // nsIStreamListener interface
  106.     onStartRequest: function(request, ctxt) { 
  107.         pac = '';
  108.         LocalFindProxyForURL=null;
  109.         this.sis = 
  110.         Components.Constructor('@mozilla.org/scriptableinputstream;1',
  111.                                'nsIScriptableInputStream', 
  112.                                'init');
  113.     },
  114.  
  115.     onStopRequest: function(request, ctxt, status) {
  116.         if(!ProxySandBox) {
  117.            ProxySandBox = new Sandbox();
  118.         }
  119.         // add predefined functions to pac
  120.         var mypac = pacUtils + pac;
  121.         // evaluate loded js file
  122.         evalInSandbox(mypac, ProxySandBox, pacURL);
  123.         try {
  124.             ProxySandBox.myIP = dns.myIPAddress;
  125.         } catch (e) {
  126.             // Well, theres nothing better.
  127.             // see bugs 80363 and 92516.
  128.             ProxySandBox.myIP = "127.0.0.1";
  129.         }
  130.         ProxySandBox.dnsResolve = dnsResolve;
  131.         LocalFindProxyForURL=ProxySandBox.FindProxyForURL;
  132.         this.done = true;
  133.     },
  134.  
  135.     onDataAvailable: function(request, ctxt, inStream, sourceOffset, count) {
  136.         var ins = new this.sis(inStream);
  137.         pac += ins.read(count);
  138.     }
  139. }
  140.  
  141. // Synchronous calls to nsDNSService::Resolve ignore the cache! (bug 97097)
  142. // Keep a simple one of our own.
  143. var dnsResolveCachedHost = null;
  144. var dnsResolveCachedIp = null;
  145.  
  146. // wrapper for dns.resolve to catch exception on failure
  147. function dnsResolve(host) {
  148.     if (host == dnsResolveCachedHost) {
  149.         return dnsResolveCachedIp;
  150.     }
  151.     try {
  152.         dnsResolveCachedIp = dns.resolve(host);
  153.         dnsResolveCachedHost = host;
  154.     }
  155.     catch (e) {
  156.         dnsResolveCachedIp = null;
  157.         dnsResolveCachedHost = null;
  158.     }
  159.     return dnsResolveCachedIp;
  160. }
  161.  
  162. var pacModule = new Object();
  163.  
  164. pacModule.registerSelf =
  165.     function (compMgr, fileSpec, location, type) {
  166.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  167.         compMgr.registerFactoryLocation(kPAC_CID,
  168.                                         "nsProxyAutoConfig",
  169.                                         kPAC_CONTRACTID,
  170.                                         fileSpec, 
  171.                                         location, 
  172.                                         type);
  173.     }
  174.  
  175. pacModule.getClassObject =
  176. function (compMgr, cid, iid) {
  177.         if (!cid.equals(kPAC_CID))
  178.             throw Components.results.NS_ERROR_NO_INTERFACE;
  179.  
  180.         if (!iid.equals(Components.interfaces.nsIFactory))
  181.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  182.  
  183.         return pacFactory;
  184.     }
  185.  
  186. pacModule.canUnload =
  187.     function (compMgr) {
  188.         return true;
  189.     }
  190.  
  191. var pacFactory = new Object();
  192. pacFactory.createInstance =
  193.     function (outer, iid) {
  194.         if (outer != null)
  195.             throw Components.results.NS_ERROR_NO_AGGREGATION;
  196.  
  197.         if (!iid.equals(nsIProxyAutoConfig) &&
  198.             !!iid.equals(Components.interfaces.nsIStreamListener) &&
  199.             !iid.equals(Components.interfaces.nsISupports)) {
  200.             // shouldn't this be NO_INTERFACE?
  201.             throw Components.results.NS_ERROR_INVALID_ARG;
  202.         }
  203.         return PacMan;
  204.     }
  205.  
  206. function NSGetModule(compMgr, fileSpec) {
  207.     return pacModule;
  208. }
  209.  
  210. var PacMan = new nsProxyAutoConfig() ;
  211.  
  212. var ios = Components.classes[kIOSERVICE_CONTRACTID].getService(nsIIOService);
  213. var dns = Components.classes[kDNS_CONTRACTID].getService(nsIDNSService);
  214.  
  215. var pacUtils = 
  216. "function dnsDomainIs(host, domain) {\n" +
  217. "    return (host.length >= domain.length &&\n" +
  218. "            host.substring(host.length - domain.length) == domain);\n" +
  219. "}\n" +
  220.  
  221. "function dnsDomainLevels(host) {\n" +
  222. "    return host.split('.').length-1;\n" +
  223. "}\n" +
  224.  
  225. "function convert_addr(ipchars) {\n"+
  226. "    var bytes = ipchars.split('.');\n"+
  227. "    var result = ((bytes[0] & 0xff) << 24) |\n"+
  228. "                 ((bytes[1] & 0xff) << 16) |\n"+
  229. "                 ((bytes[2] & 0xff) <<  8) |\n"+
  230. "                  (bytes[3] & 0xff);\n"+
  231. "    return result;\n"+
  232. "}\n"+
  233.  
  234. "function isInNet(ipaddr, pattern, maskstr) {\n"+
  235. "    var test = /^(\\d{1,4})\\.(\\d{1,4})\\.(\\d{1,4})\\.(\\d{1,4})$/(ipaddr);\n"+
  236. "    if (test == null) {\n"+
  237. "        ipaddr = dnsResolve(ipaddr);\n"+
  238. "        if (ipaddr == null)\n"+
  239. "            return false;\n"+
  240. "    } else if (test[1] > 255 || test[2] > 255 || \n"+
  241. "               test[3] > 255 || test[4] > 255) {\n"+
  242. "        return false;    // not an IP address\n"+
  243. "    }\n"+
  244. "    var host = convert_addr(ipaddr);\n"+
  245. "    var pat  = convert_addr(pattern);\n"+
  246. "    var mask = convert_addr(maskstr);\n"+
  247. "    return ((host & mask) == (pat & mask));\n"+
  248. "    \n"+
  249. "}\n"+
  250.  
  251. "function isPlainHostName(host) {\n" +
  252. "    return (host.search('\\\\.') == -1);\n" +
  253. "}\n" +
  254.  
  255. "function isResolvable(host) {\n" +
  256. "    var ip = dnsResolve(host);\n" +
  257. "    return (ip != null);\n" +
  258. "}\n" +
  259.  
  260. "function localHostOrDomainIs(host, hostdom) {\n" +
  261. "    if (isPlainHostName(host)) {\n" +
  262. "        return (hostdom.search('/^' + host + '/') != -1);\n" +
  263. "    }\n" +
  264. "    else {\n" +
  265. "        return (host == hostdom); //TODO check \n" +
  266. "    }\n" +
  267. "}\n" +
  268.  
  269. " var myIP;\n" +
  270. "function myIpAddress() {\n" +
  271. "    return (myIP) ? myIP : '127.0.0.1';\n" +
  272. "}\n" +
  273.  
  274. "function shExpMatch(url, pattern) {\n" +
  275. "   pattern = pattern.replace(/\\./g, '\\\\.');\n" +
  276. "   pattern = pattern.replace(/\\*/g, '.*');\n" +
  277. "   pattern = pattern.replace(/\\?/g, '.');\n" +
  278. "   var newRe = new RegExp('^'+pattern+'$');\n" +
  279. "   return newRe.test(url);\n" +
  280. "}\n" +
  281.  
  282. "var wdays = new Array('SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT');\n" +
  283.  
  284. "var monthes = new Array('JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC');\n"+
  285.  
  286. "function weekdayRange() {\n" +
  287. "    function getDay(weekday) {\n" +
  288. "        for (var i = 0; i < 6; i++) {\n" +
  289. "            if (weekday == wdays[i]) \n" +
  290. "                return i;\n" +
  291. "        }\n" +
  292. "        return -1;\n" +
  293. "    }\n" +
  294. "    var date = new Date();\n" +
  295. "    var argc = arguments.length;\n" +
  296. "    var wday;\n" +
  297. "    if (argc < 1)\n" +
  298. "        return false;\n" +
  299. "    if (arguments[argc - 1] == 'GMT') {\n" +
  300. "        argc--;\n" +
  301. "        wday = date.getUTCDay();\n" +
  302. "    } else {\n" +
  303. "        wday = date.getDay();\n" +
  304. "    }\n" +
  305. "    var wd1 = getDay(arguments[0]);\n" +
  306. "    var wd2 = (argc == 2) ? getDay(arguments[1]) : wd1;\n" +
  307. "    return (wd1 == -1 || wd2 == -1) ? false\n" +
  308. "                                    : (wd1 <= wday && wday <= wd2);\n" +
  309. "}\n" +
  310.  
  311. "function dateRange() {\n" +
  312. "    function getMonth(name) {\n" +
  313. "        for (var i = 0; i < 6; i++) {\n" +
  314. "            if (name == monthes[i])\n" +
  315. "                return i;\n" +
  316. "        }\n" +
  317. "        return -1;\n" +
  318. "    }\n" +
  319. "    var date = new Date();\n" +
  320. "    var argc = arguments.length;\n" +
  321. "    if (argc < 1) {\n" +
  322. "        return false;\n" +
  323. "    }\n" +
  324. "    var isGMT = (arguments[argc - 1] == 'GMT');\n" +
  325. "\n" +
  326. "    if (isGMT) {\n" +
  327. "        argc--;\n" +
  328. "    }\n" +
  329. "    // function will work even without explict handling of this case\n" +
  330. "    if (argc == 1) {\n" +
  331. "        var tmp = parseInt(arguments[0]);\n" +
  332. "        if (isNaN(tmp)) {\n" +
  333. "            return ((isGMT ? date.getUTCMonth() : date.getMonth()) ==\n" +
  334. "getMonth(arguments[0]));\n" +
  335. "        } else if (tmp < 32) {\n" +
  336. "            return ((isGMT ? date.getUTCDate() : date.getDate()) == tmp);\n" +
  337. "        } else { \n" +
  338. "            return ((isGMT ? date.getUTCFullYear() : date.getFullYear()) ==\n" +
  339. "tmp);\n" +
  340. "        }\n" +
  341. "    }\n" +
  342. "    var year = date.getFullYear();\n" +
  343. "    var date1, date2;\n" +
  344. "    date1 = new Date(year,  0,  1,  0,  0,  0);\n" +
  345. "    date2 = new Date(year, 11, 31, 23, 59, 59);\n" +
  346. "    var adjustMonth = false;\n" +
  347. "    for (var i = 0; i < (argc >> 1); i++) {\n" +
  348. "        var tmp = parseInt(arguments[i]);\n" +
  349. "        if (isNaN(tmp)) {\n" +
  350. "            var mon = getMonth(arguments[i]);\n" +
  351. "            date1.setMonth(mon);\n" +
  352. "        } else if (tmp < 32) {\n" +
  353. "            adjustMonth = (argc <= 2);\n" +
  354. "            date1.setDate(tmp);\n" +
  355. "        } else {\n" +
  356. "            date1.setFullYear(tmp);\n" +
  357. "        }\n" +
  358. "    }\n" +
  359. "    for (var i = (argc >> 1); i < argc; i++) {\n" +
  360. "        var tmp = parseInt(arguments[i]);\n" +
  361. "        if (isNaN(tmp)) {\n" +
  362. "            var mon = getMonth(arguments[i]);\n" +
  363. "            date2.setMonth(mon);\n" +
  364. "        } else if (tmp < 32) {\n" +
  365. "            date2.setDate(tmp);\n" +
  366. "        } else {\n" +
  367. "            date2.setFullYear(tmp);\n" +
  368. "        }\n" +
  369. "    }\n" +
  370. "    if (adjustMonth) {\n" +
  371. "        date1.setMonth(date.getMonth());\n" +
  372. "        date2.setMonth(date.getMonth());\n" +
  373. "    }\n" +
  374. "    if (isGMT) {\n" +
  375. "    var tmp = date;\n" +
  376. "        tmp.setFullYear(date.getUTCFullYear());\n" +
  377. "        tmp.setMonth(date.getUTCMonth());\n" +
  378. "        tmp.setDate(date.getUTCDate());\n" +
  379. "        tmp.setHours(date.getUTCHours());\n" +
  380. "        tmp.setMinutes(date.getUTCMinutes());\n" +
  381. "        tmp.setSeconds(date.getUTCSeconds());\n" +
  382. "        date = tmp;\n" +
  383. "    }\n" +
  384. "    return ((date1 <= date) && (date <= date2));\n" +
  385. "}\n" +
  386.  
  387. "function timeRange() {\n" +
  388. "    var argc = arguments.length;\n" +
  389. "    var date = new Date();\n" +
  390. "    var isGMT= false;\n"+
  391. "\n" +
  392. "    if (argc < 1) {\n" +
  393. "        return false;\n" +
  394. "    }\n" +
  395. "    if (arguments[argc - 1] == 'GMT') {\n" +
  396. "        isGMT = true;\n" +
  397. "        argc--;\n" +
  398. "    }\n" +
  399. "\n" +
  400. "    var hour = isGMT ? date.getUTCHours() : date.getHours();\n" +
  401. "    var date1, date2;\n" +
  402. "    date1 = new Date();\n" +
  403. "    date2 = new Date();\n" +
  404. "\n" +
  405. "    if (argc == 1) {\n" +
  406. "        return (hour == arguments[0]);\n" +
  407. "    } else if (argc == 2) {\n" +
  408. "        return ((arguments[0] <= hour) && (hour <= arguments[1]));\n" +
  409. "    } else {\n" +
  410. "        switch (argc) {\n" +
  411. "        case 6:\n" +
  412. "            date1.setSeconds(arguments[2]);\n" +
  413. "            date2.setSeconds(arguments[5]);\n" +
  414. "        case 4:\n" +
  415. "            var middle = argc >> 1;\n" +
  416. "            date1.setHours(arguments[0]);\n" +
  417. "            date1.setMinutes(arguments[1]);\n" +
  418. "            date2.setHours(arguments[middle]);\n" +
  419. "            date2.setMinutes(arguments[middle + 1]);\n" +
  420. "            if (middle == 2) {\n" +
  421. "                date2.setSeconds(59);\n" +
  422. "            }\n" +
  423. "            break;\n" +
  424. "        default:\n" +
  425. "          throw 'timeRange: bad number of arguments'\n" +
  426. "        }\n" +
  427. "    }\n" +
  428. "\n" +
  429. "    if (isGMT) {\n" +
  430. "        date.setFullYear(date.getUTCFullYear());\n" +
  431. "        date.setMonth(date.getUTCMonth());\n" +
  432. "        date.setDate(date.getUTCDate());\n" +
  433. "        date.setHours(date.getUTCHours());\n" +
  434. "        date.setMinutes(date.getUTCMinutes());\n" +
  435. "        date.setSeconds(date.getUTCSeconds());\n" +
  436. "    }\n" +
  437. "    return ((date1 <= date) && (date <= date2));\n" +
  438. "}\n"
  439.  
  440.