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
|
//Released under the MIT/X11 license
//http://www.opensource.org/licenses/mit-license.php
"use strict";
//FIXME resp is JSON, not XML anymore
function addAttachmentCallback(resp) {
var newAttachID = parseInt(
resp.params.param.value.array.data.value.int, 10);
console.log("attachID = " + newAttachID);
// FIXME callback.call(param, newAttachID, data.length);
}
/**
*
* This has to stay in RHBugzillaPage because upstream doesn't have
* addAttachment XML-RPC call yet.
*
Params: $params = {
id => '<bug_id>', # ID of the bug report
comment => "<Attachment Comment>", # OPTIONAL Text string containing comment to add.
description => "<Attachment Description>", # REQUIRED Text Description of the attachment.
isprivate => <Private Attachment ON/OFF 1/0>, # OPTIONAL Whether the Attachment
will be private # Default: false
filename => "<Attachment Filename>", REQUIRED The name of the file to attach to the bug report.
obsoletes => [List of attach_id's to obsolete], OPTIONAL List if attachment ids that are
obsoleted by this new attachment.
ispatch => <Patch Attachment True/False 1/0>, OPTIONAL Whether the attachment is a Patch
or not, if not provided the it will be considered NON Patch attachment.
contenttype => "<Attachment Content Type>", OPTIONAL If the attachment is patch
REQUIRED If the attachment is not a patch
If the attachment is patch then contenttype will always be text/plain
data => "<Encoded String of the Attachment Data>", REQUIRED It is a base64
encoded string of the actual attachment data.
nomail => 0, OPTIONAL Flag that is either 1 or 0 if you want email
to be send ot not for this change }
*/
function addAttachment(data, callback, param) {
var params = [];
if (!constantData.passwordState.passAvailable) {
console
.error("addAttachment : No password, no XML-RPC calls; sorry");
return null;
}
var params = {
id : getBugNo(),
description : titleParsedAttachment,
filename : "parsed-backtrace.txt",
contenttype : "text/plain",
data : window.btoa(data),
nomail : true
};
self.postMessage(new Message("MakeJSONRPCCall", {
url : constantData.XMLRPCData[window.location.hostname].url
.replace("xmlrpc.cgi", "jsonrpc.cgi"),
method : "bugzilla.addAttachment",
params : params,
callRPC : "AddAttachmentCallback"
}));
reqCounter++;
}
|