QGIS API Documentation 3.34.0-Prizren (ffbdd678812)
Loading...
Searching...
No Matches
qgsserverprojectutils.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsserverprojectutils.cpp
3 -------------------------
4 begin : December 19, 2016
5 copyright : (C) 2016 by Paul Blottiere
6 email : paul dot blottiere at oslandia dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19#include "qgsproject.h"
20#include "qgsmessagelog.h"
21
22double QgsServerProjectUtils::ceilWithPrecision( double number, int places )
23{
24 const double scaleFactor = std::pow( 10.0, places );
25 return ( std::ceil( number * scaleFactor ) / scaleFactor );
26}
27
28double QgsServerProjectUtils::floorWithPrecision( double number, int places )
29{
30 const double scaleFactor = std::pow( 10.0, places );
31 return ( std::floor( number * scaleFactor ) / scaleFactor );
32}
33
35{
36 return project.readBoolEntry( QStringLiteral( "WMSServiceCapabilities" ), QStringLiteral( "/" ), false );
37}
38
40{
41 QString title = project.readEntry( QStringLiteral( "WMSServiceTitle" ), QStringLiteral( "/" ) );
42 if ( title.isEmpty() )
43 {
44 title = project.title();
45 }
46 if ( title.isEmpty() )
47 {
48 title = QObject::tr( "Untitled" );
49 }
50 return title;
51}
52
54{
55 return project.readEntry( QStringLiteral( "WMSServiceAbstract" ), QStringLiteral( "/" ) );
56}
57
59{
60 QStringList keywordList;
61 const QStringList list = project.readListEntry( QStringLiteral( "WMSKeywordList" ), QStringLiteral( "/" ), QStringList() );
62 if ( !list.isEmpty() )
63 {
64 for ( int i = 0; i < list.size(); ++i )
65 {
66 const QString keyword = list.at( i );
67 if ( !keyword.isEmpty() )
68 {
69 keywordList.append( keyword );
70 }
71 }
72 }
73 return keywordList;
74}
75
77{
78 QString wmsOnlineResource = project.readEntry( QStringLiteral( "WMSOnlineResource" ), QStringLiteral( "/" ) );
79
81 if ( wmsOnlineResourceProperty.isActive() && ! wmsOnlineResourceProperty.expressionString().isEmpty() )
82 {
83 const QgsExpressionContext context = project.createExpressionContext();
84 return wmsOnlineResourceProperty.valueAsString( context, wmsOnlineResource );
85 }
86
87 return wmsOnlineResource;
88}
89
91{
92 return project.readEntry( QStringLiteral( "WMSContactOrganization" ), QStringLiteral( "/" ) );
93}
94
96{
97 return project.readEntry( QStringLiteral( "WMSContactPosition" ), QStringLiteral( "/" ) );
98}
99
101{
102 return project.readEntry( QStringLiteral( "WMSContactPerson" ), QStringLiteral( "/" ) );
103}
104
106{
107 return project.readEntry( QStringLiteral( "WMSContactMail" ), QStringLiteral( "/" ) );
108}
109
111{
112 return project.readEntry( QStringLiteral( "WMSContactPhone" ), QStringLiteral( "/" ) );
113}
114
116{
117 return project.readEntry( QStringLiteral( "WMSFees" ), QStringLiteral( "/" ) );
118}
119
121{
122 return project.readEntry( QStringLiteral( "WMSAccessConstraints" ), QStringLiteral( "/" ) );
123}
124
126{
127 return project.readNumEntry( QStringLiteral( "WMSMaxWidth" ), QStringLiteral( "/" ), -1 );
128}
129
131{
132 return project.readNumEntry( QStringLiteral( "WMSMaxHeight" ), QStringLiteral( "/" ), -1 );
133}
134
136{
137 return project.readBoolEntry( QStringLiteral( "WMSUseLayerIDs" ), QStringLiteral( "/" ), false );
138}
139
141{
142 return project.readNumEntry( QStringLiteral( "WMSImageQuality" ), QStringLiteral( "/" ), -1 );
143}
144
146{
147 return project.readNumEntry( QStringLiteral( "WMSTileBuffer" ), QStringLiteral( "/" ), 0 );
148}
149
151{
152 return project.readNumEntry( QStringLiteral( "WMSMaxAtlasFeatures" ), QStringLiteral( "/" ), 1 );
153}
154
156{
157 return project.readDoubleEntry( QStringLiteral( "WMSDefaultMapUnitsPerMm" ), QStringLiteral( "/" ), 1 );
158}
159
161{
162 const QString sia2045 = project.readEntry( QStringLiteral( "WMSInfoFormatSIA2045" ), QStringLiteral( "/" ), "" );
163
164 return sia2045.compare( QLatin1String( "enabled" ), Qt::CaseInsensitive ) == 0
165 || sia2045.compare( QLatin1String( "true" ), Qt::CaseInsensitive ) == 0;
166}
167
169{
170 const QString wktGeom = project.readEntry( QStringLiteral( "WMSAddWktGeometry" ), QStringLiteral( "/" ), "" );
171
172 return wktGeom.compare( QLatin1String( "enabled" ), Qt::CaseInsensitive ) == 0
173 || wktGeom.compare( QLatin1String( "true" ), Qt::CaseInsensitive ) == 0;
174}
175
177{
178 const QString useFormSettings = project.readEntry( QStringLiteral( "WMSFeatureInfoUseAttributeFormSettings" ), QStringLiteral( "/" ), "" );
179 return useFormSettings.compare( QLatin1String( "enabled" ), Qt::CaseInsensitive ) == 0
180 || useFormSettings.compare( QLatin1String( "true" ), Qt::CaseInsensitive ) == 0;
181}
182
184{
185 const QString segmGeom = project.readEntry( QStringLiteral( "WMSSegmentizeFeatureInfoGeometry" ), QStringLiteral( "/" ), "" );
186
187 return segmGeom.compare( QLatin1String( "enabled" ), Qt::CaseInsensitive ) == 0
188 || segmGeom.compare( QLatin1String( "true" ), Qt::CaseInsensitive ) == 0;
189}
190
192{
193 const QString legendGroups = project.readEntry( QStringLiteral( "WMSAddLayerGroupsLegendGraphic" ), QStringLiteral( "/" ), "" );
194 return legendGroups.compare( QLatin1String( "enabled" ), Qt::CaseInsensitive ) == 0
195 || legendGroups.compare( QLatin1String( "true" ), Qt::CaseInsensitive ) == 0;
196}
197
199{
200 return project.readNumEntry( QStringLiteral( "WMSPrecision" ), QStringLiteral( "/" ), 6 );
201}
202
204{
205 return project.readEntry( QStringLiteral( "WMSFeatureInfoDocumentElement" ), QStringLiteral( "/" ), "" );
206}
207
209{
210 return project.readEntry( QStringLiteral( "WMSFeatureInfoDocumentElementNS" ), QStringLiteral( "/" ), "" );
211}
212
214{
215 return project.readEntry( QStringLiteral( "WMSFeatureInfoSchema" ), QStringLiteral( "/" ), "" );
216}
217
218QHash<QString, QString> QgsServerProjectUtils::wmsFeatureInfoLayerAliasMap( const QgsProject &project )
219{
220 QHash<QString, QString> aliasMap;
221
222 //WMSFeatureInfoAliasLayers
223 const QStringList aliasLayerStringList = project.readListEntry( QStringLiteral( "WMSFeatureInfoAliasLayers" ), QStringLiteral( "/value" ), QStringList() );
224 if ( aliasLayerStringList.isEmpty() )
225 {
226 return aliasMap;
227 }
228
229 //WMSFeatureInfoLayerAliases
230 const QStringList layerAliasStringList = project.readListEntry( QStringLiteral( "WMSFeatureInfoLayerAliases" ), QStringLiteral( "/value" ), QStringList() );
231 if ( layerAliasStringList.isEmpty() )
232 {
233 return aliasMap;
234 }
235
236 const int nMapEntries = std::min( aliasLayerStringList.size(), layerAliasStringList.size() );
237 for ( int i = 0; i < nMapEntries; ++i )
238 {
239 aliasMap.insert( aliasLayerStringList.at( i ), layerAliasStringList.at( i ) );
240 }
241
242 return aliasMap;
243}
244
246{
247 return project.readBoolEntry( QStringLiteral( "WMSInspire" ), QStringLiteral( "/activated" ) );
248}
249
251{
252 return project.readEntry( QStringLiteral( "WMSInspire" ), QStringLiteral( "/language" ) );
253}
254
256{
257 return project.readEntry( QStringLiteral( "WMSInspire" ), QStringLiteral( "/metadataUrl" ) );
258}
259
261{
262 return project.readEntry( QStringLiteral( "WMSInspire" ), QStringLiteral( "/metadataUrlType" ) );
263}
264
266{
267 return project.readEntry( QStringLiteral( "WMSInspire" ), QStringLiteral( "/temporalReference" ) );
268}
269
271{
272 return project.readEntry( QStringLiteral( "WMSInspire" ), QStringLiteral( "/metadataDate" ) );
273}
274
276{
277 return project.readListEntry( QStringLiteral( "WMSRestrictedComposers" ), QStringLiteral( "/" ), QStringList() );
278}
279
281{
282 QStringList crsList;
283 const QStringList wmsCrsList = project.readListEntry( QStringLiteral( "WMSCrsList" ), QStringLiteral( "/" ), QStringList() );
284 if ( !wmsCrsList.isEmpty() )
285 {
286 for ( int i = 0; i < wmsCrsList.size(); ++i )
287 {
288 const QString crs = wmsCrsList.at( i );
289 if ( !crs.isEmpty() )
290 {
291 crsList.append( crs );
292 }
293 }
294 }
295 if ( crsList.isEmpty() )
296 {
297 const QStringList valueList = project.readListEntry( QStringLiteral( "WMSEpsgList" ), QStringLiteral( "/" ), QStringList() );
298 bool conversionOk;
299 for ( int i = 0; i < valueList.size(); ++i )
300 {
301 const int epsgNr = valueList.at( i ).toInt( &conversionOk );
302 if ( conversionOk )
303 {
304 crsList.append( QStringLiteral( "EPSG:%1" ).arg( epsgNr ) );
305 }
306 }
307 }
308 if ( crsList.isEmpty() )
309 {
310 //no CRS restriction defined in the project. Provide project CRS, wgs84 and pseudo mercator
311 const QString projectCrsId = project.crs().authid();
312 crsList.append( projectCrsId );
313 if ( projectCrsId.compare( QLatin1String( "EPSG:4326" ), Qt::CaseInsensitive ) != 0 )
314 {
315 crsList.append( QStringLiteral( "EPSG:%1" ).arg( 4326 ) );
316 }
317 if ( projectCrsId.compare( QLatin1String( "EPSG:3857" ), Qt::CaseInsensitive ) != 0 )
318 {
319 crsList.append( QStringLiteral( "EPSG:%1" ).arg( 3857 ) );
320 }
321 }
322 return crsList;
323}
324
325QString QgsServerProjectUtils::serviceUrl( const QString &service, const QgsServerRequest &request, const QgsServerSettings &settings )
326{
327 const QString serviceUpper = service.toUpper();
328 QString url = settings.serviceUrl( serviceUpper );
329 if ( ! url.isEmpty() )
330 {
331 return url;
332 }
333
335 if ( serviceUpper == QLatin1String( "WMS" ) )
336 {
338 }
339 else if ( serviceUpper == QLatin1String( "WFS" ) )
340 {
342 }
343 else if ( serviceUpper == QLatin1String( "WCS" ) )
344 {
346 }
347 else if ( serviceUpper == QLatin1String( "WMTS" ) )
348 {
350 }
351 url = request.header( header );
352 if ( ! url.isEmpty() )
353 {
354 return url;
355 }
357 if ( ! url.isEmpty() )
358 {
359 return url;
360 }
361
362 QString proto;
363 QString host;
364
365 QString forwarded = request.header( QgsServerRequest::FORWARDED );
366 if ( ! forwarded.isEmpty() )
367 {
368 forwarded = forwarded.split( QLatin1Char( ',' ) )[0];
369 const QStringList elements = forwarded.split( ';' );
370 for ( const QString &element : elements )
371 {
372 QStringList splited_element = element.trimmed().split( QLatin1Char( '=' ) );
373 if ( splited_element[0] == "host" )
374 {
375 host = splited_element[1];
376 }
377 if ( splited_element[0] == "proto" )
378 {
379 proto = splited_element[1];
380 }
381 }
382 }
383
384 if ( host.isEmpty() )
385 {
388 }
389
390 if ( host.isEmpty() )
391 {
393 }
394
395 QUrl urlQUrl = request.baseUrl();
396 if ( ! proto.isEmpty() )
397 {
398 urlQUrl.setScheme( proto );
399 }
400
401 if ( ! host.isEmpty() )
402 {
403 QStringList hostPort = host.split( QLatin1Char( ':' ) );
404 if ( hostPort.length() == 1 )
405 {
406 urlQUrl.setHost( hostPort[0] );
407 urlQUrl.setPort( -1 );
408 }
409 if ( hostPort.length() == 2 )
410 {
411 urlQUrl.setHost( hostPort[0] );
412 urlQUrl.setPort( hostPort[1].toInt() );
413 }
414 }
415
416 // https://docs.qgis.org/3.16/en/docs/server_manual/services.html#wms-map
417 const QUrlQuery query { request.originalUrl().query() };
418 const QList<QPair<QString, QString>> constItems { query.queryItems( ) };
419 QString map;
420 for ( const QPair<QString, QString> &item : std::as_const( constItems ) )
421 {
422 if ( 0 == item.first.compare( QLatin1String( "MAP" ), Qt::CaseSensitivity::CaseInsensitive ) )
423 {
424 map = item.second;
425 break;
426 }
427 }
428
429 if ( ! map.isEmpty() )
430 {
431 QUrlQuery query;
432 query.setQueryItems( {{"MAP", map}} );
433 urlQUrl.setQuery( query );
434 }
435 else
436 {
437 urlQUrl.setQuery( NULL );
438 }
439
440 return urlQUrl.url();
441}
442
443QString QgsServerProjectUtils::wmsServiceUrl( const QgsProject &project, const QgsServerRequest &request, const QgsServerSettings &settings )
444{
445 QString url = project.readEntry( QStringLiteral( "WMSUrl" ), QStringLiteral( "/" ), "" );
446 if ( url.isEmpty() )
447 {
448 url = serviceUrl( QStringLiteral( "WMS" ), request, settings );
449 }
450 return url;
451}
452
454{
455 return project.readEntry( QStringLiteral( "WMSRootName" ), QStringLiteral( "/" ), "" );
456}
457
459{
460 return project.readListEntry( QStringLiteral( "WMSRestrictedLayers" ), QStringLiteral( "/" ), QStringList() );
461}
462
464{
465 bool ok = false;
466 QStringList values = project.readListEntry( QStringLiteral( "WMSExtent" ), QStringLiteral( "/" ), QStringList(), &ok );
467 if ( !ok || values.size() != 4 )
468 {
469 return QgsRectangle();
470 }
471 //order of value elements must be xmin, ymin, xmax, ymax
472 const double xmin = values[ 0 ].toDouble();
473 const double ymin = values[ 1 ].toDouble();
474 const double xmax = values[ 2 ].toDouble();
475 const double ymax = values[ 3 ].toDouble();
476 return QgsRectangle( xmin, ymin, xmax, ymax );
477}
478
479QString QgsServerProjectUtils::wfsServiceUrl( const QgsProject &project, const QgsServerRequest &request, const QgsServerSettings &settings )
480{
481 QString url = project.readEntry( QStringLiteral( "WFSUrl" ), QStringLiteral( "/" ), "" );
482 if ( url.isEmpty() )
483 {
484 url = serviceUrl( QStringLiteral( "WFS" ), request, settings );
485 }
486 return url;
487}
488
490{
491 return project.readListEntry( QStringLiteral( "WFSLayers" ), QStringLiteral( "/" ) );
492}
493
494int QgsServerProjectUtils::wfsLayerPrecision( const QgsProject &project, const QString &layerId )
495{
496 return project.readNumEntry( QStringLiteral( "WFSLayersPrecision" ), "/" + layerId, 6 );
497}
498
500{
501 return project.readListEntry( QStringLiteral( "WFSTLayers" ), QStringLiteral( "Update" ) );
502}
503
505{
506 return project.readListEntry( QStringLiteral( "WFSTLayers" ), QStringLiteral( "Insert" ) );
507}
508
510{
511 return project.readListEntry( QStringLiteral( "WFSTLayers" ), QStringLiteral( "Delete" ) );
512}
513
514QString QgsServerProjectUtils::wcsServiceUrl( const QgsProject &project, const QgsServerRequest &request, const QgsServerSettings &settings )
515{
516 QString url = project.readEntry( QStringLiteral( "WCSUrl" ), QStringLiteral( "/" ), "" );
517 if ( url.isEmpty() )
518 {
519 url = serviceUrl( QStringLiteral( "WCS" ), request, settings );
520 }
521 return url;
522}
523
525{
526 return project.readListEntry( QStringLiteral( "WCSLayers" ), QStringLiteral( "/" ) );
527}
528
529QString QgsServerProjectUtils::wmtsServiceUrl( const QgsProject &project, const QgsServerRequest &request, const QgsServerSettings &settings )
530{
531 QString url = project.readEntry( QStringLiteral( "WMTSUrl" ), QStringLiteral( "/" ), "" );
532 if ( url.isEmpty() )
533 {
534 url = serviceUrl( QStringLiteral( "WMTS" ), request, settings );
535 }
536 return url;
537}
538
540{
541 return project.readBoolEntry( QStringLiteral( "RenderMapTile" ), QStringLiteral( "/" ), false );
542}
543
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition qgsproject.h:107
int readNumEntry(const QString &scope, const QString &key, int def=0, bool *ok=nullptr) const
Reads an integer from the specified scope and key.
QString title() const
Returns the project's title.
QgsPropertyCollection dataDefinedServerProperties() const
Returns the data defined properties used for overrides in user defined server parameters.
@ WMSOnlineResource
Alias.
Definition qgsproject.h:142
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QString readEntry(const QString &scope, const QString &key, const QString &def=QString(), bool *ok=nullptr) const
Reads a string from the specified scope and key.
bool readBoolEntry(const QString &scope, const QString &key, bool def=false, bool *ok=nullptr) const
Reads a boolean from the specified scope and key.
QgsCoordinateReferenceSystem crs
Definition qgsproject.h:112
double readDoubleEntry(const QString &scope, const QString &key, double def=0, bool *ok=nullptr) const
Reads a double from the specified scope and key.
QStringList readListEntry(const QString &scope, const QString &key, const QStringList &def=QStringList(), bool *ok=nullptr) const
Reads a string list from the specified scope and key.
QgsProperty property(int key) const override
Returns a matching property from the collection, if one exists.
A store for object properties.
QString expressionString() const
Returns the expression used for the property value.
QString valueAsString(const QgsExpressionContext &context, const QString &defaultString=QString(), bool *ok=nullptr) const
Calculates the current value of the property and interprets it as a string.
bool isActive() const
Returns whether the property is currently active.
A rectangle specified with double values.
QgsServerRequest Class defining request interface passed to services QgsService::executeRequest() met...
virtual QString header(const QString &name) const
Returns the header value.
QUrl baseUrl() const
Returns the base URL of QGIS server.
QUrl originalUrl() const
Returns the request url as seen by the web server, by default this is equal to the url seen by QGIS s...
RequestHeader
The internal HTTP Header used for the request as enum.
Provides a way to retrieve settings by prioritizing according to environment variables,...
QString serviceUrl(const QString &service) const
Returns the service URL from the setting.
SERVER_EXPORT QString wmsFeatureInfoSchema(const QgsProject &project)
Returns the schema URL for XML GetFeatureInfo request.
SERVER_EXPORT int wmsTileBuffer(const QgsProject &project)
Returns the tile buffer in pixels for WMS images defined in a QGIS project.
SERVER_EXPORT QString wcsServiceUrl(const QgsProject &project, const QgsServerRequest &request=QgsServerRequest(), const QgsServerSettings &settings=QgsServerSettings())
Returns the WCS service url.
SERVER_EXPORT QString wmsRootName(const QgsProject &project)
Returns the WMS root layer name defined in a QGIS project.
SERVER_EXPORT bool wmsInfoFormatSia2045(const QgsProject &project)
Returns if the info format is SIA20145.
SERVER_EXPORT QString wmsInspireMetadataUrl(const QgsProject &project)
Returns the Inspire metadata URL.
SERVER_EXPORT QString wmtsServiceUrl(const QgsProject &project, const QgsServerRequest &request=QgsServerRequest(), const QgsServerSettings &settings=QgsServerSettings())
Returns the WMTS service url.
SERVER_EXPORT int wmsFeatureInfoPrecision(const QgsProject &project)
Returns the geometry precision for GetFeatureInfo request.
SERVER_EXPORT double ceilWithPrecision(double number, int places)
Returns a double greater than number to the specified number of places.
SERVER_EXPORT QString wmsFeatureInfoDocumentElementNs(const QgsProject &project)
Returns the document element namespace for XML GetFeatureInfo request.
SERVER_EXPORT QStringList wmsRestrictedComposers(const QgsProject &project)
Returns the restricted composer list.
SERVER_EXPORT QgsRectangle wmsExtent(const QgsProject &project)
Returns the WMS Extent restriction.
SERVER_EXPORT bool wmsUseLayerIds(const QgsProject &project)
Returns if layer ids are used as name in WMS.
SERVER_EXPORT bool wmsFeatureInfoSegmentizeWktGeometry(const QgsProject &project)
Returns if the geometry has to be segmentize in GetFeatureInfo request.
SERVER_EXPORT QString owsServiceAccessConstraints(const QgsProject &project)
Returns the owsService access constraints defined in project.
SERVER_EXPORT QStringList wfsLayerIds(const QgsProject &project)
Returns the Layer ids list defined in a QGIS project as published in WFS.
SERVER_EXPORT bool wmsRenderMapTiles(const QgsProject &project)
Returns true if WMS requests should use the QgsMapSettings::RenderMapTile flag, so that no visible ar...
SERVER_EXPORT QString owsServiceOnlineResource(const QgsProject &project)
Returns the owsService online resource defined in project.
SERVER_EXPORT QString owsServiceFees(const QgsProject &project)
Returns the owsService fees defined in project.
SERVER_EXPORT QStringList owsServiceKeywords(const QgsProject &project)
Returns the owsService keywords defined in project.
SERVER_EXPORT QString owsServiceContactPosition(const QgsProject &project)
Returns the owsService contact position defined in project.
SERVER_EXPORT QStringList wfstUpdateLayerIds(const QgsProject &project)
Returns the Layer ids list defined in a QGIS project as published as WFS-T with update capabilities.
SERVER_EXPORT bool wmsFeatureInfoUseAttributeFormSettings(const QgsProject &project)
Returns if feature form settings should be considered for the format of the feature info response.
SERVER_EXPORT QString serviceUrl(const QString &service, const QgsServerRequest &request, const QgsServerSettings &settings)
Returns the service url defined in the environment variable or with HTTP header.
SERVER_EXPORT QStringList wfstInsertLayerIds(const QgsProject &project)
Returns the Layer ids list defined in a QGIS project as published as WFS-T with insert capabilities.
SERVER_EXPORT QString wmsInspireTemporalReference(const QgsProject &project)
Returns the Inspire temporal reference.
SERVER_EXPORT QStringList wmsOutputCrsList(const QgsProject &project)
Returns the WMS output CRS list.
SERVER_EXPORT QString wmsInspireMetadataDate(const QgsProject &project)
Returns the Inspire metadata date.
SERVER_EXPORT QString owsServiceContactOrganization(const QgsProject &project)
Returns the owsService contact organization defined in project.
SERVER_EXPORT QHash< QString, QString > wmsFeatureInfoLayerAliasMap(const QgsProject &project)
Returns the mapping between layer name and wms layer name for GetFeatureInfo request.
SERVER_EXPORT bool wmsFeatureInfoAddWktGeometry(const QgsProject &project)
Returns if the geometry is displayed as Well Known Text in GetFeatureInfo request.
SERVER_EXPORT QString wmsServiceUrl(const QgsProject &project, const QgsServerRequest &request=QgsServerRequest(), const QgsServerSettings &settings=QgsServerSettings())
Returns the WMS service url.
SERVER_EXPORT QStringList wmsRestrictedLayers(const QgsProject &project)
Returns the restricted layer name list.
SERVER_EXPORT int wmsImageQuality(const QgsProject &project)
Returns the quality for WMS images defined in a QGIS project.
SERVER_EXPORT QString wmsInspireLanguage(const QgsProject &project)
Returns the Inspire language.
SERVER_EXPORT QString wmsInspireMetadataUrlType(const QgsProject &project)
Returns the Inspire metadata URL type.
SERVER_EXPORT double wmsDefaultMapUnitsPerMm(const QgsProject &project)
Returns the default number of map units per millimeters in case of the scale is not given.
SERVER_EXPORT bool owsServiceCapabilities(const QgsProject &project)
Returns if owsService capabilities are enabled.
SERVER_EXPORT bool wmsInspireActivate(const QgsProject &project)
Returns if Inspire is activated.
SERVER_EXPORT int wmsMaxWidth(const QgsProject &project)
Returns the maximum width for WMS images defined in a QGIS project.
SERVER_EXPORT QString owsServiceTitle(const QgsProject &project)
Returns the owsService title defined in project.
SERVER_EXPORT QString owsServiceContactMail(const QgsProject &project)
Returns the owsService contact mail defined in project.
SERVER_EXPORT QString owsServiceAbstract(const QgsProject &project)
Returns the owsService abstract defined in project.
SERVER_EXPORT double floorWithPrecision(double number, int places)
Returns a double less than number to the specified number of places.
SERVER_EXPORT QStringList wfstDeleteLayerIds(const QgsProject &project)
Returns the Layer ids list defined in a QGIS project as published as WFS-T with delete capabilities.
SERVER_EXPORT QString wfsServiceUrl(const QgsProject &project, const QgsServerRequest &request=QgsServerRequest(), const QgsServerSettings &settings=QgsServerSettings())
Returns the WFS service url.
SERVER_EXPORT int wmsMaxHeight(const QgsProject &project)
Returns the maximum height for WMS images defined in a QGIS project.
SERVER_EXPORT QStringList wcsLayerIds(const QgsProject &project)
Returns the Layer ids list defined in a QGIS project as published in WCS.
SERVER_EXPORT bool wmsAddLegendGroupsLegendGraphic(const QgsProject &project)
Returns if legend groups should be in the legend graphic response if GetLegendGraphic is called on a ...
SERVER_EXPORT QString wmsFeatureInfoDocumentElement(const QgsProject &project)
Returns the document element name for XML GetFeatureInfo request.
SERVER_EXPORT int wmsMaxAtlasFeatures(const QgsProject &project)
Returns the maximum number of atlas features which can be printed in a request.
SERVER_EXPORT QString owsServiceContactPhone(const QgsProject &project)
Returns the owsService contact phone defined in project.
SERVER_EXPORT int wfsLayerPrecision(const QgsProject &project, const QString &layerId)
Returns the Layer precision defined in a QGIS project for the WFS GetFeature.
SERVER_EXPORT QString owsServiceContactPerson(const QgsProject &project)
Returns the owsService contact person defined in project.
const QgsCoordinateReferenceSystem & crs