28#include <QImageReader>
29#include <QRegularExpression>
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 );
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 );
54 QUrl queryUrl( layerurl +
"/query" );
55 QUrlQuery query( queryUrl );
56 query.addQueryItem( QStringLiteral(
"f" ), QStringLiteral(
"json" ) );
57 query.addQueryItem( QStringLiteral(
"where" ), whereClause.isEmpty() ? QStringLiteral(
"1=1" ) : whereClause );
58 query.addQueryItem( QStringLiteral(
"returnIdsOnly" ), QStringLiteral(
"true" ) );
61 query.addQueryItem( QStringLiteral(
"geometry" ), QStringLiteral(
"%1,%2,%3,%4" )
64 query.addQueryItem( QStringLiteral(
"geometryType" ), QStringLiteral(
"esriGeometryEnvelope" ) );
65 query.addQueryItem( QStringLiteral(
"spatialRel" ), QStringLiteral(
"esriSpatialRelEnvelopeIntersects" ) );
67 queryUrl.setQuery( query );
68 return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders );
74 QUrl queryUrl( layerurl +
"/query" );
75 QUrlQuery query( queryUrl );
76 query.addQueryItem( QStringLiteral(
"f" ), QStringLiteral(
"json" ) );
77 query.addQueryItem( QStringLiteral(
"where" ), whereClause );
78 query.addQueryItem( QStringLiteral(
"returnExtentOnly" ), QStringLiteral(
"true" ) );
79 queryUrl.setQuery( query );
82 const QVariantMap res =
queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders );
85 QgsDebugMsg( QStringLiteral(
"getExtent failed: %1 - %2" ).arg( errorTitle, errorText ) );
90 const QVariantMap coords = res.value( QStringLiteral(
"extent" ) ).toMap();
91 rect.
setXMinimum( coords.value( QStringLiteral(
"xmin" ) ).toDouble() );
92 rect.
setYMinimum( coords.value( QStringLiteral(
"ymin" ) ).toDouble() );
93 rect.
setXMaximum( coords.value( QStringLiteral(
"xmax" ) ).toDouble() );
94 rect.
setYMaximum( coords.value( QStringLiteral(
"ymax" ) ).toDouble() );
99 bool fetchGeometry,
const QStringList &fetchAttributes,
100 bool fetchM,
bool fetchZ,
105 for (
const int id : objectIds )
107 ids.append( QString::number(
id ) );
109 QUrl queryUrl( layerurl +
"/query" );
110 QUrlQuery query( queryUrl );
111 query.addQueryItem( QStringLiteral(
"f" ), QStringLiteral(
"json" ) );
112 query.addQueryItem( QStringLiteral(
"objectIds" ), ids.join( QLatin1Char(
',' ) ) );
113 const QString wkid =
crs.indexOf( QLatin1Char(
':' ) ) >= 0 ?
crs.split(
':' )[1] : QString();
114 query.addQueryItem( QStringLiteral(
"inSR" ), wkid );
115 query.addQueryItem( QStringLiteral(
"outSR" ), wkid );
117 query.addQueryItem( QStringLiteral(
"returnGeometry" ), fetchGeometry ? QStringLiteral(
"true" ) : QStringLiteral(
"false" ) );
120 if ( fetchAttributes.isEmpty() )
121 outFields = QStringLiteral(
"*" );
123 outFields = fetchAttributes.join(
',' );
124 query.addQueryItem( QStringLiteral(
"outFields" ), outFields );
126 query.addQueryItem( QStringLiteral(
"returnM" ), fetchM ? QStringLiteral(
"true" ) : QStringLiteral(
"false" ) );
127 query.addQueryItem( QStringLiteral(
"returnZ" ), fetchZ ? QStringLiteral(
"true" ) : QStringLiteral(
"false" ) );
128 if ( !filterRect.
isNull() )
130 query.addQueryItem( QStringLiteral(
"geometry" ), QStringLiteral(
"%1,%2,%3,%4" )
131 .arg( filterRect.
xMinimum(), 0,
'f', -1 ).arg( filterRect.
yMinimum(), 0,
'f', -1 )
132 .arg( filterRect.
xMaximum(), 0,
'f', -1 ).arg( filterRect.
yMaximum(), 0,
'f', -1 ) );
133 query.addQueryItem( QStringLiteral(
"geometryType" ), QStringLiteral(
"esriGeometryEnvelope" ) );
134 query.addQueryItem( QStringLiteral(
"spatialRel" ), QStringLiteral(
"esriSpatialRelEnvelopeIntersects" ) );
136 queryUrl.setQuery( query );
137 return queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, feedback );
142 QUrl queryUrl( layerurl +
"/query" );
143 QUrlQuery query( queryUrl );
144 query.addQueryItem( QStringLiteral(
"f" ), QStringLiteral(
"json" ) );
145 query.addQueryItem( QStringLiteral(
"where" ), whereClause.isEmpty() ? QStringLiteral(
"1=1" ) : whereClause );
146 query.addQueryItem( QStringLiteral(
"returnIdsOnly" ), QStringLiteral(
"true" ) );
147 query.addQueryItem( QStringLiteral(
"geometry" ), QStringLiteral(
"%1,%2,%3,%4" )
148 .arg( filterRect.
xMinimum(), 0,
'f', -1 ).arg( filterRect.
yMinimum(), 0,
'f', -1 )
149 .arg( filterRect.
xMaximum(), 0,
'f', -1 ).arg( filterRect.
yMaximum(), 0,
'f', -1 ) );
150 query.addQueryItem( QStringLiteral(
"geometryType" ), QStringLiteral(
"esriGeometryEnvelope" ) );
151 query.addQueryItem( QStringLiteral(
"spatialRel" ), QStringLiteral(
"esriSpatialRelEnvelopeIntersects" ) );
152 queryUrl.setQuery( query );
153 const QVariantMap objectIdData =
queryServiceJSON( queryUrl, authcfg, errorTitle, errorText, requestHeaders, feedback );
155 if ( objectIdData.isEmpty() )
157 return QList<quint32>();
161 const QVariantList objectIdsList = objectIdData[QStringLiteral(
"objectIds" )].toList();
162 ids.reserve( objectIdsList.size() );
163 for (
const QVariant &objectId : objectIdsList )
165 ids << objectId.toInt();
174 QNetworkRequest request( url );
189 errorTitle = QStringLiteral(
"Network error" );
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() )
198 errorText = match.captured( 1 );
206 *contentType = content.
rawHeader(
"Content-Type" );
212 const QByteArray reply =
queryService( url, authcfg, errorTitle, errorText, requestHeaders, feedback );
213 if ( !errorTitle.isEmpty() )
215 return QVariantMap();
218 return QVariantMap();
222 const QJsonDocument doc = QJsonDocument::fromJson( reply, &err );
225 errorTitle = QStringLiteral(
"Parsing error" );
226 errorText = err.errorString();
227 QgsDebugMsg( QStringLiteral(
"Parsing error: %1" ).arg( err.errorString() ) );
228 return QVariantMap();
230 const QVariantMap res = doc.object().toVariantMap();
231 if ( res.contains( QStringLiteral(
"error" ) ) )
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();
243 if ( isTestEndpoint )
244 *isTestEndpoint =
false;
246 QUrl modifiedUrl( url );
247 if ( modifiedUrl.toString().contains( QLatin1String(
"fake_qgis_http_endpoint" ) ) )
249 if ( isTestEndpoint )
250 *isTestEndpoint =
true;
253 QString modifiedUrlString = modifiedUrl.toString();
255 modifiedUrlString = QUrl::fromPercentEncoding( modifiedUrlString.toUtf8() );
256 modifiedUrlString.replace( QLatin1String(
"fake_qgis_http_endpoint/" ), QLatin1String(
"fake_qgis_http_endpoint_" ) );
257 QgsDebugMsg( QStringLiteral(
"Get %1" ).arg( modifiedUrlString ) );
258 modifiedUrlString = modifiedUrlString.mid( QStringLiteral(
"http://" ).size() );
259 QString args = modifiedUrlString.indexOf(
'?' ) >= 0 ? modifiedUrlString.mid( modifiedUrlString.indexOf(
'?' ) ) : QString();
260 if ( modifiedUrlString.size() > 150 )
262 args = QCryptographicHash::hash( args.toUtf8(), QCryptographicHash::Md5 ).toHex();
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(
"_" ) );
280 if ( modifiedUrlString[1] ==
'/' )
282 modifiedUrlString = modifiedUrlString[0] +
":/" + modifiedUrlString.mid( 2 );
285 modifiedUrlString = modifiedUrlString.mid( 0, modifiedUrlString.indexOf(
'?' ) ) + args;
286 QgsDebugMsg( QStringLiteral(
"Get %1 (after laundering)" ).arg( modifiedUrlString ) );
287 modifiedUrl = QUrl::fromLocalFile( modifiedUrlString );
288 if ( !QFile::exists( modifiedUrlString ) )
290 QgsDebugMsg( QStringLiteral(
"Local test file %1 for URL %2 does not exist!!!" ).arg( modifiedUrlString, url.toString() ) );
297void QgsArcGisRestQueryUtils::adjustBaseUrl( QString &baseUrl,
const QString &name )
299 const QStringList parts = name.split(
'/' );
301 for (
const QString &part : parts )
303 if ( !checkString.isEmpty() )
304 checkString += QString(
'/' );
307 if ( baseUrl.indexOf( QRegularExpression( checkString.replace(
'/', QLatin1String(
"\\/" ) ) + QStringLiteral(
"\\/?$" ) ) ) > -1 )
309 baseUrl = baseUrl.left( baseUrl.length() - checkString.length() - 1 );
317 QString base( baseUrl );
318 bool baseChecked =
false;
319 if ( !base.endsWith(
'/' ) )
320 base += QLatin1Char(
'/' );
322 const QStringList folderList = serviceData.value( QStringLiteral(
"folders" ) ).toStringList();
323 for (
const QString &folder : folderList )
327 adjustBaseUrl( base, folder );
330 visitor( folder, base + folder );
336 QString base( baseUrl );
337 bool baseChecked =
false;
338 if ( !base.endsWith(
'/' ) )
339 base += QLatin1Char(
'/' );
341 const QVariantList serviceList = serviceData.value( QStringLiteral(
"services" ) ).toList();
342 for (
const QVariant &service : serviceList )
344 const QVariantMap serviceMap = service.toMap();
345 const QString serviceTypeString = serviceMap.value( QStringLiteral(
"type" ) ).toString();
348 switch ( serviceType )
350 case Qgis::ArcGisRestServiceType::FeatureServer:
351 case Qgis::ArcGisRestServiceType::MapServer:
352 case Qgis::ArcGisRestServiceType::ImageServer:
364 const QString serviceName = serviceMap.value( QStringLiteral(
"name" ) ).toString();
365 const QString displayName = serviceName.split(
'/' ).last();
368 adjustBaseUrl( base, serviceName );
372 visitor( displayName, base + serviceName +
'/' + serviceTypeString, serviceType );
376void 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 )
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 )
386 for (
const QByteArray &fmt : supportedFormats )
388 if ( encoding.startsWith( fmt, Qt::CaseInsensitive ) )
398 const QStringList capabilities = serviceData.value( QStringLiteral(
"capabilities" ) ).toString().split(
',' );
401 const bool serviceMayHaveQueryCapability = capabilities.contains( QStringLiteral(
"Query" ) ) ||
402 serviceData.value( QStringLiteral(
"serviceDataType" ) ).toString().startsWith( QLatin1String(
"esriImageService" ) );
404 const bool serviceMayRenderMaps = capabilities.contains( QStringLiteral(
"Map" ) ) ||
405 serviceData.value( QStringLiteral(
"serviceDataType" ) ).toString().startsWith( QLatin1String(
"esriImageService" ) );
407 const QVariantList layerInfoList = serviceData.value( QStringLiteral(
"layers" ) ).toList();
408 for (
const QVariant &layerInfo : layerInfoList )
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();
419 if ( !layerInfoMap.value( QStringLiteral(
"subLayerIds" ) ).toList().empty() )
431 const QString geometryType = layerInfoMap.value( QStringLiteral(
"geometryType" ) ).toString();
442 if ( serviceMayRenderMaps )
444 if ( geometryType.isEmpty() )
452 if ( !layerInfoMap.value( QStringLiteral(
"subLayerIds" ) ).toList().empty() )
464 if ( filter !=
ServiceTypeFilter::Vector && layerInfoList.count() > 1 && serviceData.contains( QStringLiteral(
"supportedImageFormatTypes" ) ) )
466 const QString name = QStringLiteral(
"(%1)" ).arg( QObject::tr(
"All layers" ) );
467 const QString description = serviceData.value( QStringLiteral(
"Comments" ) ).toString();
472 if ( serviceData.value( QStringLiteral(
"serviceDataType" ) ).toString().startsWith( QLatin1String(
"esriImageService" ) ) )
474 const QString name = serviceData.value( QStringLiteral(
"name" ) ).toString();
475 const QString description = serviceData.value( QStringLiteral(
"description" ) ).toString();
487QgsArcGisAsyncQuery::QgsArcGisAsyncQuery( QObject *parent )
492QgsArcGisAsyncQuery::~QgsArcGisAsyncQuery()
495 mReply->deleteLater();
498void QgsArcGisAsyncQuery::start(
const QUrl &url,
const QString &authCfg, QByteArray *result,
bool allowCache,
const QgsHttpHeaders &headers )
501 QNetworkRequest request( url );
507 const QString error = tr(
"network request update failed for authentication config" );
508 emit failed( QStringLiteral(
"Network" ), error );
515 request.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache );
516 request.setAttribute( QNetworkRequest::CacheSaveControlAttribute,
true );
519 connect( mReply, &QNetworkReply::finished,
this, &QgsArcGisAsyncQuery::handleReply );
522void QgsArcGisAsyncQuery::handleReply()
524 mReply->deleteLater();
526 if ( mReply->error() != QNetworkReply::NoError )
528 QgsDebugMsg( QStringLiteral(
"Network error: %1" ).arg( mReply->errorString() ) );
529 emit failed( QStringLiteral(
"Network error" ), mReply->errorString() );
534 const QVariant redirect = mReply->attribute( QNetworkRequest::RedirectionTargetAttribute );
537 QNetworkRequest request = mReply->request();
539 QgsDebugMsg(
"redirecting to " + redirect.toUrl().toString() );
540 request.setUrl( redirect.toUrl() );
542 connect( mReply, &QNetworkReply::finished,
this, &QgsArcGisAsyncQuery::handleReply );
546 *mResult = mReply->readAll();
555QgsArcGisAsyncParallelQuery::QgsArcGisAsyncParallelQuery(
const QString &authcfg,
const QgsHttpHeaders &requestHeaders, QObject *parent )
557 , mAuthCfg( authcfg )
558 , mRequestHeaders( requestHeaders )
562void QgsArcGisAsyncParallelQuery::start(
const QVector<QUrl> &urls, QVector<QByteArray> *results,
bool allowCache )
564 Q_ASSERT( results->size() == urls.size() );
566 mPendingRequests = mResults->size();
567 for (
int i = 0, n = urls.size(); i < n; ++i )
569 QNetworkRequest request( urls[i] );
573 mRequestHeaders.updateNetworkRequest( request );
576 const QString error = tr(
"network request update failed for authentication config" );
577 mErrors.append( error );
582 request.setAttribute( QNetworkRequest::HttpPipeliningAllowedAttribute,
true );
585 request.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache );
586 request.setAttribute( QNetworkRequest::CacheSaveControlAttribute,
true );
587 request.setRawHeader(
"Connection",
"keep-alive" );
590 reply->setProperty(
"idx", i );
591 connect( reply, &QNetworkReply::finished,
this, &QgsArcGisAsyncParallelQuery::handleReply );
595void QgsArcGisAsyncParallelQuery::handleReply()
597 QNetworkReply *reply = qobject_cast<QNetworkReply *>( QObject::sender() );
598 const QVariant redirect = reply->attribute( QNetworkRequest::RedirectionTargetAttribute );
599 const int idx = reply->property(
"idx" ).toInt();
600 reply->deleteLater();
601 if ( reply->error() != QNetworkReply::NoError )
604 mErrors.append( reply->errorString() );
610 QNetworkRequest request = reply->request();
612 QgsDebugMsg(
"redirecting to " + redirect.toUrl().toString() );
613 request.setUrl( redirect.toUrl() );
615 reply->setProperty(
"idx", idx );
616 connect( reply, &QNetworkReply::finished,
this, &QgsArcGisAsyncParallelQuery::handleReply );
621 ( *mResults )[idx] = reply->readAll();
624 if ( mPendingRequests == 0 )
626 emit finished( mErrors );
ArcGisRestServiceType
Available ArcGIS REST service types.
@ GeocodeServer
GeocodeServer.
@ Unknown
Other unknown/unsupported type.
@ GlobeServer
GlobeServer.
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 QgsRectangle getExtent(const QString &layerurl, const QString &whereClause, const QString &authcfg, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders())
Retrieves the extent for the features matching a whereClause.
static QVariantMap getLayerInfo(const QString &layerurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders())
Retrieves JSON layer info for the specified layer URL.
static QUrl parseUrl(const QUrl &url, bool *isTestEndpoint=nullptr)
Parses and processes a url.
ServiceTypeFilter
Service types.
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())
Gets a list of object IDs which fall within the specified extent.
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 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=ServiceTypeFilter::AllTypes)
Calls the specified visitor function on all layer items found within the given service 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 QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), QgsFeedback *feedback=nullptr)
Retrieves all matching objects from the specified layer URL.
static QVariantMap queryServiceJSON(const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), QgsFeedback *feedback=nullptr)
Performs a blocking request to a URL and returns the retrieved JSON content.
static QByteArray queryService(const QUrl &url, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders(), QgsFeedback *feedback=nullptr, QString *contentType=nullptr)
Performs a blocking request to a URL and returns the retrieved data.
static QVariantMap getServiceInfo(const QString &baseurl, const QString &authcfg, QString &errorTitle, QString &errorText, const QgsHttpHeaders &requestHeaders=QgsHttpHeaders())
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 QgsRectangle &bbox=QgsRectangle(), const QString &whereClause=QString())
Retrieves all object IDs for the specified layer URL.
static QgsCoordinateReferenceSystem convertSpatialReference(const QVariantMap &spatialReferenceMap)
Converts a spatial reference JSON definition to a QgsCoordinateReferenceSystem value.
static Qgis::ArcGisRestServiceType serviceTypeFromString(const QString &type)
Converts a string value to a REST service type.
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(), post(), head() or put() request has been made.
@ 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...
Base class for feedback objects to be used for cancellation of something running in a worker thread.
bool isCanceled() const SIP_HOLDGIL
Tells whether the operation has been canceled already.
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 yMaximum() const SIP_HOLDGIL
Returns the y maximum value (top side of rectangle).
double xMaximum() const SIP_HOLDGIL
Returns the x maximum value (right side of rectangle).
double xMinimum() const SIP_HOLDGIL
Returns the x minimum value (left side of rectangle).
double yMinimum() const SIP_HOLDGIL
Returns the y minimum value (bottom side of rectangle).
void setYMinimum(double y) SIP_HOLDGIL
Set the minimum y value.
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
void setXMaximum(double x) SIP_HOLDGIL
Set the maximum x value.
void setXMinimum(double x) SIP_HOLDGIL
Set the minimum x value.
void setYMaximum(double y) SIP_HOLDGIL
Set the maximum y value.
static bool isNull(const QVariant &variant)
Returns true if the specified variant should be considered a NULL value.
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...
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
Type
The WKB type describes the number of dimensions a geometry has.
#define QgsSetRequestInitiatorClass(request, _class)
#define QgsSetRequestInitiatorId(request, str)
const QgsCoordinateReferenceSystem & crs