QGIS API Documentation  3.22.4-Białowieża (ce8e65e95e)
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 "qgsarcgisrestutils.h"
20 #include "qgslogger.h"
21 #include "qgsapplication.h"
22 #include "qgsmessagelog.h"
23 #include "qgsauthmanager.h"
24 #include "qgscoordinatetransform.h"
25 
26 #include <QUrl>
27 #include <QUrlQuery>
28 #include <QImageReader>
29 #include <QRegularExpression>
30 
31 QVariantMap QgsArcGisRestQueryUtils::getServiceInfo( const QString &baseurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders )
32 {
33  // http://sampleserver5.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer?f=json
34  QUrl queryUrl( baseurl );
35  QUrlQuery query( queryUrl );
36  query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
37  queryUrl.setQuery( query );
38  return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders );
39 }
40 
41 QVariantMap QgsArcGisRestQueryUtils::getLayerInfo( const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders )
42 {
43  // http://sampleserver5.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer/1?f=json
44  QUrl queryUrl( layerurl );
45  QUrlQuery query( queryUrl );
46  query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
47  queryUrl.setQuery( query );
48  return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders );
49 }
50 
51 QVariantMap QgsArcGisRestQueryUtils::getObjectIds( const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders, const QgsRectangle &bbox )
52 {
53  // http://sampleserver5.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer/1/query?where=1%3D1&returnIdsOnly=true&f=json
54  QUrl queryUrl( layerurl + "/query" );
55  QUrlQuery query( queryUrl );
56  query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
57  query.addQueryItem( QStringLiteral( "where" ), QStringLiteral( "1=1" ) );
58  query.addQueryItem( QStringLiteral( "returnIdsOnly" ), QStringLiteral( "true" ) );
59  if ( !bbox.isNull() )
60  {
61  query.addQueryItem( QStringLiteral( "geometry" ), QStringLiteral( "%1,%2,%3,%4" )
62  .arg( bbox.xMinimum(), 0, 'f', -1 ).arg( bbox.yMinimum(), 0, 'f', -1 )
63  .arg( bbox.xMaximum(), 0, 'f', -1 ).arg( bbox.yMaximum(), 0, 'f', -1 ) );
64  query.addQueryItem( QStringLiteral( "geometryType" ), QStringLiteral( "esriGeometryEnvelope" ) );
65  query.addQueryItem( QStringLiteral( "spatialRel" ), QStringLiteral( "esriSpatialRelEnvelopeIntersects" ) );
66  }
67  queryUrl.setQuery( query );
68  return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders );
69 }
70 
71 QVariantMap QgsArcGisRestQueryUtils::getObjects( const QString &layerurl, const QString &authcfg, const QList<quint32> &objectIds, const QString &crs,
72  bool fetchGeometry, const QStringList &fetchAttributes,
73  bool fetchM, bool fetchZ,
74  const QgsRectangle &filterRect,
75  QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders, QgsFeedback *feedback )
76 {
77  QStringList ids;
78  for ( const int id : objectIds )
79  {
80  ids.append( QString::number( id ) );
81  }
82  QUrl queryUrl( layerurl + "/query" );
83  QUrlQuery query( queryUrl );
84  query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
85  query.addQueryItem( QStringLiteral( "objectIds" ), ids.join( QLatin1Char( ',' ) ) );
86  const QString wkid = crs.indexOf( QLatin1Char( ':' ) ) >= 0 ? crs.split( ':' )[1] : QString();
87  query.addQueryItem( QStringLiteral( "inSR" ), wkid );
88  query.addQueryItem( QStringLiteral( "outSR" ), wkid );
89 
90  query.addQueryItem( QStringLiteral( "returnGeometry" ), fetchGeometry ? QStringLiteral( "true" ) : QStringLiteral( "false" ) );
91 
92  QString outFields;
93  if ( fetchAttributes.isEmpty() )
94  outFields = QStringLiteral( "*" );
95  else
96  outFields = fetchAttributes.join( ',' );
97  query.addQueryItem( QStringLiteral( "outFields" ), outFields );
98 
99  query.addQueryItem( QStringLiteral( "returnM" ), fetchM ? QStringLiteral( "true" ) : QStringLiteral( "false" ) );
100  query.addQueryItem( QStringLiteral( "returnZ" ), fetchZ ? QStringLiteral( "true" ) : QStringLiteral( "false" ) );
101  if ( !filterRect.isNull() )
102  {
103  query.addQueryItem( QStringLiteral( "geometry" ), QStringLiteral( "%1,%2,%3,%4" )
104  .arg( filterRect.xMinimum(), 0, 'f', -1 ).arg( filterRect.yMinimum(), 0, 'f', -1 )
105  .arg( filterRect.xMaximum(), 0, 'f', -1 ).arg( filterRect.yMaximum(), 0, 'f', -1 ) );
106  query.addQueryItem( QStringLiteral( "geometryType" ), QStringLiteral( "esriGeometryEnvelope" ) );
107  query.addQueryItem( QStringLiteral( "spatialRel" ), QStringLiteral( "esriSpatialRelEnvelopeIntersects" ) );
108  }
109  queryUrl.setQuery( query );
110  return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, feedback );
111 }
112 
113 QList<quint32> QgsArcGisRestQueryUtils::getObjectIdsByExtent( const QString &layerurl, const QgsRectangle &filterRect, QString &errorTitle, QString &errorText, const QString &authcfg, const QgsStringMap &requestHeaders, QgsFeedback *feedback )
114 {
115  QUrl queryUrl( layerurl + "/query" );
116  QUrlQuery query( queryUrl );
117  query.addQueryItem( QStringLiteral( "f" ), QStringLiteral( "json" ) );
118  query.addQueryItem( QStringLiteral( "where" ), QStringLiteral( "1=1" ) );
119  query.addQueryItem( QStringLiteral( "returnIdsOnly" ), QStringLiteral( "true" ) );
120  query.addQueryItem( QStringLiteral( "geometry" ), QStringLiteral( "%1,%2,%3,%4" )
121  .arg( filterRect.xMinimum(), 0, 'f', -1 ).arg( filterRect.yMinimum(), 0, 'f', -1 )
122  .arg( filterRect.xMaximum(), 0, 'f', -1 ).arg( filterRect.yMaximum(), 0, 'f', -1 ) );
123  query.addQueryItem( QStringLiteral( "geometryType" ), QStringLiteral( "esriGeometryEnvelope" ) );
124  query.addQueryItem( QStringLiteral( "spatialRel" ), QStringLiteral( "esriSpatialRelEnvelopeIntersects" ) );
125  queryUrl.setQuery( query );
126  const QVariantMap objectIdData = queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, feedback );
127 
128  if ( objectIdData.isEmpty() )
129  {
130  return QList<quint32>();
131  }
132 
133  QList<quint32> ids;
134  const QVariantList objectIdsList = objectIdData[QStringLiteral( "objectIds" )].toList();
135  ids.reserve( objectIdsList.size() );
136  for ( const QVariant &objectId : objectIdsList )
137  {
138  ids << objectId.toInt();
139  }
140  return ids;
141 }
142 
143 QByteArray QgsArcGisRestQueryUtils::queryService( const QUrl &u, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders, QgsFeedback *feedback, QString *contentType )
144 {
145  const QUrl url = parseUrl( u );
146 
147  QNetworkRequest request( url );
148  QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisRestUtils" ) );
149  for ( auto it = requestHeaders.constBegin(); it != requestHeaders.constEnd(); ++it )
150  {
151  request.setRawHeader( it.key().toUtf8(), it.value().toUtf8() );
152  }
153 
154  QgsBlockingNetworkRequest networkRequest;
155  networkRequest.setAuthCfg( authcfg );
156  const QgsBlockingNetworkRequest::ErrorCode error = networkRequest.get( request, false, feedback );
157 
158  if ( feedback && feedback->isCanceled() )
159  return QByteArray();
160 
161  // Handle network errors
162  if ( error != QgsBlockingNetworkRequest::NoError )
163  {
164  QgsDebugMsg( QStringLiteral( "Network error: %1" ).arg( networkRequest.errorMessage() ) );
165  errorTitle = QStringLiteral( "Network error" );
166  errorText = networkRequest.errorMessage();
167  return QByteArray();
168  }
169 
170  const QgsNetworkReplyContent content = networkRequest.reply();
171  if ( contentType )
172  *contentType = content.rawHeader( "Content-Type" );
173  return content.content();
174 }
175 
176 QVariantMap QgsArcGisRestQueryUtils::queryServiceJSON( const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders, QgsFeedback *feedback )
177 {
178  const QByteArray reply = queryService( url, authcfg, errorTitle, errorText, requestHeaders, feedback );
179  if ( !errorTitle.isEmpty() )
180  {
181  return QVariantMap();
182  }
183  if ( feedback && feedback->isCanceled() )
184  return QVariantMap();
185 
186  // Parse data
187  QJsonParseError err;
188  const QJsonDocument doc = QJsonDocument::fromJson( reply, &err );
189  if ( doc.isNull() )
190  {
191  errorTitle = QStringLiteral( "Parsing error" );
192  errorText = err.errorString();
193  QgsDebugMsg( QStringLiteral( "Parsing error: %1" ).arg( err.errorString() ) );
194  return QVariantMap();
195  }
196  const QVariantMap res = doc.object().toVariantMap();
197  if ( res.contains( QStringLiteral( "error" ) ) )
198  {
199  const QVariantMap error = res.value( QStringLiteral( "error" ) ).toMap();
200  errorText = error.value( QStringLiteral( "message" ) ).toString();
201  errorTitle = QObject::tr( "Error %1" ).arg( error.value( QStringLiteral( "code" ) ).toString() );
202  return QVariantMap();
203  }
204  return res;
205 }
206 
207 QUrl QgsArcGisRestQueryUtils::parseUrl( const QUrl &url )
208 {
209  QUrl modifiedUrl( url );
210  if ( modifiedUrl.toString().contains( QLatin1String( "fake_qgis_http_endpoint" ) ) )
211  {
212  // Just for testing with local files instead of http:// resources
213  QString modifiedUrlString = modifiedUrl.toString();
214  // Qt5 does URL encoding from some reason (of the FILTER parameter for example)
215  modifiedUrlString = QUrl::fromPercentEncoding( modifiedUrlString.toUtf8() );
216  modifiedUrlString.replace( QLatin1String( "fake_qgis_http_endpoint/" ), QLatin1String( "fake_qgis_http_endpoint_" ) );
217  QgsDebugMsg( QStringLiteral( "Get %1" ).arg( modifiedUrlString ) );
218  modifiedUrlString = modifiedUrlString.mid( QStringLiteral( "http://" ).size() );
219  QString args = modifiedUrlString.mid( modifiedUrlString.indexOf( '?' ) );
220  if ( modifiedUrlString.size() > 150 )
221  {
222  args = QCryptographicHash::hash( args.toUtf8(), QCryptographicHash::Md5 ).toHex();
223  }
224  else
225  {
226  args.replace( QLatin1String( "?" ), QLatin1String( "_" ) );
227  args.replace( QLatin1String( "&" ), QLatin1String( "_" ) );
228  args.replace( QLatin1String( "<" ), QLatin1String( "_" ) );
229  args.replace( QLatin1String( ">" ), QLatin1String( "_" ) );
230  args.replace( QLatin1String( "'" ), QLatin1String( "_" ) );
231  args.replace( QLatin1String( "\"" ), QLatin1String( "_" ) );
232  args.replace( QLatin1String( " " ), QLatin1String( "_" ) );
233  args.replace( QLatin1String( ":" ), QLatin1String( "_" ) );
234  args.replace( QLatin1String( "/" ), QLatin1String( "_" ) );
235  args.replace( QLatin1String( "\n" ), QLatin1String( "_" ) );
236  }
237 #ifdef Q_OS_WIN
238  // Passing "urls" like "http://c:/path" to QUrl 'eats' the : after c,
239  // so we must restore it
240  if ( modifiedUrlString[1] == '/' )
241  {
242  modifiedUrlString = modifiedUrlString[0] + ":/" + modifiedUrlString.mid( 2 );
243  }
244 #endif
245  modifiedUrlString = modifiedUrlString.mid( 0, modifiedUrlString.indexOf( '?' ) ) + args;
246  QgsDebugMsg( QStringLiteral( "Get %1 (after laundering)" ).arg( modifiedUrlString ) );
247  modifiedUrl = QUrl::fromLocalFile( modifiedUrlString );
248  }
249 
250  return modifiedUrl;
251 }
252 
253 void QgsArcGisRestQueryUtils::adjustBaseUrl( QString &baseUrl, const QString &name )
254 {
255  const QStringList parts = name.split( '/' );
256  QString checkString;
257  for ( const QString &part : parts )
258  {
259  if ( !checkString.isEmpty() )
260  checkString += QString( '/' );
261 
262  checkString += part;
263  if ( baseUrl.indexOf( QRegularExpression( checkString.replace( '/', QLatin1String( "\\/" ) ) + QStringLiteral( "\\/?$" ) ) ) > -1 )
264  {
265  baseUrl = baseUrl.left( baseUrl.length() - checkString.length() - 1 );
266  break;
267  }
268  }
269 }
270 
271 void QgsArcGisRestQueryUtils::visitFolderItems( const std::function< void( const QString &, const QString & ) > &visitor, const QVariantMap &serviceData, const QString &baseUrl )
272 {
273  QString base( baseUrl );
274  bool baseChecked = false;
275  if ( !base.endsWith( '/' ) )
276  base += QLatin1Char( '/' );
277 
278  const QStringList folderList = serviceData.value( QStringLiteral( "folders" ) ).toStringList();
279  for ( const QString &folder : folderList )
280  {
281  if ( !baseChecked )
282  {
283  adjustBaseUrl( base, folder );
284  baseChecked = true;
285  }
286  visitor( folder, base + folder );
287  }
288 }
289 
290 void QgsArcGisRestQueryUtils::visitServiceItems( const std::function<void ( const QString &, const QString &, const QString &, const ServiceTypeFilter )> &visitor, const QVariantMap &serviceData, const QString &baseUrl )
291 {
292  QString base( baseUrl );
293  bool baseChecked = false;
294  if ( !base.endsWith( '/' ) )
295  base += QLatin1Char( '/' );
296 
297  const QVariantList serviceList = serviceData.value( QStringLiteral( "services" ) ).toList();
298  for ( const QVariant &service : serviceList )
299  {
300  const QVariantMap serviceMap = service.toMap();
301  const QString serviceType = serviceMap.value( QStringLiteral( "type" ) ).toString();
302  if ( serviceType != QLatin1String( "MapServer" ) && serviceType != QLatin1String( "ImageServer" ) && serviceType != QLatin1String( "FeatureServer" ) )
303  continue;
304 
305  const ServiceTypeFilter type = serviceType == QLatin1String( "FeatureServer" ) ? Vector : Raster;
306 
307  const QString serviceName = serviceMap.value( QStringLiteral( "name" ) ).toString();
308  const QString displayName = serviceName.split( '/' ).last();
309  if ( !baseChecked )
310  {
311  adjustBaseUrl( base, serviceName );
312  baseChecked = true;
313  }
314 
315  visitor( displayName, base + serviceName + '/' + serviceType, serviceType, type );
316  }
317 }
318 
319 void QgsArcGisRestQueryUtils::addLayerItems( const std::function<void ( const QString &, ServiceTypeFilter, QgsWkbTypes::GeometryType, const QString &, const QString &, const QString &, const QString &, bool, const QString &, const QString & )> &visitor, const QVariantMap &serviceData, const QString &parentUrl, const QString &parentSupportedFormats, const ServiceTypeFilter filter )
320 {
321  const QString authid = QgsArcGisRestUtils::convertSpatialReference( serviceData.value( QStringLiteral( "spatialReference" ) ).toMap() ).authid();
322 
323  bool found = false;
324  const QList<QByteArray> supportedFormats = QImageReader::supportedImageFormats();
325  const QStringList supportedImageFormatTypes = serviceData.value( QStringLiteral( "supportedImageFormatTypes" ) ).toString().isEmpty() ? parentSupportedFormats.split( ',' ) : serviceData.value( QStringLiteral( "supportedImageFormatTypes" ) ).toString().split( ',' );
326  QString format = supportedImageFormatTypes.value( 0 );
327  for ( const QString &encoding : supportedImageFormatTypes )
328  {
329  for ( const QByteArray &fmt : supportedFormats )
330  {
331  if ( encoding.startsWith( fmt, Qt::CaseInsensitive ) )
332  {
333  format = encoding;
334  found = true;
335  break;
336  }
337  }
338  if ( found )
339  break;
340  }
341  const QStringList capabilities = serviceData.value( QStringLiteral( "capabilities" ) ).toString().split( ',' );
342 
343  // If the requested layer type is vector, do not show raster-only layers (i.e. non query-able layers)
344  const bool serviceMayHaveQueryCapability = capabilities.contains( QStringLiteral( "Query" ) ) ||
345  serviceData.value( QStringLiteral( "serviceDataType" ) ).toString().startsWith( QLatin1String( "esriImageService" ) );
346 
347  const bool serviceMayRenderMaps = capabilities.contains( QStringLiteral( "Map" ) ) ||
348  serviceData.value( QStringLiteral( "serviceDataType" ) ).toString().startsWith( QLatin1String( "esriImageService" ) );
349 
350  const QVariantList layerInfoList = serviceData.value( QStringLiteral( "layers" ) ).toList();
351  for ( const QVariant &layerInfo : layerInfoList )
352  {
353  const QVariantMap layerInfoMap = layerInfo.toMap();
354  const QString id = layerInfoMap.value( QStringLiteral( "id" ) ).toString();
355  const QString parentLayerId = layerInfoMap.value( QStringLiteral( "parentLayerId" ) ).toString();
356  const QString name = layerInfoMap.value( QStringLiteral( "name" ) ).toString();
357  const QString description = layerInfoMap.value( QStringLiteral( "description" ) ).toString();
358 
359  // Yes, potentially we may visit twice, once as as a raster (if applicable), and once as a vector (if applicable)!
360  if ( serviceMayRenderMaps && ( filter == Raster || filter == AllTypes ) )
361  {
362  if ( !layerInfoMap.value( QStringLiteral( "subLayerIds" ) ).toList().empty() )
363  {
364  visitor( parentLayerId, Raster, QgsWkbTypes::UnknownGeometry, id, name, description, parentUrl + '/' + id, true, QString(), format );
365  }
366  else
367  {
368  visitor( parentLayerId, Raster, QgsWkbTypes::UnknownGeometry, id, name, description, parentUrl + '/' + id, false, authid, format );
369  }
370  }
371 
372  if ( serviceMayHaveQueryCapability && ( filter == Vector || filter == AllTypes ) )
373  {
374  const QString geometryType = layerInfoMap.value( QStringLiteral( "geometryType" ) ).toString();
375 #if 0
376  // we have a choice here -- if geometryType is unknown and the service reflects that it supports Map capabilities,
377  // then we can't be sure whether or not the individual sublayers support Query or Map requests only. So we either:
378  // 1. Send off additional requests for each individual layer's capabilities (too expensive)
379  // 2. Err on the side of only showing services we KNOW will work for layer -- but this has the side effect that layers
380  // which ARE available as feature services will only show as raster mapserver layers, which is VERY bad/restrictive
381  // 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
382  // server configuration
383  // We opt for 3, because otherwise we're making it impossible for users to load valid vector layers into QGIS
384 
385  if ( serviceMayRenderMaps )
386  {
387  if ( geometryType.isEmpty() )
388  continue;
389  }
390 #endif
391 
392  const QgsWkbTypes::Type wkbType = QgsArcGisRestUtils::convertGeometryType( geometryType );
393 
394 
395  if ( !layerInfoMap.value( QStringLiteral( "subLayerIds" ) ).toList().empty() )
396  {
397  visitor( parentLayerId, Vector, QgsWkbTypes::geometryType( wkbType ), id, name, description, parentUrl + '/' + id, true, QString(), format );
398  }
399  else
400  {
401  visitor( parentLayerId, Vector, QgsWkbTypes::geometryType( wkbType ), id, name, description, parentUrl + '/' + id, false, authid, format );
402  }
403  }
404  }
405 
406  // Add root MapServer as raster layer when multiple layers are listed
407  if ( filter != Vector && layerInfoList.count() > 1 && serviceData.contains( QStringLiteral( "supportedImageFormatTypes" ) ) )
408  {
409  const QString name = QStringLiteral( "(%1)" ).arg( QObject::tr( "All layers" ) );
410  const QString description = serviceData.value( QStringLiteral( "Comments" ) ).toString();
411  visitor( nullptr, Raster, QgsWkbTypes::UnknownGeometry, nullptr, name, description, parentUrl, false, authid, format );
412  }
413 
414  // Add root ImageServer as layer
415  if ( serviceData.value( QStringLiteral( "serviceDataType" ) ).toString().startsWith( QLatin1String( "esriImageService" ) ) )
416  {
417  const QString name = serviceData.value( QStringLiteral( "name" ) ).toString();
418  const QString description = serviceData.value( QStringLiteral( "description" ) ).toString();
419  visitor( nullptr, Raster, QgsWkbTypes::UnknownGeometry, nullptr, name, description, parentUrl, false, authid, format );
420  }
421 }
422 
423 
425 
426 //
427 // QgsArcGisAsyncQuery
428 //
429 
430 QgsArcGisAsyncQuery::QgsArcGisAsyncQuery( QObject *parent )
431  : QObject( parent )
432 {
433 }
434 
435 QgsArcGisAsyncQuery::~QgsArcGisAsyncQuery()
436 {
437  if ( mReply )
438  mReply->deleteLater();
439 }
440 
441 void QgsArcGisAsyncQuery::start( const QUrl &url, const QString &authCfg, QByteArray *result, bool allowCache, const QgsStringMap &headers )
442 {
443  mResult = result;
444  QNetworkRequest request( url );
445 
446  for ( auto it = headers.constBegin(); it != headers.constEnd(); ++it )
447  {
448  request.setRawHeader( it.key().toUtf8(), it.value().toUtf8() );
449  }
450 
451  if ( !authCfg.isEmpty() && !QgsApplication::authManager()->updateNetworkRequest( request, authCfg ) )
452  {
453  const QString error = tr( "network request update failed for authentication config" );
454  emit failed( QStringLiteral( "Network" ), error );
455  return;
456  }
457 
458  QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncQuery" ) );
459  if ( allowCache )
460  {
461  request.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache );
462  request.setAttribute( QNetworkRequest::CacheSaveControlAttribute, true );
463  }
464  mReply = QgsNetworkAccessManager::instance()->get( request );
465  connect( mReply, &QNetworkReply::finished, this, &QgsArcGisAsyncQuery::handleReply );
466 }
467 
468 void QgsArcGisAsyncQuery::handleReply()
469 {
470  mReply->deleteLater();
471  // Handle network errors
472  if ( mReply->error() != QNetworkReply::NoError )
473  {
474  QgsDebugMsg( QStringLiteral( "Network error: %1" ).arg( mReply->errorString() ) );
475  emit failed( QStringLiteral( "Network error" ), mReply->errorString() );
476  return;
477  }
478 
479  // Handle HTTP redirects
480  const QVariant redirect = mReply->attribute( QNetworkRequest::RedirectionTargetAttribute );
481  if ( !redirect.isNull() )
482  {
483  QNetworkRequest request = mReply->request();
484  QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncQuery" ) );
485  QgsDebugMsg( "redirecting to " + redirect.toUrl().toString() );
486  request.setUrl( redirect.toUrl() );
487  mReply = QgsNetworkAccessManager::instance()->get( request );
488  connect( mReply, &QNetworkReply::finished, this, &QgsArcGisAsyncQuery::handleReply );
489  return;
490  }
491 
492  *mResult = mReply->readAll();
493  mResult = nullptr;
494  emit finished();
495 }
496 
497 //
498 // QgsArcGisAsyncParallelQuery
499 //
500 
501 QgsArcGisAsyncParallelQuery::QgsArcGisAsyncParallelQuery( const QString &authcfg, const QgsStringMap &requestHeaders, QObject *parent )
502  : QObject( parent )
503  , mAuthCfg( authcfg )
504  , mRequestHeaders( requestHeaders )
505 {
506 }
507 
508 void QgsArcGisAsyncParallelQuery::start( const QVector<QUrl> &urls, QVector<QByteArray> *results, bool allowCache )
509 {
510  Q_ASSERT( results->size() == urls.size() );
511  mResults = results;
512  mPendingRequests = mResults->size();
513  for ( int i = 0, n = urls.size(); i < n; ++i )
514  {
515  QNetworkRequest request( urls[i] );
516  QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncParallelQuery" ) );
517  QgsSetRequestInitiatorId( request, QString::number( i ) );
518 
519  for ( auto it = mRequestHeaders.constBegin(); it != mRequestHeaders.constEnd(); ++it )
520  {
521  request.setRawHeader( it.key().toUtf8(), it.value().toUtf8() );
522  }
523  if ( !mAuthCfg.isEmpty() && !QgsApplication::authManager()->updateNetworkRequest( request, mAuthCfg ) )
524  {
525  const QString error = tr( "network request update failed for authentication config" );
526  mErrors.append( error );
527  QgsMessageLog::logMessage( error, tr( "Network" ) );
528  continue;
529  }
530 
531  request.setAttribute( QNetworkRequest::HttpPipeliningAllowedAttribute, true );
532  if ( allowCache )
533  {
534  request.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache );
535  request.setAttribute( QNetworkRequest::CacheSaveControlAttribute, true );
536  request.setRawHeader( "Connection", "keep-alive" );
537  }
538  QNetworkReply *reply = QgsNetworkAccessManager::instance()->get( request );
539  reply->setProperty( "idx", i );
540  connect( reply, &QNetworkReply::finished, this, &QgsArcGisAsyncParallelQuery::handleReply );
541  }
542 }
543 
544 void QgsArcGisAsyncParallelQuery::handleReply()
545 {
546  QNetworkReply *reply = qobject_cast<QNetworkReply *>( QObject::sender() );
547  const QVariant redirect = reply->attribute( QNetworkRequest::RedirectionTargetAttribute );
548  const int idx = reply->property( "idx" ).toInt();
549  reply->deleteLater();
550  if ( reply->error() != QNetworkReply::NoError )
551  {
552  // Handle network errors
553  mErrors.append( reply->errorString() );
554  --mPendingRequests;
555  }
556  else if ( !redirect.isNull() )
557  {
558  // Handle HTTP redirects
559  QNetworkRequest request = reply->request();
560  QgsSetRequestInitiatorClass( request, QStringLiteral( "QgsArcGisAsyncParallelQuery" ) );
561  QgsDebugMsg( "redirecting to " + redirect.toUrl().toString() );
562  request.setUrl( redirect.toUrl() );
563  reply = QgsNetworkAccessManager::instance()->get( request );
564  reply->setProperty( "idx", idx );
565  connect( reply, &QNetworkReply::finished, this, &QgsArcGisAsyncParallelQuery::handleReply );
566  }
567  else
568  {
569  // All OK
570  ( *mResults )[idx] = reply->readAll();
571  --mPendingRequests;
572  }
573  if ( mPendingRequests == 0 )
574  {
575  emit finished( mErrors );
576  mResults = nullptr;
577  mErrors.clear();
578  }
579 }
580 
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 void addLayerItems(const std::function< void(const QString &parentLayerId, ServiceTypeFilter serviceType, QgsWkbTypes::GeometryType geometryType, const QString &layerId, const QString &name, const QString &description, const QString &url, bool isParentLayer, const QString &authid, const QString &format)> &visitor, const QVariantMap &serviceData, const QString &parentUrl, const QString &parentSupportedFormats, const ServiceTypeFilter filter=AllTypes)
Calls the specified visitor function on all layer items found within the given service data.
static QList< quint32 > getObjectIdsByExtent(const QString &layerurl, const QgsRectangle &filterRect, QString &errorTitle, QString &errorText, const QString &authcfg, const QgsStringMap &requestHeaders=QgsStringMap(), QgsFeedback *feedback=nullptr)
Gets a list of object IDs which fall within the specified extent.
static QVariantMap getObjectIds(const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QMap< QString, QString > &requestHeaders=QMap< QString, QString >(), const QgsRectangle &bbox=QgsRectangle())
Retrieves all object IDs for the specified layer URL.
static QVariantMap queryServiceJSON(const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders=QgsStringMap(), QgsFeedback *feedback=nullptr)
Performs a blocking request to a URL and returns the retrieved JSON content.
static QVariantMap getLayerInfo(const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QMap< QString, QString > &requestHeaders=QMap< QString, QString >())
Retrieves JSON layer info for the specified layer URL.
static void visitServiceItems(const std::function< void(const QString &serviceName, const QString &url, const QString &service, ServiceTypeFilter serviceType)> &visitor, const QVariantMap &serviceData, const QString &baseUrl)
Calls the specified visitor function on all service items found within the given service data.
static QVariantMap getServiceInfo(const QString &baseurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QMap< QString, QString > &requestHeaders=QMap< QString, QString >())
Retrieves JSON service info for the specified base URL.
static QByteArray queryService(const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsStringMap &requestHeaders=QgsStringMap(), QgsFeedback *feedback=nullptr, QString *contentType=nullptr)
Performs a blocking request to a URL and returns the retrieved data.
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 QgsStringMap &requestHeaders=QgsStringMap(), QgsFeedback *feedback=nullptr)
Retrieves all matching objects from the specified layer URL.
static QgsCoordinateReferenceSystem convertSpatialReference(const QVariantMap &spatialReferenceMap)
Converts a spatial reference JSON definition to a QgsCoordinateReferenceSystem value.
static QgsWkbTypes::Type convertGeometryType(const QString &type)
Converts an ESRI REST geometry type to a WKB type.
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...
ErrorCode get(QNetworkRequest &request, bool forceRefresh=false, QgsFeedback *feedback=nullptr)
Performs a "get" operation on the specified request.
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() or post() request has been made.
@ NoError
No error was encountered.
QgsNetworkReplyContent reply() const
Returns the content of the network reply, after a get() or post() request has been made.
QString authid() const
Returns the authority identifier for the CRS.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition: qgsfeedback.h:45
bool isCanceled() const SIP_HOLDGIL
Tells whether the operation has been canceled already.
Definition: qgsfeedback.h:54
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.
Definition: qgsrectangle.h:42
double yMaximum() const SIP_HOLDGIL
Returns the y maximum value (top side of rectangle).
Definition: qgsrectangle.h:193
double xMaximum() const SIP_HOLDGIL
Returns the x maximum value (right side of rectangle).
Definition: qgsrectangle.h:183
double xMinimum() const SIP_HOLDGIL
Returns the x minimum value (left side of rectangle).
Definition: qgsrectangle.h:188
double yMinimum() const SIP_HOLDGIL
Returns the y minimum value (bottom side of rectangle).
Definition: qgsrectangle.h:198
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
Definition: qgsrectangle.h:479
static GeometryType geometryType(Type type) SIP_HOLDGIL
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
Definition: qgswkbtypes.h:968
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
Definition: qgswkbtypes.h:141
Type
The WKB type describes the number of dimensions a geometry has.
Definition: qgswkbtypes.h:70
QMap< QString, QString > QgsStringMap
Definition: qgis.h:1703
#define QgsDebugMsg(str)
Definition: qgslogger.h:38
#define QgsSetRequestInitiatorClass(request, _class)
#define QgsSetRequestInitiatorId(request, str)
const QgsCoordinateReferenceSystem & crs