Add copyright to browser plug-in file, finish code reorg and cleanup.
[gssweb.git] / browsers / common / contentscript.js
1 /*
2  * Copyright (c) 2015, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34 console.log("Loading content script #6...");
35
36 function addScript(url) {
37   var elt = document.createElement("script");
38   elt.setAttribute("src", 
39                    url   );
40   document.head.appendChild(elt);
41 }
42
43 var port;
44 var browser;
45
46 if ("undefined" != typeof(chrome) &&
47     "undefined" != typeof(chrome.extension) &&
48     "undefined" != typeof(chrome.extension.getURL))
49 {
50   // Running in chrome
51   browser = "Chrome"; 
52   gss_script_name = chrome.extension.getURL('navigator.gssEap.js');
53   port = chrome.runtime.connect({name: "com.painlesssecurity.gssweb"});
54 } else {
55   // Firefox
56   browser = "Firefox";
57   gss_script_name = 'chrome://gssweb/content/navigator.gssEap.js';
58 }
59
60 addScript( gss_script_name );
61
62 sendReplyToWebpage = function(gssReplyJSON) {
63      var appTag = gssReplyJSON.cookies.app_tag;
64      
65      console.log("[" + appTag + "] Extension port listener received message: [" + 
66                   JSON.stringify(gssReplyJSON) + "]"
67                 ); 
68      window.postMessage(gssReplyJSON, "*");
69   }
70
71
72 /* When we get a message back from the extension 
73  * background script
74  */
75 if ("Chrome" == browser)
76 {
77   port.onMessage.addListener( sendReplyToWebpage );
78 }
79 else 
80 {
81   self.port.on('gss_response', sendReplyToWebpage );
82 }
83
84 window.addEventListener("message", function(event) {
85     // Check to see if this message's data is data we care about
86     if ( typeof(event.data.method) == 'undefined' ||
87          typeof(event.data.arguments) == 'undefined' ||
88          typeof(event.data.return_values) != 'undefined' )
89         return;
90     
91     if ( typeof(event.data.cookies) == 'undefined' )
92     {
93       event.data.cookies = {};
94     }
95     var appTag = event.data.cookies.app_tag;
96     
97     console.log("[" + appTag + "] Window message listener received message: [" +
98                 JSON.stringify(event.data) + "]"
99                 );
100     if ("Chrome" == browser)
101     {
102       port.postMessage(event.data);
103     } else 
104     {
105       self.port.emit("gss_request", event.data);
106     }
107 }, false);
108