aboutsummaryrefslogtreecommitdiffstats
path: root/lib/main.js
blob: 35d7d605003cf34bf4d3d2d65a59d656aa4a2cab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*jslint rhino: true, forin: true, onevar: false, browser: true, evil: true, laxbreak: true, undef: true, nomen: true, eqeqeq: false, bitwise: true, maxerr: 1000, immed: false, white: false, plusplus: false, regexp: false, undef: false */
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
//
// Links to read through
// http://ehsanakhgari.org/blog/2010-01-07/bugzilla-tweaks-enhanced
// http://hg.mozilla.org/users/ehsan.akhgari_gmail.com/extensions/file/tip/bugzillatweaks
// http://hg.mozilla.org/users/ehsan.akhgari_gmail.com/extensions/file/ecfa0f028b81/bugzillatweaks/lib/main.js
// http://hg.mozilla.org/users/avarma_mozilla.com/atul-packages/file/42ac1e99a107/packages\
//     /facebook-acquaintances/lib/main.js#l11
// http://ehsanakhgari.org/blog/2010-05-31/my-experience-jetpack-sdk#comment-1253
//
"use strict";
var logger = require("logger");
var browser = require("tab-browser");
var self = require("self");
var Request = require("request").Request;
var preferences = require("preferences-service");
var pageMod = require("page-mod");
// var BTSPrefNS = require("bzpage").BTSPrefNS;
// Use my JSON for now before it is fixed for general public
var JSONURLDefault = "https://fedorahosted.org/released"+
    "/bugzilla-triage-scripts/Config_data.json";

var config = {};

function isOurPage(window, matchingURLs) {
    var url = window.location.href;

    // like ["regexp-url1", "regexp-url2"]
    return matchingURLs.some(function (element,i,a) {
        return new RegExp(element).test(url);
    });
}

/**
 *
 */
function skipThisPage(doc) {
    var stemURL = "https://HOSTNAME/show_bug.cgi?id=";
    var titleElems = doc.getElementsByTagName("title");
    var titleStr = titleElems[0].textContent;
    var REArr = new RegExp("[bB]ug\\s+([0-9]+)").exec(titleStr);
    var hostname = doc.location.hostname;
    if (REArr) {
        var bugNo = REArr[1];
        doc.location = stemURL.replace("HOSTNAME",hostname) + bugNo;
    }
}

function initialize(callback) {
    var prefName = BTSPrefNS+"JSONURL";
    var urlStr = "";

    if (preferences.isSet(prefName)) {
        urlStr = preferences.get(prefName);
    } else {
        urlStr = JSONURLDefault;
        preferences.set(prefName, JSONURLDefault);
    }

    // Randomize URL to avoid caching
    // TODO see https://fedorahosted.org/bugzilla-triage-scripts/ticket/21
    // for more thorough discussion and possible further improvement
    urlStr += (urlStr.match(/\?/) == null ? "?" : "&") + (new Date()).getTime();

    Request({
        url: urlStr,
        onComplete: function (response) {
            if (response.status == 200) {
                config.gJSONData = response.json;

                // Get additional tables
                if ("downloadJSON" in config.gJSONData.configData) {
                    var URLsList = config.gJSONData.configData.downloadJSON;
                    var dwnldObj = "";
                    URLsList.forEach(function (arr) {
                        var title = arr[0];
                        var url = arr[1];
                        Request({
                            url: url,
                            onComplete: function(response) {
                                if (response.status == 200) {
                                    config.gJSONData.constantData[title] = response.json;
                                }
                            }
                        }).get();
                    }, this);
                }

                config.logger = new logger.Logger(JSON.parse(self.data.load("bugzillalabelAbbreviations.json")));

                config.matches = config.gJSONData.configData.matches;
                config.skipMatches = config.matches.map(function(x) {
                    return x.replace("show_bug.cgi.*","((process|post)_bug|attachment)\.cgi$");
                });

                config.objConstructor = {};
                var bzType = config.gJSONData.configData.objectStyle;
                if (bzType === "RH") {
                    config.objConstructor = require("rhbzpage").RHBugzillaPage;
                } else if (bzType === "MoFo") {
                    config.objConstructor = require("mozillabzpage").MozillaBugzilla;
                }

                callback(config);
            }
        }
    }).get();
}

/*
exports.main = function main(options, callbacks) {
    initialize(function (config) {
        browser.whenContentLoaded(
            function(window) {
                // is this good for anything?
                if ("window" in window) { window = window.window; }

                if (isOurPage(window, config.matches)) {
                    try {
                        var curPage = new config.objConstructor(window, config);
                    } catch (ex) {
                        if (ex instanceof require("bzpage").NotLoggedinException) {
                            return ; // Bail out if the user is not logged in
                        } else {
                            throw ex; // rethrow the exception otherwise
                        }
                    }
                } else if (isOurPage(window, config.skipMatches)) {
                    skipThisPage(window.document);
                }
            }
        );
    });
};

*/
var messageHandler = exports.messageHandler = function messageHandler(worker, msg) {
    switch (msg.cmd) {
        case "LogMessage":
            console.log(msg.data);
            break;
        case "GetDuplicatorID":
            getDuplicatorID(msg.data.host, msg.data.bugID, function (msgObj) {
                worker.postMessage(msgObj);
            });
            break;
        case "GetPassword":
            getPassword(msg.data.login, msg.data.hostname, function (pass) {
                worker.postMessage(pass);
            });
            break;
        case "DeDeduplicateQueue":
            LoginData = {
                queue: msg.data.bugs,
                host: msg.data.hostname,
                login: msg.data.login,
                pass: msg.data.password,
                dupID: msg.data.duplicator,
                finalCallback: function (msgObj) {
                    worker.postMessage(msgObj);
                }
            };
            processReqQueue();
            break;
        case "testReady":
            // we ignore it here, interesting only in unit test
            break;
        default:
            console.error(msg.toSource());
    }
};

var contentScriptLibraries = {
    "bugzilla.redhat.com": [
        self.data.url("bzpage.js"),
        self.data.url("rhbzpage.js")
    ]
};

pageMod.PageMod({
    include: [
        "https://bugzilla.redhat.com/show_bug.cgi?id=*"
    ],
    contentScriptWhen: 'ready',
    // contentScriptFile: contentScriptLibraries["bugzilla.redhat.com"],
    onAttach: function onAttach(worker, msg) {
        console.log("worker: " + worker);
        worker.on('message', function (msg) {
            messageHandler(worker, msg);
        });
    }
});