-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathResponse.js
155 lines (136 loc) · 3.13 KB
/
Response.js
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
/* Response.js */
function Response()
{
// global vars
var xml = "";
var code = "";
var errorMessage = "";
var fullMessage = "";
var globalVars = [];
var tables = [];
/*
new_ok : returns an instance of the object
*/
this.new_ok = function( xml )
{
if ( xml )
{
this.xml = xml;
return this.importData( xml );
}
}
/*
new_failed
*/
this.new_failed = function( errorMessage, fullMessage )
{
this.errorMessage = errorMessage;
this.fullMessage = fullMessage;
}
/*
rawXML
*/
this.rawXml = function()
{
return this.xml;
}
/*
importData : Takes named argument xml, which is the xml document which contains the xml
and parses it, storing the result internally
*/
this.importData = function( xml )
{
// parse the XML and get the Results
var parsedXML = $.parseXML(xml);
$xml = $( parsedXML );
$result = $xml.find("Result");
this.code = $result.attr("Code");
this.errorMessage = $result.attr("ErrorMessage");
this.fullError = $result.attr("FullError");
// The oddly named "Global Vars"
$result.find("GlobalVars").each(function(){
for ( var i = 0; i < this.attributes.length; i++ )
{
globalVars[ this.attributes.item(i).nodeName ] = this.attributes.item(i).nodeValue;
}
});
// parse the data tables
$result.find("DataTables").each(function(){
// this gets the DataTables and Count value
$(this).find("DataTable").each(function(){
// this gets the Name, RowsCount and Headers
var dt = new DataTable();
dt.importDataTable( $(this) );
tables[ dt.getTableName() ] = dt;
});
});
return;
}
/*
isOK : Indicates whether this response is ok.
*/
this.isOK = function()
{
if ( this.code == "OK" || this.code == "QueuedForProcessing" )
{
return 'OK';
}
else
{
return "NotOK"; // ??????
}
}
/*
code : Returns the message code - "OK" represents predicted state, all else represents an error.
*/
this.getCode = function()
{
return this.code;
}
/*
errorMessage : Returns the Error message ( if present ) from the message
*/
this.getErrorMessage = function()
{
return this.errorMessage;
}
/*
fullError : Returns the Full Error message ( if present ) from the message
*/
this.getFullError = function()
{
return this.fullError;
}
/*
globalParams : Exposes a hash of all global parameters.
*/
this.globalParams = function()
{
return this.globalVars;
}
/*
paramForName : Takes named argument "Name" - representing the name of the parameter to be quried
usage: response.paramForName( "setting" );
*/
this.paramForName = function( name )
{
return globalVars[name];
}
/*
tableForName : Takes named argument "Name"
- representing the name of the table - if it exists a table object is returned
usage: my $table = $response -> tableForName( Name => "table" );
*/
this.tableForName = function( name )
{
if ( typeof(name) == 'undefined' )
{
return new DataTable();
}
if ( ! tables[ name ] )
{
return new DataTable();
}
return tables[ name ];
}
}