-
Notifications
You must be signed in to change notification settings - Fork 10
/
AvailableServicesInfoRequest.qml
187 lines (157 loc) · 6.97 KB
/
AvailableServicesInfoRequest.qml
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
/* Copyright 2021 Esri
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import QtQuick 2.15
//------------------------------------------------------------------------------
import ArcGIS.AppFramework 1.0
//------------------------------------------------------------------------------
import "Portal"
//------------------------------------------------------------------------------
Item {
id: availableServiceInfoRequest
property Portal portal
property int tileIndex
property string serviceUrl
property bool useToken: true
property bool useTimeout: false
property int timeoutInterval: 30
signal complete(var data)
onComplete: {
if (timeoutTimer.running) {
timeoutTimer.stop();
}
}
// COMPONENTS //////////////////////////////////////////////////////////////
NetworkRequest {
id: serviceRequest
responseType: "json"
method: "GET"
url: serviceUrl + "?f=json" + (portal.signedIn ? "&token=" + portal.token : "")
headers {
userAgent: portal.userAgent
}
// SIGNAL IMPLEMENTATIONS //////////////////////////////////////////////
onReadyStateChanged: {
//console.log("url: ", url);
//console.log(readyState);
if (readyState === NetworkRequest.ReadyStateComplete) {
//console.log("url: ", url);
//console.log(responseText);
if (status === 200) {
try {
var serviceJson = JSON.parse(responseText);
if (serviceJson.hasOwnProperty("error")) {
if (serviceJson.error.hasOwnProperty("message")) {
if (serviceJson.error.message === "Invalid Token") {
/*
If token is invalid, the service may be unsecured so try again without token.
If a token is required for a service, the message would be "Token Required"
Therefore to switch to a unsecured check first paradigm, just swap the message check in
this if clause to "Token Required" and then add the token to the url in this
if clause and remove token from the object url parameter ~ line 26,
set useToken to be false ~ line 18, and set useToken = true in this if clause.
*/
availableServiceInfoRequest.useToken = false;
serviceRequest.url = serviceUrl + "?f=json";
availableServiceInfoRequest.sendRequest(); //.send();
}
else {
// BAD: 200 Status, Good Json, But Json has error property
availableServiceInfoRequest.complete({
"tileIndex": tileIndex,
"keep": false,
"serviceInfo": null
});
}
}
}
else {
if (_exportTilesAllowed(serviceJson)) {
// GOOD: 200 Status, Good Json and I allow exporting tiles.
availableServiceInfoRequest.complete({
"tileIndex": tileIndex,
"keep": true,
"serviceInfo": responseText,
"useToken": useToken
});
}
else {
// BAD: 200 Status, Good Json EXPORTING NOT ALLOWED.
availableServiceInfoRequest.complete({
"tileIndex": tileIndex,
"keep": false,
"serviceInfo": null
});
}
}
}
catch(e) {
// BAD: 200 Status, Bad Json or didn't return Json
availableServiceInfoRequest.complete({
"tileIndex": tileIndex,
"keep": false,
"serviceInfo": null
});
}
}
else {
// BAD: Status other than 200 so totally bad.
availableServiceInfoRequest.complete({
"tileIndex": tileIndex,
"keep": false,
"serviceInfo": null
});
}
}
}
}
Timer {
id: timeoutTimer
//interval: timeoutInterval * 1000
running: false
repeat: false
onTriggered: {
availableServiceInfoRequest.complete({
"tileIndex": tileIndex,
"keep": false,
"serviceInfo": null
});
serviceRequest.abort();
}
}
// METHODS /////////////////////////////////////////////////////////////////
function sendRequest() {
serviceRequest.send();
if (useTimeout) {
timeoutTimer.interval = timeoutInterval * 1000;
timeoutTimer.start();
}
}
//--------------------------------------------------------------------------
function _exportTilesAllowed(serviceInfo) {
if (serviceInfo.hasOwnProperty("exportTilesAllowed")) {
if (serviceInfo.exportTilesAllowed === false) {
return false;
}
else {
return true;
}
}
else {
return false;
}
}
// END /////////////////////////////////////////////////////////////////////
}