QGIS API Documentation 3.41.0-Master (fda2aa46e9a)
Loading...
Searching...
No Matches
qgsarcgisrestquery.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsarcgisrestquery.cpp
3 ----------------------
4 begin : December 2020
5 copyright : (C) 2020 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#include "qgsarcgisrestquery.h"
17#include "moc_qgsarcgisrestquery.cpp"
18#include "qgsarcgisrestutils.h"
22#include "qgslogger.h"
23#include "qgsapplication.h"
24#include "qgsmessagelog.h"
25#include "qgsauthmanager.h"
26#include "qgsvariantutils.h"
27
28#include <QUrl>
29#include <QUrlQuery>
30#include <QImageReader>
31#include <QRegularExpression>
32#include <QJsonParseError>
33
34QVariantMap QgsArcGisRestQueryUtils::getServiceInfo( const QString &baseurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders, const QString &urlPrefix )
35{
36 // http://sampleserver5.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer?f=json
37 QUrl queryUrl( baseurl );
38 QUrlQuery query( queryUrl );
39 query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
40 queryUrl.setQuery( query );
41 return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, nullptr, urlPrefix );
42}
43
44QVariantMap QgsArcGisRestQueryUtils::getLayerInfo( const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders, const QString &urlPrefix )
45{
46 // http://sampleserver5.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer/1?f=json
47 QUrl queryUrl( layerurl );
48 QUrlQuery query( queryUrl );
49 query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
50 queryUrl.setQuery( query );
51 return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, nullptr, urlPrefix );
52}
53
54QVariantMap QgsArcGisRestQueryUtils::getObjectIds( const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders, const QString &urlPrefix, const QgsRectangle &bbox, const QString &whereClause )
55{
56 // http://sampleserver5.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer/1/query?where=1%3D1&returnIdsOnly=true&f=json
57 QUrl queryUrl( layerurl + "/query" );
58 QUrlQuery query( queryUrl );
59 query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
60 query.addQueryItem( QStringLiteral( "where" ), whereClause.isEmpty() ? QStringLiteral( "1=1" ) : whereClause );
61 query.addQueryItem( QStringLiteral( "returnIdsOnly" ), QStringLiteral( "true" ) );
62 if ( !bbox.isNull() )
63 {
64 query.addQueryItem( QStringLiteral( "geometry" ), QStringLiteral( "%1,%2,%3,%4" )
65 .arg( bbox.xMinimum(), 0, 'f', -1 ).arg( bbox.yMinimum(), 0, 'f', -1 )
66 .arg( bbox.xMaximum(), 0, 'f', -1 ).arg( bbox.yMaximum(), 0, 'f', -1 ) );
67 query.addQueryItem( QStringLiteral( "geometryType" ), QStringLiteral( "esriGeometryEnvelope" ) );
68 query.addQueryItem( QStringLiteral( "spatialRel" ), QStringLiteral( "esriSpatialRelEnvelopeIntersects" ) );
69 }
70 queryUrl.setQuery( query );
71 return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, nullptr, urlPrefix );
72}
73
74QgsRectangle QgsArcGisRestQueryUtils::getExtent( const QString &layerurl, const QString &whereClause, const QString &authcfg, const QgsHttpHeaders &requestHeaders, const QString &urlPrefix )
75{
76 // http://sampleserver5.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer/1/query?where=1%3D1&returnExtentOnly=true&f=json
77 QUrl queryUrl( layerurl + "/query" );
78 QUrlQuery query( queryUrl );
79 query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
80 query.addQueryItem( QStringLiteral( "where" ), whereClause );
81 query.addQueryItem( QStringLiteral( "returnExtentOnly" ), QStringLiteral( "true" ) );
82 queryUrl.setQuery( query );
83 QString errorTitle;
84 QString errorText;
85 const QVariantMap res = queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, nullptr, urlPrefix );
86 if ( res.isEmpty() )
87 {
88 QgsDebugError( QStringLiteral( "getExtent failed: %1 - %2" ).arg( errorTitle, errorText ) );
89 return QgsRectangle();
90 }
91
92 return QgsArcGisRestUtils::convertRectangle( res.value( QStringLiteral( "extent" ) ) );
93}
94
95QVariantMap QgsArcGisRestQueryUtils::getObjects( const QString &layerurl, const QString &authcfg, const QList<quint32> &objectIds, const QString &crs,
96 bool fetchGeometry, const QStringList &fetchAttributes,
97 bool fetchM, bool fetchZ,
98 const QgsRectangle &filterRect,
99 QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders, QgsFeedback *feedback, const QString &urlPrefix )
100{
101 QStringList ids;
102 for ( const int id : objectIds )
103 {
104 ids.append( QString::number( id ) );
105 }
106 QUrl queryUrl( layerurl + "/query" );
107 QUrlQuery query( queryUrl );
108 query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
109 query.addQueryItem( QStringLiteral( "objectIds" ), ids.join( QLatin1Char( ',' ) ) );
110 const QString wkid = crs.indexOf( QLatin1Char( ':' ) ) >= 0 ? crs.split( ':' )[1] : QString();
111 query.addQueryItem( QStringLiteral( "inSR" ), wkid );
112 query.addQueryItem( QStringLiteral( "outSR" ), wkid );
113
114 query.addQueryItem( QStringLiteral( "returnGeometry" ), fetchGeometry ? QStringLiteral( "true" ) : QStringLiteral( "false" ) );
115
116 QString outFields;
117 if ( fetchAttributes.isEmpty() )
118 outFields = QStringLiteral( "*" );
119 else
120 outFields = fetchAttributes.join( ',' );
121 query.addQueryItem( QStringLiteral( "outFields" ), outFields );
122
123 query.addQueryItem( QStringLiteral( "returnM" ), fetchM ? QStringLiteral( "true" ) : QStringLiteral( "false" ) );
124 query.addQueryItem( QStringLiteral( "returnZ" ), fetchZ ? QStringLiteral( "true" ) : QStringLiteral( "false" ) );
125 if ( !filterRect.isNull() )
126 {
127 query.addQueryItem( QStringLiteral( "geometry" ), QStringLiteral( "%1,%2,%3,%4" )
128 .arg( filterRect.xMinimum(), 0, 'f', -1 ).arg( filterRect.yMinimum(), 0, 'f', -1 )
129 .arg( filterRect.xMaximum(), 0, 'f', -1 ).arg( filterRect.yMaximum(), 0, 'f', -1 ) );
130 query.addQueryItem( QStringLiteral( "geometryType" ), QStringLiteral( "esriGeometryEnvelope" ) );
131 query.addQueryItem( QStringLiteral( "spatialRel" ), QStringLiteral( "esriSpatialRelEnvelopeIntersects" ) );
132 }
133 queryUrl.setQuery( query );
134 return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, feedback, urlPrefix );
135}
136
137QList<quint32> QgsArcGisRestQueryUtils::getObjectIdsByExtent( const QString &layerurl, const QgsRectangle &filterRect, QString &errorTitle, QString &errorText, const QString &authcfg, const QgsHttpHeaders &requestHeaders, QgsFeedback *feedback, const QString &whereClause, const QString &urlPrefix )
138{
139 QUrl queryUrl( layerurl + "/query" );
140 QUrlQuery query( queryUrl );
141 query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
142 query.addQueryItem( QStringLiteral( "where" ), whereClause.isEmpty() ? QStringLiteral( "1=1" ) : whereClause );
143 query.addQueryItem( QStringLiteral( "returnIdsOnly" ), QStringLiteral( "true" ) );
144 query.addQueryItem( QStringLiteral( "geometry" ), QStringLiteral( "%1,%2,%3,%4" )
145 .arg( filterRect.xMinimum(), 0, 'f', -1 ).arg( filterRect.yMinimum(), 0, 'f', -1 )
146 .arg( filterRect.xMaximum(), 0, 'f', -1 ).arg( filterRect.yMaximum(), 0, 'f', -1 ) );
147 query.addQueryItem( QStringLiteral( "geometryType" ), QStringLiteral( "esriGeometryEnvelope" ) );
148 query.addQueryItem( QStringLiteral( "spatialRel" ), QStringLiteral( "esriSpatialRelEnvelopeIntersects" ) );
149 queryUrl.setQuery( query );
150 const QVariantMap objectIdData = queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, feedback, urlPrefix );
151
152 if ( objectIdData.isEmpty() )
153 {
154 return QList<quint32>();
155 }
156
157 QList<quint32> ids;
158 const QVariantList objectIdsList = objectIdData[QStringLiteral( "objectIds" )].toList();
159 ids.reserve( objectIdsList.size() );
160 for ( const QVariant &objectId : objectIdsList )
161 {
162 ids << objectId.toInt();
163 }
164 return ids;
165}
166
167QByteArray QgsArcGisRestQueryUtils::queryService( const QUrl &u, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders, QgsFeedback *feedback, QString *contentType, const QString &urlPrefix )
168{
169 QUrl url = parseUrl( u );
170
171 if ( !urlPrefix.isEmpty() )
172 url = QUrl( urlPrefix + url.toString() );
173
174 QNetworkRequest request( url );
175 QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisRestUtils" ) );
176 requestHeaders.updateNetworkRequest( request );
177
178 QgsBlockingNetworkRequest networkRequest;
179 networkRequest.setAuthCfg( authcfg );
180 const QgsBlockingNetworkRequest::ErrorCode error = networkRequest.get( request, false, feedback );
181
182 if ( feedback && feedback->isCanceled() )
183 return QByteArray();
184
185 // Handle network errors
187 {
188 QgsDebugError( QStringLiteral( "Network error: %1" ).arg( networkRequest.errorMessage() ) );
189 errorTitle = QStringLiteral( "Network error" );
190 errorText = networkRequest.errorMessage();
191
192 // try to get detailed error message from reply
193 const QString content = networkRequest.reply().content();
194 const thread_local QRegularExpression errorRx( QStringLiteral( "Error: <.*?>(.*?)<" ) );
195 const QRegularExpressionMatch match = errorRx.match( content );
196 if ( match.hasMatch() )
197 {
198 errorText = match.captured( 1 );
199 }
200
201 return QByteArray();
202 }
203
204 const QgsNetworkReplyContent content = networkRequest.reply();
205 if ( contentType )
206 *contentType = content.rawHeader( "Content-Type" );
207 return content.content();
208}
209
210QVariantMap QgsArcGisRestQueryUtils::queryServiceJSON( const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders, QgsFeedback *feedback, const QString &urlPrefix )
211{
212 const QByteArray reply = queryService( url, authcfg, errorTitle, errorText, requestHeaders, feedback, nullptr, urlPrefix );
213 if ( !errorTitle.isEmpty() )
214 {
215 return QVariantMap();
216 }
217 if ( feedback && feedback->isCanceled() )
218 return QVariantMap();
219
220 // Parse data
221 QJsonParseError err;
222 const QJsonDocument doc = QJsonDocument::fromJson( reply, &err );
223 if ( doc.isNull() )
224 {
225 errorTitle = QStringLiteral( "Parsing error" );
226 errorText = err.errorString();
227 QgsDebugError( QStringLiteral( "Parsing error: %1" ).arg( err.errorString() ) );
228 return QVariantMap();
229 }
230 const QVariantMap res = doc.object().toVariantMap();
231 if ( res.contains( QStringLiteral( "error" ) ) )
232 {
233 const QVariantMap error = res.value( QStringLiteral( "error" ) ).toMap();
234 errorText = error.value( QStringLiteral( "message" ) ).toString();
235 errorTitle = QObject::tr( "Error %1" ).arg( error.value( QStringLiteral( "code" ) ).toString() );
236 return QVariantMap();
237 }
238 return res;
239}
240
241QUrl QgsArcGisRestQueryUtils::parseUrl( const QUrl &url, bool *isTestEndpoint )
242{
243 if ( isTestEndpoint )
244 *isTestEndpoint = false;
245
246 QUrl modifiedUrl( url );
247 if ( modifiedUrl.toString().contains( QLatin1String( "fake_qgis_http_endpoint" ) ) )
248 {
249 if ( isTestEndpoint )
250 *isTestEndpoint = true;
251
252 // Just for testing with local files instead of http:// resources
253 QString modifiedUrlString = modifiedUrl.toString();
254 // Qt5 does URL encoding from some reason (of the FILTER parameter for example)
255 modifiedUrlString = QUrl::fromPercentEncoding( modifiedUrlString.toUtf8() );
256 modifiedUrlString.replace( QLatin1String( "fake_qgis_http_endpoint/" ), QLatin1String( "fake_qgis_http_endpoint_" ) );
257 QgsDebugMsgLevel( QStringLiteral( "Get %1" ).arg( modifiedUrlString ), 2 );
258 modifiedUrlString = modifiedUrlString.mid( QStringLiteral( "http://" ).size() );
259 QString args = modifiedUrlString.indexOf( '?' ) >= 0 ? modifiedUrlString.mid( modifiedUrlString.indexOf( '?' ) ) : QString();
260 if ( modifiedUrlString.size() > 150 )
261 {
262 args = QCryptographicHash::hash( args.toUtf8(), QCryptographicHash::Md5 ).toHex();
263 }
264 else
265 {
266 args.replace( QLatin1String( "?" ), QLatin1String( "_" ) );
267 args.replace( QLatin1String( "&" ), QLatin1String( "_" ) );
268 args.replace( QLatin1String( "<" ), QLatin1String( "_" ) );
269 args.replace( QLatin1String( ">" ), QLatin1String( "_" ) );
270 args.replace( QLatin1String( "'" ), QLatin1String( "_" ) );
271 args.replace( QLatin1String( "\"" ), QLatin1String( "_" ) );
272 args.replace( QLatin1String( " " ), QLatin1String( "_" ) );
273 args.replace( QLatin1String( ":" ), QLatin1String( "_" ) );
274 args.replace( QLatin1String( "/" ), QLatin1String( "_" ) );
275 args.replace( QLatin1String( "\n" ), QLatin1String( "_" ) );
276 }
277#ifdef Q_OS_WIN
278 // Passing "urls" like "http://c:/path" to QUrl 'eats' the : after c,
279 // so we must restore it
280 if ( modifiedUrlString[1] == '/' )
281 {
282 modifiedUrlString = modifiedUrlString[0] + ":/" + modifiedUrlString.mid( 2 );
283 }
284#endif
285 modifiedUrlString = modifiedUrlString.mid( 0, modifiedUrlString.indexOf( '?' ) ) + args;
286 QgsDebugMsgLevel( QStringLiteral( "Get %1 (after laundering)" ).arg( modifiedUrlString ), 2 );
287 modifiedUrl = QUrl::fromLocalFile( modifiedUrlString );
288 if ( !QFile::exists( modifiedUrlString ) )
289 {
290 QgsDebugError( QStringLiteral( "Local test file %1 for URL %2 does not exist!!!" ).arg( modifiedUrlString, url.toString() ) );
291 }
292 }
293
294 return modifiedUrl;
295}
296
297void QgsArcGisRestQueryUtils::adjustBaseUrl( QString &baseUrl, const QString &name )
298{
299 const QStringList parts = name.split( '/' );
300 QString checkString;
301 for ( const QString &part : parts )
302 {
303 if ( !checkString.isEmpty() )
304 checkString += QString( '/' );
305
306 checkString += part;
307 if ( baseUrl.indexOf( QRegularExpression( checkString.replace( '/', QLatin1String( "\\/" ) ) + QStringLiteral( "\\/?$" ) ) ) > -1 )
308 {
309 baseUrl = baseUrl.left( baseUrl.length() - checkString.length() - 1 );
310 break;
311 }
312 }
313}
314
315void QgsArcGisRestQueryUtils::visitFolderItems( const std::function< void( const QString &, const QString & ) > &visitor, const QVariantMap &serviceData, const QString &baseUrl )
316{
317 QString base( baseUrl );
318 bool baseChecked = false;
319 if ( !base.endsWith( '/' ) )
320 base += QLatin1Char( '/' );
321
322 const QStringList folderList = serviceData.value( QStringLiteral( "folders" ) ).toStringList();
323 for ( const QString &folder : folderList )
324 {
325 if ( !baseChecked )
326 {
327 adjustBaseUrl( base, folder );
328 baseChecked = true;
329 }
330 visitor( folder, base + folder );
331 }
332}
333
334void QgsArcGisRestQueryUtils::visitServiceItems( const std::function<void ( const QString &, const QString &, Qgis::ArcGisRestServiceType )> &visitor, const QVariantMap &serviceData, const QString &baseUrl )
335{
336 QString base( baseUrl );
337 bool baseChecked = false;
338 if ( !base.endsWith( '/' ) )
339 base += QLatin1Char( '/' );
340
341 const QVariantList serviceList = serviceData.value( QStringLiteral( "services" ) ).toList();
342 for ( const QVariant &service : serviceList )
343 {
344 const QVariantMap serviceMap = service.toMap();
345 const QString serviceTypeString = serviceMap.value( QStringLiteral( "type" ) ).toString();
346 const Qgis::ArcGisRestServiceType serviceType = QgsArcGisRestUtils::serviceTypeFromString( serviceTypeString );
347
348 switch ( serviceType )
349 {
353 // supported
354 break;
355
360 // unsupported
361 continue;
362 }
363
364 const QString serviceName = serviceMap.value( QStringLiteral( "name" ) ).toString();
365 const QString displayName = serviceName.split( '/' ).last();
366 if ( !baseChecked )
367 {
368 adjustBaseUrl( base, serviceName );
369 baseChecked = true;
370 }
371
372 visitor( displayName, base + serviceName + '/' + serviceTypeString, serviceType );
373 }
374}
375
376void QgsArcGisRestQueryUtils::addLayerItems( const std::function<void ( const QString &, ServiceTypeFilter, Qgis::GeometryType, const QString &, const QString &, const QString &, const QString &, bool, const QgsCoordinateReferenceSystem &, const QString & )> &visitor, const QVariantMap &serviceData, const QString &parentUrl, const QString &parentSupportedFormats, const ServiceTypeFilter filter )
377{
378 const QgsCoordinateReferenceSystem crs = QgsArcGisRestUtils::convertSpatialReference( serviceData.value( QStringLiteral( "spatialReference" ) ).toMap() );
379
380 bool found = false;
381 const QList<QByteArray> supportedFormats = QImageReader::supportedImageFormats();
382 const QStringList supportedImageFormatTypes = serviceData.value( QStringLiteral( "supportedImageFormatTypes" ) ).toString().isEmpty() ? parentSupportedFormats.split( ',' ) : serviceData.value( QStringLiteral( "supportedImageFormatTypes" ) ).toString().split( ',' );
383 QString format = supportedImageFormatTypes.value( 0 );
384 for ( const QString &encoding : supportedImageFormatTypes )
385 {
386 for ( const QByteArray &fmt : supportedFormats )
387 {
388 if ( encoding.startsWith( fmt, Qt::CaseInsensitive ) )
389 {
390 format = encoding;
391 found = true;
392 break;
393 }
394 }
395 if ( found )
396 break;
397 }
398 const QStringList capabilities = serviceData.value( QStringLiteral( "capabilities" ) ).toString().split( ',' );
399
400 // If the requested layer type is vector, do not show raster-only layers (i.e. non query-able layers)
401 const bool serviceMayHaveQueryCapability = capabilities.contains( QStringLiteral( "Query" ) ) ||
402 serviceData.value( QStringLiteral( "serviceDataType" ) ).toString().startsWith( QLatin1String( "esriImageService" ) );
403
404 const bool serviceMayRenderMaps = capabilities.contains( QStringLiteral( "Map" ) ) ||
405 serviceData.value( QStringLiteral( "serviceDataType" ) ).toString().startsWith( QLatin1String( "esriImageService" ) );
406
407 const QVariantList layerInfoList = serviceData.value( QStringLiteral( "layers" ) ).toList();
408 for ( const QVariant &layerInfo : layerInfoList )
409 {
410 const QVariantMap layerInfoMap = layerInfo.toMap();
411 const QString id = layerInfoMap.value( QStringLiteral( "id" ) ).toString();
412 const QString parentLayerId = layerInfoMap.value( QStringLiteral( "parentLayerId" ) ).toString();
413 const QString name = layerInfoMap.value( QStringLiteral( "name" ) ).toString();
414 const QString description = layerInfoMap.value( QStringLiteral( "description" ) ).toString();
415
416 // Yes, potentially we may visit twice, once as as a raster (if applicable), and once as a vector (if applicable)!
417 if ( serviceMayRenderMaps && ( filter == ServiceTypeFilter::Raster || filter == ServiceTypeFilter::AllTypes ) )
418 {
419 if ( !layerInfoMap.value( QStringLiteral( "subLayerIds" ) ).toList().empty() )
420 {
421 visitor( parentLayerId, ServiceTypeFilter::Raster, Qgis::GeometryType::Unknown, id, name, description, parentUrl + '/' + id, true, QgsCoordinateReferenceSystem(), format );
422 }
423 else
424 {
425 visitor( parentLayerId, ServiceTypeFilter::Raster, Qgis::GeometryType::Unknown, id, name, description, parentUrl + '/' + id, false, crs, format );
426 }
427 }
428
429 if ( serviceMayHaveQueryCapability && ( filter == ServiceTypeFilter::Vector || filter == ServiceTypeFilter::AllTypes ) )
430 {
431 const QString geometryType = layerInfoMap.value( QStringLiteral( "geometryType" ) ).toString();
432#if 0
433 // we have a choice here -- if geometryType is unknown and the service reflects that it supports Map capabilities,
434 // then we can't be sure whether or not the individual sublayers support Query or Map requests only. So we either:
435 // 1. Send off additional requests for each individual layer's capabilities (too expensive)
436 // 2. Err on the side of only showing services we KNOW will work for layer -- but this has the side effect that layers
437 // which ARE available as feature services will only show as raster mapserver layers, which is VERY bad/restrictive
438 // 3. Err on the side of showing services we THINK may work, even though some of them may or may not work depending on the actual
439 // server configuration
440 // We opt for 3, because otherwise we're making it impossible for users to load valid vector layers into QGIS
441
442 if ( serviceMayRenderMaps )
443 {
444 if ( geometryType.isEmpty() )
445 continue;
446 }
447#endif
448
449 const Qgis::WkbType wkbType = QgsArcGisRestUtils::convertGeometryType( geometryType );
450
451
452 if ( !layerInfoMap.value( QStringLiteral( "subLayerIds" ) ).toList().empty() )
453 {
454 visitor( parentLayerId, ServiceTypeFilter::Vector, QgsWkbTypes::geometryType( wkbType ), id, name, description, parentUrl + '/' + id, true, QgsCoordinateReferenceSystem(), format );
455 }
456 else
457 {
458 visitor( parentLayerId, ServiceTypeFilter::Vector, QgsWkbTypes::geometryType( wkbType ), id, name, description, parentUrl + '/' + id, false, crs, format );
459 }
460 }
461 }
462
463 const QVariantList tableInfoList = serviceData.value( QStringLiteral( "tables" ) ).toList();
464 for ( const QVariant &tableInfo : tableInfoList )
465 {
466 const QVariantMap tableInfoMap = tableInfo.toMap();
467 const QString id = tableInfoMap.value( QStringLiteral( "id" ) ).toString();
468 const QString parentLayerId = tableInfoMap.value( QStringLiteral( "parentLayerId" ) ).toString();
469 const QString name = tableInfoMap.value( QStringLiteral( "name" ) ).toString();
470 const QString description = tableInfoMap.value( QStringLiteral( "description" ) ).toString();
471
472 if ( serviceMayHaveQueryCapability && ( filter == ServiceTypeFilter::Vector || filter == ServiceTypeFilter::AllTypes ) )
473 {
474 if ( !tableInfoMap.value( QStringLiteral( "subLayerIds" ) ).toList().empty() )
475 {
476 visitor( parentLayerId, ServiceTypeFilter::Vector, Qgis::GeometryType::Null, id, name, description, parentUrl + '/' + id, true, QgsCoordinateReferenceSystem(), format );
477 }
478 else
479 {
480 visitor( parentLayerId, ServiceTypeFilter::Vector, Qgis::GeometryType::Null, id, name, description, parentUrl + '/' + id, false, crs, format );
481 }
482 }
483 }
484
485 // Add root MapServer as raster layer when multiple layers are listed
486 if ( filter != ServiceTypeFilter::Vector && layerInfoList.count() > 1 && serviceData.contains( QStringLiteral( "supportedImageFormatTypes" ) ) )
487 {
488 const QString name = QStringLiteral( "(%1)" ).arg( QObject::tr( "All layers" ) );
489 const QString description = serviceData.value( QStringLiteral( "Comments" ) ).toString();
490 visitor( nullptr, ServiceTypeFilter::Raster, Qgis::GeometryType::Unknown, nullptr, name, description, parentUrl, false, crs, format );
491 }
492
493 // Add root ImageServer as layer
494 if ( serviceData.value( QStringLiteral( "serviceDataType" ) ).toString().startsWith( QLatin1String( "esriImageService" ) ) )
495 {
496 const QString name = serviceData.value( QStringLiteral( "name" ) ).toString();
497 const QString description = serviceData.value( QStringLiteral( "description" ) ).toString();
498 visitor( nullptr, ServiceTypeFilter::Raster, Qgis::GeometryType::Unknown, nullptr, name, description, parentUrl, false, crs, format );
499 }
500}
501
502
504
505//
506// QgsArcGisAsyncQuery
507//
508
509QgsArcGisAsyncQuery::QgsArcGisAsyncQuery( QObject *parent )
510 : QObject( parent )
511{
512}
513
514QgsArcGisAsyncQuery::~QgsArcGisAsyncQuery()
515{
516 if ( mReply )
517 mReply->deleteLater();
518}
519
520void QgsArcGisAsyncQuery::start( const QUrl &url, const QString &authCfg, QByteArray *result, bool allowCache, const QgsHttpHeaders &headers, const QString &urlPrefix )
521{
522 mResult = result;
523 QUrl mUrl = url;
524 if ( !urlPrefix.isEmpty() )
525 mUrl = QUrl( urlPrefix + url.toString() );
526 QNetworkRequest request( mUrl );
527
528 headers.updateNetworkRequest( request );
529
530 if ( !authCfg.isEmpty() && !QgsApplication::authManager()->updateNetworkRequest( request, authCfg ) )
531 {
532 const QString error = tr( "network request update failed for authentication config" );
533 emit failed( QStringLiteral( "Network" ), error );
534 return;
535 }
536
537 QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncQuery" ) );
538 if ( allowCache )
539 {
540 request.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache );
541 request.setAttribute( QNetworkRequest::CacheSaveControlAttribute, true );
542 }
543 mReply = QgsNetworkAccessManager::instance()->get( request );
544 connect( mReply, &QNetworkReply::finished, this, &QgsArcGisAsyncQuery::handleReply );
545}
546
547void QgsArcGisAsyncQuery::handleReply()
548{
549 mReply->deleteLater();
550 // Handle network errors
551 if ( mReply->error() != QNetworkReply::NoError )
552 {
553 QgsDebugError( QStringLiteral( "Network error: %1" ).arg( mReply->errorString() ) );
554 emit failed( QStringLiteral( "Network error" ), mReply->errorString() );
555 return;
556 }
557
558 // Handle HTTP redirects
559 const QVariant redirect = mReply->attribute( QNetworkRequest::RedirectionTargetAttribute );
560 if ( !QgsVariantUtils::isNull( redirect ) )
561 {
562 QNetworkRequest request = mReply->request();
563 QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncQuery" ) );
564 QgsDebugMsgLevel( "redirecting to " + redirect.toUrl().toString(), 2 );
565 request.setUrl( redirect.toUrl() );
566 mReply = QgsNetworkAccessManager::instance()->get( request );
567 connect( mReply, &QNetworkReply::finished, this, &QgsArcGisAsyncQuery::handleReply );
568 return;
569 }
570
571 *mResult = mReply->readAll();
572 mResult = nullptr;
573 emit finished();
574}
575
576//
577// QgsArcGisAsyncParallelQuery
578//
579
580QgsArcGisAsyncParallelQuery::QgsArcGisAsyncParallelQuery( const QString &authcfg, const QgsHttpHeaders &requestHeaders, QObject *parent )
581 : QObject( parent )
582 , mAuthCfg( authcfg )
583 , mRequestHeaders( requestHeaders )
584{
585}
586
587void QgsArcGisAsyncParallelQuery::start( const QVector<QUrl> &urls, QVector<QByteArray> *results, bool allowCache )
588{
589 Q_ASSERT( results->size() == urls.size() );
590 mResults = results;
591 mPendingRequests = mResults->size();
592 for ( int i = 0, n = urls.size(); i < n; ++i )
593 {
594 QNetworkRequest request( urls[i] );
595 QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncParallelQuery" ) );
596 QgsSetRequestInitiatorId( request, QString::number( i ) );
597
598 mRequestHeaders.updateNetworkRequest( request );
599 if ( !mAuthCfg.isEmpty() && !QgsApplication::authManager()->updateNetworkRequest( request, mAuthCfg ) )
600 {
601 const QString error = tr( "network request update failed for authentication config" );
602 mErrors.append( error );
603 QgsMessageLog::logMessage( error, tr( "Network" ) );
604 continue;
605 }
606
607 request.setAttribute( QNetworkRequest::HttpPipeliningAllowedAttribute, true );
608 if ( allowCache )
609 {
610 request.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache );
611 request.setAttribute( QNetworkRequest::CacheSaveControlAttribute, true );
612 request.setRawHeader( "Connection", "keep-alive" );
613 }
614 QNetworkReply *reply = QgsNetworkAccessManager::instance()->get( request );
615 reply->setProperty( "idx", i );
616 connect( reply, &QNetworkReply::finished, this, &QgsArcGisAsyncParallelQuery::handleReply );
617 }
618}
619
620void QgsArcGisAsyncParallelQuery::handleReply()
621{
622 QNetworkReply *reply = qobject_cast<QNetworkReply *>( QObject::sender() );
623 const QVariant redirect = reply->attribute( QNetworkRequest::RedirectionTargetAttribute );
624 const int idx = reply->property( "idx" ).toInt();
625 reply->deleteLater();
626 if ( reply->error() != QNetworkReply::NoError )
627 {
628 // Handle network errors
629 mErrors.append( reply->errorString() );
630 --mPendingRequests;
631 }
632 else if ( !QgsVariantUtils::isNull( redirect ) )
633 {
634 // Handle HTTP redirects
635 QNetworkRequest request = reply->request();
636 QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncParallelQuery" ) );
637 QgsDebugMsgLevel( "redirecting to " + redirect.toUrl().toString(), 2 );
638 request.setUrl( redirect.toUrl() );
639 reply = QgsNetworkAccessManager::instance()->get( request );
640 reply->setProperty( "idx", idx );
641 connect( reply, &QNetworkReply::finished, this, &QgsArcGisAsyncParallelQuery::handleReply );
642 }
643 else
644 {
645 // All OK
646 ( *mResults )[idx] = reply->readAll();
647 --mPendingRequests;
648 }
649 if ( mPendingRequests == 0 )
650 {
651 emit finished( mErrors );
652 mResults = nullptr;
653 mErrors.clear();
654 }
655}
656
ArcGisRestServiceType
Available ArcGIS REST service types.
Definition qgis.h:4067
@ GeocodeServer
GeocodeServer.
@ Unknown
Other unknown/unsupported type.
@ FeatureServer
FeatureServer.
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:337
@ Unknown
Unknown types.
@ Null
No geometry.
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:256
static QgsAuthManager * authManager()
Returns the application's authentication manager instance.
static void visitFolderItems(const std::function< void(const QString &folderName, const QString &url)> &visitor, const QVariantMap &serviceData, const QString &baseUrl)
Calls the specified visitor function on all folder items found within the given service data.
static QVariantMap queryServiceJSON(const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), QgsFeedback *feedback=nullptr, const QString &urlPrefix=QString())
Performs a blocking request to a URL and returns the retrieved JSON content.
static QVariantMap getObjects(const QString &layerurl, const QString &authcfg, const QList< quint32 > &objectIds, const QString &crs, bool fetchGeometry, const QStringList &fetchAttributes, bool fetchM, bool fetchZ, const QgsRectangle &filterRect, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), QgsFeedback *feedback=nullptr, const QString &urlPrefix=QString())
Retrieves all matching objects from the specified layer URL.
static QgsRectangle getExtent(const QString &layerurl, const QString &whereClause, const QString &authcfg, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), const QString &urlPrefix=QString())
Retrieves the extent for the features matching a whereClause.
static QVariantMap getServiceInfo(const QString &baseurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), const QString &urlPrefix=QString())
Retrieves JSON service info for the specified base URL.
static QVariantMap getObjectIds(const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), const QString &urlPrefix=QString(), const QgsRectangle &bbox=QgsRectangle(), const QString &whereClause=QString())
Retrieves all object IDs for the specified layer URL.
static QUrl parseUrl(const QUrl &url, bool *isTestEndpoint=nullptr)
Parses and processes a url.
static QVariantMap getLayerInfo(const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), const QString &urlPrefix=QString())
Retrieves JSON layer info for the specified layer URL.
static void addLayerItems(const std::function< void(const QString &parentLayerId, ServiceTypeFilter serviceType, Qgis::GeometryType geometryType, const QString &layerId, const QString &name, const QString &description, const QString &url, bool isParentLayer, const QgsCoordinateReferenceSystem &crs, const QString &format)> &visitor, const QVariantMap &serviceData, const QString &parentUrl, const QString &parentSupportedFormats, const ServiceTypeFilter filter=ServiceTypeFilter::AllTypes)
Calls the specified visitor function on all layer items found within the given service data.
static void visitServiceItems(const std::function< void(const QString &serviceName, const QString &url, Qgis::ArcGisRestServiceType serviceType)> &visitor, const QVariantMap &serviceData, const QString &baseUrl)
Calls the specified visitor function on all service items found within the given service data.
static QByteArray queryService(const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), QgsFeedback *feedback=nullptr, QString *contentType=nullptr, const QString &urlPrefix=QString())
Performs a blocking request to a URL and returns the retrieved data.
static QList< quint32 > getObjectIdsByExtent(const QString &layerurl, const QgsRectangle &filterRect, QString &errorTitle, QString &errorText, const QString &authcfg, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), QgsFeedback *feedback=nullptr, const QString &whereClause=QString(), const QString &urlPrefix=QString())
Gets a list of object IDs which fall within the specified extent.
static QgsCoordinateReferenceSystem convertSpatialReference(const QVariantMap &spatialReferenceMap)
Converts a spatial reference JSON definition to a QgsCoordinateReferenceSystem value.
static Qgis::WkbType convertGeometryType(const QString &type)
Converts an ESRI REST geometry type to a WKB type.
static Qgis::ArcGisRestServiceType serviceTypeFromString(const QString &type)
Converts a string value to a REST service type.
static QgsRectangle convertRectangle(const QVariant &value)
Converts a rectangle value to a QgsRectangle.
bool updateNetworkRequest(QNetworkRequest &request, const QString &authcfg, const QString &dataprovider=QString())
Provider call to update a QNetworkRequest with an authentication config.
A thread safe class for performing blocking (sync) network requests, with full support for QGIS proxy...
void setAuthCfg(const QString &authCfg)
Sets the authentication config id which should be used during the request.
QString errorMessage() const
Returns the error message string, after a get(), post(), head() or put() request has been made.
ErrorCode get(QNetworkRequest &request, bool forceRefresh=false, QgsFeedback *feedback=nullptr, RequestFlags requestFlags=QgsBlockingNetworkRequest::RequestFlags())
Performs a "get" operation on the specified request.
@ NoError
No error was encountered.
QgsNetworkReplyContent reply() const
Returns the content of the network reply, after a get(), post(), head() or put() request has been mad...
This class represents a coordinate reference system (CRS).
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
This class implements simple http header management.
bool updateNetworkRequest(QNetworkRequest &request) const
Updates a request by adding all the HTTP headers.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
static QgsNetworkAccessManager * instance(Qt::ConnectionType connectionType=Qt::BlockingQueuedConnection)
Returns a pointer to the active QgsNetworkAccessManager for the current thread.
Encapsulates a network reply within a container which is inexpensive to copy and safe to pass between...
QByteArray content() const
Returns the reply content.
QByteArray rawHeader(const QByteArray &headerName) const
Returns the content of the header with the specified headerName, or an empty QByteArray if the specif...
A rectangle specified with double values.
double xMinimum() const
Returns the x minimum value (left side of rectangle).
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
double xMaximum() const
Returns the x maximum value (right side of rectangle).
bool isNull() const
Test if the rectangle is null (holding no spatial information).
double yMaximum() const
Returns the y maximum value (top side of rectangle).
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
static Qgis::GeometryType geometryType(Qgis::WkbType type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
#define QgsDebugMsgLevel(str, level)
Definition qgslogger.h:39
#define QgsDebugError(str)
Definition qgslogger.h:38
#define QgsSetRequestInitiatorClass(request, _class)
#define QgsSetRequestInitiatorId(request, str)
const QgsCoordinateReferenceSystem & crs