rhbzpage.js
Summary
No overview generated for 'rhbzpage.js'
"use strict";
var util = require("util");
var xrpc = require("xmlrpc");
var apiUtils = require("api-utils");
var xhr = require("xhr");
var clip = require("clipboard");
var Color = require("color").Color;
var BZPage = require("bzpage").BZPage;
var url = require("url");
var timer = require("timer");
var selection = require("selection");
var tabs = require("tabs");
var RHBugzillaPage = function RHBugzillaPage(win, config) {
BZPage.call(this, win, config);
var manuChipStrs = [ [ "ATI Radeon", "ATI", "1002" ],
[ "ATI Mobility Radeon", "ATI", "1002" ],
[ "Intel Corporation", "INTEL", "8086" ], [ "NVIDIA", "NV", "10de" ] ];
this.RHColor = new Color(158, 41, 43);
this.FedoraColor = new Color(0, 40, 103);
this.RawhideColor = new Color(0, 119, 0);
this.RHITColor = new Color(102, 0, 102);
this.RE = {
Comment: new RegExp("^\\s*#"),
BlankLine: new RegExp("^\\s*$"),
Chipset: new RegExp("^\\s*\\[?[ 0-9.]*\\]?\\s*\\(--\\) "+
"([A-Za-z]+)\\([0-9]?\\): Chipset: (.*)$"),
ATIgetID: new RegExp("^.*\\(ChipID = 0x([0-9a-fA-F]+)\\).*$"),
Abrt: new RegExp("^\\s*\\[abrt\\]"),
signalHandler: new RegExp("^\\s*#[0-9]*\\s*<signal handler called>"),
frameNo: new RegExp("^\\s*#([0-9]*)\\s")
};
this.XMLRPCurl = "https://bugzilla.redhat.com/xmlrpc.cgi";
var that = this;
this.reqCounter = 0;
this.signaturesCounter = 0;
this.chipMagicInterestingLine = "";
this.login = this.getLogin();
this.password = this.getPassword();
var ITbutton = this.doc.getElementById("cf_issuetracker");
this.its = ITbutton ? ITbutton.value.trim() : "";
this.doc.getElementById("component").addEventListener("change",
function() {
that.component = that.getOptionValue("component");
that.changeAssignee("default");
}, false);
this.XorgLogAttList = [];
this.XorgLogAttListIndex = 0;
this.attachments = this.getAttachments();
this.markBadAttachments();
this.setDefaultAssignee();
this.btSnippet = "";
var parseAbrtBacktraces = config.gJSONData.configData.parseAbrtBacktraces;
if (parseAbrtBacktraces && this.RE.Abrt.test(this.title)) {
this.pasteBacktraceInComments();
}
if (config.gJSONData.configData.signature.length > 0) {
var signatureFedoraString = config.gJSONData.configData.signature;
this.doc.forms.namedItem("changeform").addEventListener("submit",
function() {
if (this.signaturesCounter < 1) {
that.addStuffToTextBox("comment", signatureFedoraString);
this.signaturesCounter += 1;
}
}, false);
}
this.setBranding();
this.checkComments();
if ((config.gJSONData.configData.PCIIDsURL
&& (config.PCI_ID_Array.length > 0))
&& this.maintCCAddr === "xgl-maint@redhat.com") {
var whiteboard_string = this.doc.getElementById("status_whiteboard").value;
if (!/card_/.test(whiteboard_string)) {
this.fillInChipMagic();
}
}
};
RHBugzillaPage.prototype.toString = function toString () {
return ("[Object RHBugzillaPage]");
};
RHBugzillaPage.prototype = util.heir(BZPage);
RHBugzillaPage.prototype.constructor = RHBugzillaPage;
RHBugzillaPage.prototype.getDefaultAssignee = function() {
return util.filterByRegexp(this.constantData.defaultAssignee,
this.component).toLowerCase();
};
RHBugzillaPage.prototype.setDefaultAssignee = function() {
this.defaultAssignee = this.getDefaultAssignee();
var defAss = this.defaultAssignee;
if ((defAss.length > 0) && (defAss !== this.getOwner())) {
this.constantData.defaultAssigneeTrigger = true;
this.createNewButton("bz_assignee_edit_container",true,"rh-common","setDefaultAssignee");
}
};
RHBugzillaPage.prototype.closeSomeRelease = function() {
var verNo = this.getVersion();
this.selectOption("bug_status", "CLOSED");
var text = "";
var resolution = "";
if (selection.text) {
text = selection.text.trim();
}
if (text.length > 0) {
resolution = "CURRENTRELEASE";
this.doc.getElementById("cf_fixed_in").value = text;
} else if (verNo === 999) {
resolution = "RAWHIDE";
} else {
resolution = "NEXTRELEASE";
}
this.centralCommandDispatch("resolution", resolution);
};
RHBugzillaPage.prototype.centralCommandDispatch = function(cmdLabel, cmdParams) {
console.log("cmdLabel = " + cmdLabel + ", cmdParams = " + cmdParams);
switch (cmdLabel) {
case "closeUpstream":
this.addClosingUpstream();
break;
case "computeResolution":
this.closeSomeRelease();
break;
case "queryStringOurBugzilla":
this.queryForSelection();
break;
case "queryUpstreamBugzilla":
this.queryUpstream();
break;
case "sendBugUpstream":
this.sendBugUpstream();
break;
case "markTriaged":
this.markBugTriaged();
break;
case "chipMagic":
var splitArr = cmdParams.split("\t");
this.fillInWhiteBoard(splitArr[0], splitArr[1]);
break;
default:
BZPage.prototype.centralCommandDispatch.call(this, cmdLabel, cmdParams);
break;
}
};
RHBugzillaPage.prototype.ProfessionalProducts = [
"Red Hat Enterprise Linux",
"Red Hat Enterprise MRG"
];
RHBugzillaPage.prototype.pasteBacktraceInComments = function() {
var notedLabel = this.doc.querySelector("label[for='newcc']");
while (notedLabel.firstChild) {
var node = notedLabel.removeChild(notedLabel.firstChild);
notedLabel.parentNode.insertBefore(node, notedLabel);
}
notedLabel.parentNode.removeChild(notedLabel);
var abrtQueryURL = "https://bugzilla.redhat.com/buglist.cgi?"
+ "cmdtype=dorem&remaction=run&namedcmd=all%20NEW%20abrt%20crashes&sharer_id=74116";
var mainTitle = this.doc
.getElementsByClassName("bz_alias_short_desc_container")[0];
var abrtButton = this.doc.createElement("a");
abrtButton.setAttribute("accesskey", "a");
abrtButton.setAttribute("href", abrtQueryURL);
abrtButton.textContent = "Abrt bugs";
mainTitle.appendChild(abrtButton);
if (this.idContainsWord("cf_devel_whiteboard", 'btparsed')) {
this.addStuffToTextBox('status_whiteboard', 'btparsed');
}
if (!(this.isTriaged() || this.idContainsWord("status_whiteboard",
'btparsed'))) {
var btAttachments = this.attachments
.filter(function(att, idx, arr) {
return (/backtrace/.test(att[0]));
});
btAttachments.forEach(function(x) {
attURL = "https://bugzilla.redhat.com/attachment.cgi?id="
+ x[1];
if (!this.btSnippet) {
var btRaw = util.loadText(attURL, function(ret) {
this.btSnippet = this.parseBacktrace(ret);
if (this.btSnippet) {
this.addStuffToTextBox("comment", this.btSnippet);
this.addStuffToTextBox("status_whiteboard",
"btparsed");
}
}, this);
}
}, this);
}
};
RHBugzillaPage.prototype.markBadAttachments = function() {
var badMIMEArray = [ "application/octet-stream", "text/x-log", "undefined" ];
var badAttachments = this.attachments.filter(function(att, idx, arr) {
return (util.isInList(att[2], badMIMEArray));
});
if (badAttachments.length > 0) {
var titleElement = this.doc
.getElementsByClassName("bz_alias_short_desc_container")[0];
titleElement.style.backgroundColor = "olive";
titleElement.appendChild(this.createFixAllButton(badAttachments));
badAttachments.forEach(function(x, i, a) {
this.addTextLink(x);
}, this);
}
};
RHBugzillaPage.prototype.isEnterprise = function() {
var prod = this.product;
var result = this.ProfessionalProducts.some(function(elem,idx,arr) {
return new RegExp(elem).test(prod);
});
return result;
};
RHBugzillaPage.prototype.isTriaged = function() {
if (this.version > 7 && this.version < 12) {
return this.doc.getElementById("bug_status").value.toUpperCase() !== "NEW";
} else {
return this.hasKeyword("Triaged");
}
};
RHBugzillaPage.prototype.setBranding = function() {
var brandColor = {};
var TriagedColor = {};
if (this.isEnterprise()) {
if (this.its && (this.its.length > 0)) {
brandColor = this.RHITColor;
} else {
brandColor = this.RHColor;
}
} else if (new RegExp("Fedora").test(this.product)) {
if (this.version === 999) {
brandColor = this.RawhideColor;
} else {
brandColor = this.FedoraColor;
}
}
this.doc.getElementsByTagName("body")[0].style.background = brandColor
.toString()
+ " none";
this.doc.getElementById("titles").style.background = brandColor.toString()
+ " none";
var titleElem = this.doc.getElementsByTagName("title")[0];
titleElem.textContent = titleElem.textContent.slice(4);
var bodyTitleParent = this.doc.getElementById("summary_alias_container").parentNode;
var bodyTitleElem = bodyTitleParent.getElementsByTagName("b")[0];
bodyTitleElem.textContent = bodyTitleElem.textContent.slice(4);
if (this.hasKeyword("Security")) {
this.doc.getElementById("bugzilla-body").style.background = this.SalmonPink
.toString() + ' none';
}
if (this.isTriaged()) {
this.doc.getElementById("bz_field_status").style.background = brandColor
.lightColor().toString()
+ " none";
}
if (util.isInList(this.maintCCAddr, this.CCList)) {
var ccEditBoxElem = this.doc.getElementById("cc_edit_area_showhide");
ccEditBoxElem.style.color = "navy";
ccEditBoxElem.style.fontWeight = "bolder";
ccEditBoxElem.style.textDecoration = "underline";
}
var compElems;
if (this.suspiciousComponents
&& util.isInList(this.component, this.suspiciousComponents)
&& (compElems = this.doc
.getElementById("bz_component_edit_container"))) {
compElems.style.background = "red none";
}
};
RHBugzillaPage.prototype.fillInWhiteBoard = function(iLine, driverStr) {
var that = this;
function groupIDs(manStr, cardStrID) {
var outStr = util.filterByRegexp(chipIDsGroupings, manStr + "," + cardStrID);
if (outStr.length === 0) {
outStr = "UNGROUPED_" + manStr + "/" + cardStrID;
}
return outStr;
}
function checkChipStringFromID(manufacturerNo, cardNo) {
var soughtID = (manufacturerNo + "," + cardNo).toUpperCase();
var outList = config.PCI_ID_Array[soughtID];
if (outList) {
return outList;
} else {
return "";
}
}
var outStr = "";
var cardIDStr = "";
var cardIDArr = [];
chipSwitchboard: if (driverStr === "RADEON") {
var cardID = iLine.replace(this.RE.ATIgetID, "$1");
cardIDArr = checkChipStringFromID("1002", cardID);
if (cardIDArr.length > 0) {
cardIDStr = cardIDArr[0];
if (cardIDArr[1]) {
optionStr = cardIDArr[1];
outStr = groupIDs(driverStr, cardIDStr) + "/" + optionStr;
} else {
outStr = groupIDs(driverStr, cardIDStr);
optionStr = "";
}
} else {
outStr = "**** FULLSTRING: " + iLine;
}
} else {
cardIDArr = manuChipStrs.filter(function(el, ind, arr) {
return new RegExp(el[0], "i").test(iLine);
});
if (cardIDArr && (cardIDArr.length > 0)) {
cardIDArr = cardIDArr[0];
} else {
outStr = iLine;
break chipSwitchboard;
}
iLine = iLine.replace(new RegExp(cardIDArr[0], "i")).trim();
if (driverStr === "INTEL") {
outStr = groupIDs(cardIDArr[1], iLine);
} else {
outStr = iLine;
}
}
this.addStuffToTextBox("status_whiteboard", ("card_" + outStr).trim());
this.doc.getElementById("chipmagic").style.display = "none";
};
RHBugzillaPage.prototype.fillInChipMagic = function () {
var that = this;
var XorgLogURL = "";
var XorgLogAttID = "";
var XorgLogFound = false;
var attURL = "", interestingLine = "";
var interestingArray = [];
this.XorgLogAttList = this.attachments.filter(function (value, index, array) {
return (/[xX].*log/.test(value[0]) && /text/.test(value[2]));
});
if (this.XorgLogAttList.length === 0) {
return;
}
XorgLogAttID = this.XorgLogAttList[this.XorgLogAttListIndex][1];
attURL = "https://bugzilla.redhat.com/attachment.cgi?id="+XorgLogAttID;
that = this;
util.loadText(attURL, function(ret){
var interestingLineArr = ret.split("\n").
filter(function (v,i,a) {
return that.RE.Chipset.test(v);
});
if (interestingLineArr.length >0) {
interestingArray = that.RE.Chipset.exec(interestingLineArr[0]);
interestingLine = interestingArray[2].
replace(/[\s"]+/g," ").trim();
// Persuade createNewButton to have mercy and to actually add
// non-default button
that.constantData.chipMagicTrigger = true;
that.chipMagicInterestingLine = interestingLine+"\t"+interestingArray[1]
.toUpperCase();
that.createNewButton("status_whiteboard", true, "rh-xorg", "chipMagic");
}
});
this.XorgLogAttListIndex++;
};
RHBugzillaPage.prototype.getSelectionOrClipboard = function getSelectionOrClipboard () {
var text = selection.text;
if (!text) {
text = clip.get();
}
return text;
};
/**
* Opens a new tab with a query for the given text in the selected component
*
* @param text to be searched for
* @param component String with the component name (maybe latter regexp?)
* @param product (optional) string with the product name, if undefined,
* search in all products
* @return None
*
*/
RHBugzillaPage.prototype.queryInNewTab = function(text, component, product) {
var urlStr = "https:
if (product) {
urlStr += "&product=" + product.trim();
}
if (component) {
urlStr += "&field0-0-0=component&type0-0-0=substring&value0-0-0="
+ component.trim();
}
if (text) {
text = encodeURIComponent(text.trim());
var searchText = "&field1-0-0=longdesc&type1-0-0=substring&value1-0-0="
+ text
+ "&field1-0-1=attach_data.thedata&type1-0-1=substring&value1-0-1="
+ text
+ "&field1-0-2=status_whiteboard&type1-0-2=substring&value1-0-2="
+ text;
urlStr += searchText;
tabs.open({url: urlStr});
}
};
RHBugzillaPage.prototype.queryForSelection = function() {
var text = this.getSelectionOrClipboard();
if (text) {
this.queryInNewTab(text, this.component);
}
};
RHBugzillaPage.prototype.queryUpstream = function() {
console.log("Querying upstream!");
var text = this.getSelectionOrClipboard();
if (text) {
text = encodeURIComponent(text.trim());
var queryUpstreamBugsURLArray = this.constantData.queryUpstreamBug;
var urlBase = util.filterByRegexp(queryUpstreamBugsURLArray, this.component);
tabs.open({
url: urlBase + text,
inBackground: true,
onOpen: function (t) {
t.activate();
}
});
}
};
RHBugzillaPage.prototype.sendBugUpstream = function() {
var that = this;
var urlStr = util.filterByRegexp(this.constantData.newUpstreamBug, this
.getOptionValue("component"));
var ret = tabs.open({
url: urlStr,
inBackground: true,
onOpen: function (tab) {
var otherDoc = tab.contentDocument;
var otherElems = otherDoc.forms.namedItem("Create").elements;
otherElems.namedItem("short_desc").value = that.doc
.getElementById("short_desc_nonedit_display").textContent
.trim();
otherElems.namedItem("comment").value = that.collectComments();
ret.focus();
}
});
};
RHBugzillaPage.prototype.parseAttachmentLine = function(inElem) {
var MIMEtype = "";
var size = 0;
if (inElem.getElementsByClassName("bz_obsolete").length > 0) {
return ( []);
}
var attName = inElem.getElementsByTagName("b")[0].textContent.trim();
var aHrefsArr = inElem.getElementsByTagName("a");
var aHref = Array.filter(aHrefsArr, function(x) {
return x.textContent.trim() === "Details";
})[0];
var id = parseInt(aHref.getAttribute("href").replace(
/^.*attachment.cgi\?id=/, ""), 10);
var stringArray = inElem.getElementsByClassName("bz_attach_extra_info")[0].textContent
.replace(/[\n ()]+/g, " ").trim().split(", ");
size = parseInt(stringArray[0], 10);
MIMEtype = stringArray[1].split(" ")[0];
return [ attName, id, MIMEtype, size, inElem ];
};
RHBugzillaPage.prototype.fixElement = function(elem, beforeText, accKey, afterText) {
elem.setAttribute("accesskey", accKey.toLowerCase());
elem.innerHTML = beforeText + "<b><u>" + accKey + "</u></b>" + afterText;
return elem;
};
RHBugzillaPage.prototype.getBugzillaName = function(URLhostname) {
var bugzillaID = "";
if (this.constantData.bugzillalabelNames[URLhostname]) {
bugzillaID = this.constantData.bugzillalabelNames[URLhostname];
} else {
bugzillaID = "";
}
return bugzillaID;
};
RHBugzillaPage.prototype.fixingMIMECallBack = function() {
var that = this;
console.log("fixingMIMECallBack / that.doc = " + that.doc);
console.log("fixingMIMECallBack / that.win = " + that.win);
if (--this.reqCounter <= 0) {
timer.setTimeout(function () {
that.win.location.reload(true);
}, 1000);
}
};
RHBugzillaPage.prototype.fixAttachById = function(id, type, email) {
if (type === undefined) {
type = "text/plain";
}
if (email === undefined) {
email = false;
}
var msg = new xrpc.XMLRPCMessage("bugzilla.updateAttachMimeType");
msg.addParameter( {
'attach_id' : id,
'mime_type' : type,
'nomail' : !email
});
msg.addParameter(this.login);
msg.addParameter(this.password);
util.httpPOST(this.XMLRPCurl, msg.xml(), this.fixingMIMECallBack,
this, "text/xml", "text/xml");
this.reqCounter++;
};
RHBugzillaPage.prototype.createFixAllButton = function(list) {
if (!xrpc.XMLRPCMessage) {
return;
}
var that = this;
var elem = this.doc.createElement("a");
elem.setAttribute("href", "");
elem.setAttribute("accesskey", "f");
elem.innerHTML = "<b>F</b>ix all";
elem.addEventListener("click", function() {
Array.forEach(list, function(x) {
this.fixAttachById(x[1]);
}, that);
}, false);
return elem;
};
RHBugzillaPage.prototype.addTextLink = function(row) {
var that = this;
var elemS = row[4].getElementsByTagName("td");
var elem = elemS[elemS.length - 1];
elem.innerHTML += "<br/><a href=''>Text</a>";
elem.addEventListener("click", function(x) {
that.fixAttachById(row[1], "text/plain");
}, false);
};
RHBugzillaPage.prototype.addClosingUpstream = function() {
var refs = this.doc.getElementById("external_bugs_table")
.getElementsByTagName("tr");
var inputBox = this.doc.getElementById("inputbox");
var externalBugID = 0;
var wholeURL = "";
this.doc.getElementsByName("external_id")[0].setAttribute("id",
"external_id");
if (inputBox.value.match(/^http.*/)) {
wholeURL = inputBox.value;
var helpURL = new url.URL(wholeURL);
var paramsArr = helpURL.path.replace(/^\?/, '').split('&');
var params = {}, s = [];
paramsArr.forEach(function(par, idx, arr) {
s = par.split('=');
params[s[0]] = s[1];
});
if (params.id) {
externalBugID = parseInt(params.id, 10);
inputBox.value = externalBugID;
}
var bugzillaName = this.getBugzillaName(helpURL.hostname);
this.selectOption("external_id", bugzillaName);
} else if (!isNaN(inputBox.value)) {
externalBugID = parseInt(inputBox.value, 10);
var bugzillaHostname = this.doc.getElementById("external_id").value;
wholeURL = bugzillaHostname+"show_bug.cgi?id="+externalBugID;
} else {
}
if ((externalBugID > 0) || (refs.length > 2)) {
var msgStr = this.commentStrings.sentUpstreamString;
msgStr = msgStr.replace("ยงยงยง", wholeURL);
this.centralCommandDispatch("comment",msgStr);
this.centralCommandDispatch("status", "CLOSED");
this.centralCommandDispatch("resolution", "UPSTREAM");
} else {
console.log("No external bug specified among the External References!");
}
};
RHBugzillaPage.prototype.markBugTriaged = function() {
var ver = this.getVersion();
console.log("Marking bug as Triaged!");
if ((!this.isEnterprise()) && (ver <= 12)) {
this.selectOption("bug_status", "ASSIGNED");
}
this.addStuffToTextBox("keywords","Triaged");
};
RHBugzillaPage.prototype.parseBacktrace = function(ret) {
var splitArray = ret.split("\n");
var i = 0, ii = splitArray.length;
var outStr = "", curLine = "", numStr = "";
var lineCounter = 0, endLineNo = 0;
while (i < ii) {
if (this.RE.signalHandler.test(splitArray[i])) {
break;
}
i++;
}
if (i < ii) {
lineCounter = parseInt(this.RE.frameNo.exec(splitArray[i])[1], 10);
endLineNo = lineCounter + NumberOfFrames;
curLine = splitArray[i];
while ((lineCounter < endLineNo) && (curLine.trim().length > 0)
&& (i < ii)) {
outStr += curLine + '\n';
numStr = this.RE.frameNo.exec(curLine);
if (numStr) {
lineCounter = parseInt(numStr[1], 10);
}
i++;
curLine = splitArray[i];
}
}
return outStr;
};
exports.RHBugzillaPage = RHBugzillaPage;
Documentation generated by
JSDoc on Wed Jun 23 09:33:14 2010