aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib/bzpage.js
blob: 6b2a2f63ba6474e7266802c86c246fe2563a17f1 (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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
var bugURL = "https://bugzilla.redhat.com/show_bug.cgi?id=";
var BTSPrefNS = "bugzilla-triage.setting.";

// Shared contstants
var NumberOfFrames = 7;

// constants
var SalmonPink = new Color(255, 224, 176); // RGB 255, 224, 176; HSL 36, 2,
// 85
var ReporterColor = new Color(255, 255, 166); // RGB 255, 255, 166; HSL 60, 2,
// 83

// global variables
var config = {};
var constantData = {}; // This should be probably eliminated ASAP or
// or done by other means. TODO
var equivalentComponents = null;
/**
 * central handler processing messages from the main script.
 */
self.on('message', function onMessage(msg) {
  console.myDebug("onMessage - incoming : msg.cmd = " + msg.cmd);
  switch (msg.cmd) {
  case "ReloadThePage":
    document.location.reload(true);
    break;
  case "queryLocal":
    queryInNewTab(msg.data, getComponent(), getProduct(), equivalentComponents);
    break;
  case "CreateButtons":
    constantData = msg.data.constData;
    config = msg.data.config;
    equivalentComponents = ("equivalentComponents" in constantData) ?
        constantData.equivalentComponents : null;
    generateButtons(msg.data.instPkgs, msg.data.kNodes);
    completeInit();
    break;
  case "Error":
    alert("Error " + msg.data);
    break;
  case "Unhandled":
    break;
  default:
    if (TweakOnMessageHandler) {
      TweakOnMessageHandler(msg, [RHOnMessageHandler, MozOnMessageHandler]);
    }
    else {
      console.error("Error: unknown RPC call " + msg.toSource());
    }
  }
});

/**
 * @param cmd
 *          Object with all commands to be executed
 *
 * PROBLEM: according to
 * https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference\
 * /Statements/for...in there is no guaranteed order of execution of commands
 * (i.e., key, commentObj[key] pairs) in for..in cycle. According to
 * https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference\
 * /Operators/Special_Operators/delete_Operator#Cross-browser_issues it seems
 * that everywhere except of Internet Explorer this should work well, but
 * waiting impatiently when this bite us.
 */
function executeCommand(cmdObj) {
  for (var key in cmdObj) {
    centralCommandDispatch(key, cmdObj[key]);
  }
}

/**
 * Actual execution function
 *
 * @param cmdLabel
 *          String with the name of the command to be executed
 * @param cmdParams
 *          Object with the appropriate parameters for the command
 */
function centralCommandDispatch (cmdLabel, cmdParams) {
  console.myDebug("centralCommandDispatch : cmdLabel = " + cmdLabel);
  switch (cmdLabel) {
  case "name":
  case "position":
    break;
  case "resolution":
  case "product":
  case "component":
  case "version":
  case "priority":
    selectOption(cmdLabel, cmdParams);
    break;
  case "status":
    selectOption("bug_status", cmdParams);
    break;
  case "platform":
    selectOption("rep_platform", cmdParams);
    break;
  case "os":
    selectOption("op_sys", cmdParams);
    break;
  case "severity":
    selectOption("bug_severity", cmdParams);
    break;
  case "target":
    selectOption("target_milestone", cmdParams);
    break;
  case "addKeyword":
    addStuffToTextBox("keywords",cmdParams);
    break;
  case "removeKeyword":
    removeStuffFromTextBox("keywords", cmdParams);
    break;
  case "addWhiteboard":
    addStuffToTextBox("status_whiteboard",cmdParams);
    break;
  case "removeWhiteboard":
    removeStuffFromTextBox("status_whiteboard",cmdParams);
    break;
  case "assignee":
    changeAssignee(cmdParams);
    break;
  case "qacontact":
    clickMouse("bz_qa_contact_edit_action");
    document.getElementById("qa_contact").value = cmdParams;
    break;
  case "url":
    clickMouse("bz_url_edit_action");
    document.getElementById("bug_file_loc").value = cmdParams;
    break;
    // TODO dependson/blocked doesn't work. Find out why.
  case "addDependsOn":
    clickMouse("dependson_edit_action");
    addStuffToTextBox("dependson", cmdParams);
    break;
  case "removeDependsOn":
    clickMouse("dependson_edit_action");
    removeStuffFromTextBox("dependson", cmdParams);
    break;
  case "addBlocks":
    clickMouse("blocked_edit_action");
    addStuffToTextBox("blocked", cmdParams);
    break;
  case "removeBlocks":
    clickMouse("blocked_edit_action");
    removeStuffFromTextBox("blocked", cmdParams);
    break;
  case "comment":
    addStuffToTextBox("comment", cmdParams);
    break;
  case "commentIdx":
    throw "There should be no commentIdx here at all.";
    break;
  case "setNeedinfo":
    // cmdParams are actually ignored for now; we may in future
    // distinguish different actors to be target of needinfo
    setNeedinfoReporter();
    break;
  case "addCC":
    addToCCList(cmdParams);
    break;
  case "queryStringOurBugzilla":
    queryForSelection();
    break;
    // TODO flags, see also
  case "commit":
    if (cmdParams) {
      // Directly commit the form
      document.forms.namedItem("changeform").submit();
    }
    break;
  default:
    if (RHcentralCommandDispatch) {
      RHcentralCommandDispatch(cmdLabel, cmdParams);
    }
    else {
      console.error("Unknown command:\n" + cmdLabel + "\nparameters:\n" + cmdParams);
    }
  break;
  }
}

/**
 * Change assignee of the bug
 *
 * @param newAssignee
 *          String with the email address of new assigneeAElement or 'default'
 *          if the component's default assignee should be used. Value null
 *          clears "Reset Assignee to default for component" checkbox
 * @return none
 */
function changeAssignee (newAssignee) {
  var defAssigneeButton = null;
  // Previous assignee should know what's going on in his bug
  addToCCList(getOwner());

  // Optional value null
  if (newAssignee === null) {
    document.getElementById("set_default_assignee").removeAttribute(
    "checked");
    return ;
  }

  if (getDefaultAssignee) {
    if (newAssignee === "default") {
      var defAss = getDefaultAssignee();
      if (defAss) {
        newAssignee = defAss;
      }
      else {
        return ;
      }
    }
  }

  var saveFocus = document.activeElement;
  if (newAssignee) {
    clickMouse("bz_assignee_edit_action");
    document.getElementById("assigned_to").value = newAssignee;
    document.getElementById("set_default_assignee").checked = false;
    defAssigneeButton = document.getElementById("defassignee_btn");
    if (defAssigneeButton) {
      defAssigneeButton.style.display = "none";
    }
  }
  saveFocus.focus();
}

/**
 * Adds new option to the 'comment_action' scroll down box
 *
 * @param pkg
 *          String package name
 * @param cmd
 *          String with the name of the command If the 'comment_action' scroll
 *          down box doesn't exist, this function will set up new one.
 */
function addToCommentsDropdown (cmdObj) {
  var select = document.getElementById("comment_action");
  if (!select) {
    config.commandsList = [];
    document.getElementById("comments").innerHTML +=
      "<div id='make_bugzilla_comment_action'>" +
      "  <label for='comment_action'>Add Comment: </label>" +
      "  <select id='comment_action'>" +
      "  <option value=''>-- Select Comment from List --</option>" +
      "  </select>" +
      "</div>";
    select = document.getElementById("comment_action");
    select.addEventListener("change", function (evt) {
      var value = select.options[select.selectedIndex].value;
      executeCommand(config.commandsList[value]);
    }, false);
  }

  var opt = document.createElement("option");
  var objIdx = config.commandsList.length + 1;
  opt.value = objIdx;
  config.commandsList[objIdx] = cmdObj;
  opt.textContent = cmdObj.name;
  select.appendChild(opt);
}

/**
 * Generate button based on
 */
function generateButtons (pkgs, kNodes) {
  var topRowPosition = "topRowPositionID";
  var bottomRowPosition = "commit";

  // =========================================================
  if (kNodes && window.location.hostname in kNodes) {
    var killConf = kNodes[window.location.hostname];
    killNodes(document, killConf[0], killConf[1]);
  }

  // create anchor for the top toolbar
  var commentBox = document.getElementById("comment");
  var brElement = document.createElement("br");
  brElement.setAttribute("id",topRowPosition);
  commentBox.parentNode.normalize();
  commentBox.parentNode.insertBefore(brElement, commentBox);

  for (var pkg in pkgs) {
    for (var cmdIdx in pkgs[pkg]) {
      var cmdObj = pkgs[pkg][cmdIdx];
      if (cmdObj.position !== undefined) {
        switch (cmdObj.position) {
        case "topRow":
          createNewButton(topRowPosition, false, cmdObj);
          break;
        case "bottomRow":
          createNewButton(bottomRowPosition, false, cmdObj);
          break;
        case "dropDown":
          addToCommentsDropdown(cmdObj);
          break;
        default: // [+-]ID
          var firstChr = cmdObj.position.charAt(0);
        var newId = cmdObj.position.substr(1);
        createNewButton(newId, firstChr === "+", cmdObj);
        break;
        }
      }
      else {
        console.error("generateButtons : rejected cmdObj = " +
            cmdObj.toSource());
      }
    }
  }
}

function setConfigurationButton () {
  var additionalButtons = document.querySelector("#bugzilla-body *.related_actions");
  var configurationButtonUI = document.createElement("li");
  configurationButtonUI.innerHTML = "\u00A0-\u00A0<a href='' id='configurationButton'>"
    + "Triage configuration</a>";
  additionalButtons.appendChild(configurationButtonUI);
  document.getElementById("configurationButton").addEventListener(
      "click",
      function(evt) {
        self.postMessage(new Message("ChangeJSONURL", null));
        evt.stopPropagation();
        evt.preventDefault();
      }, false);
}

/**
 * Complete startup, mainly run alternate inits for non-standard BZ with proper
 * arguments
 *
 */
function completeInit() {
  // FIXME: add flags, and priority or others bits.
  var things = {
    attachments: new AttachList(document),
    comments: new CommentList(document)
  };

  if (RHBZinit) {
    RHBZinit(things);
  }

  things.comments.colorComments();

  if (tweakBugzilla && config.verboseInlineHistory) {
    tweakBugzilla(things, constantData);
  }
}


function startup() {
  // First, preflight check ... if we are not logged in, there
  // is nothing we can do.
  var logoutLink = Array.some(document.links, function (x) {
    return x.search === "?logout=1" ;
  });
  if (!logoutLink) {
    return null; // This should just finish whole content script without
    // doing any harm to anybody.
  }

  // Prepare for query buttons
  // element ID brElementPlace_location is later used in JSON files
  // Stay with this add_comment element even if RH BZ upgrades, this seems
  // to be generally much more stable (even with other bugzillas, e.g.
  // b.gnome.org)
  // then some getElementById.
  var commentArea = document.getElementsByClassName("bz_section_additional_comments")[0];
  if (commentArea) {
    var brElementPlacer = commentArea.getElementsByTagName("br");
    brElementPlacer = brElementPlacer[0];
    if (brElementPlacer) {
      brElementPlacer.setAttribute("id","brElementPlacer_location");
      brElementPlacer.parentNode.insertBefore(document.createElement("br"),
          brElementPlacer);
    }
  }

  // TODO Probably could be ignored ... used only once on line 973 of
  // rhbzpage.js
  // if (parseAbrtBacktraces && this.RE.Abrt.test(getSummary())) {
  // title = document.getElementById("short_desc_nonedit_display").textContent;

  // So, now we know we are logged in, so we can get to
  // the real work.
  setConfigurationButton();
  submitHandlerInstalled = false;

  self.postMessage(new Message("GetInstalledPackages", {
    location: window.location.href,
    login: getLogin()
  }));
}

startup();