QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
36 #ifdef HAVE_SERVER_PYTHON_PLUGINS
40 const QDomDocument *describeDocument =
nullptr;
42 #ifdef HAVE_SERVER_PYTHON_PLUGINS
44 if ( cacheManager && cacheManager->
getCachedDocument( &doc, project, request, accessControl ) )
46 describeDocument = &doc;
56 describeDocument = &doc;
60 describeDocument = &doc;
62 response.
setHeader(
"Content-Type",
"text/xml; charset=utf-8" );
63 response.
write( describeDocument->toByteArray() );
76 #ifdef HAVE_SERVER_PYTHON_PLUGINS
83 QDomElement coveDescElement = doc.createElement( QStringLiteral(
"CoverageDescription" ) );
84 coveDescElement.setAttribute( QStringLiteral(
"xmlns" ),
WCS_NAMESPACE );
85 coveDescElement.setAttribute( QStringLiteral(
"xmlns:xsi" ), QStringLiteral(
"http://www.w3.org/2001/XMLSchema-instance" ) );
86 coveDescElement.setAttribute( QStringLiteral(
"xsi:schemaLocation" ),
WCS_NAMESPACE +
" http://schemas.opengis.net/wcs/1.0.0/describeCoverage.xsd" );
87 coveDescElement.setAttribute( QStringLiteral(
"xmlns:gml" ),
GML_NAMESPACE );
88 coveDescElement.setAttribute( QStringLiteral(
"xmlns:xlink" ), QStringLiteral(
"http://www.w3.org/1999/xlink" ) );
89 coveDescElement.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.0.0" ) );
90 coveDescElement.setAttribute( QStringLiteral(
"updateSequence" ), QStringLiteral(
"0" ) );
91 doc.appendChild( coveDescElement );
96 const QMap<QString, QString>::const_iterator cove_name_it = parameters.constFind( QStringLiteral(
"COVERAGE" ) );
97 if ( cove_name_it != parameters.constEnd() )
99 coveNames = cove_name_it.value();
101 if ( coveNames.isEmpty() )
103 const QMap<QString, QString>::const_iterator cove_name_it = parameters.constFind( QStringLiteral(
"IDENTIFIER" ) );
104 if ( cove_name_it != parameters.constEnd() )
106 coveNames = cove_name_it.value();
110 QStringList coveNameList;
111 if ( !coveNames.isEmpty() )
113 coveNameList = coveNames.split(
',' );
114 for (
int i = 0; i < coveNameList.size(); ++i )
116 coveNameList.replace( i, coveNameList.at( i ).trimmed() );
121 for (
int i = 0; i < wcsLayersId.size(); ++i )
132 #ifdef HAVE_SERVER_PYTHON_PLUGINS
138 QString name = layer->
name();
141 name = name.replace(
' ',
'_' );
143 if ( coveNameList.size() == 0 || coveNameList.contains( name ) )
QgsServerRequest::Parameters parameters() const
Returns a map of query parameters with keys converted to uppercase.
QString shortName() const
Returns the short name of the layer used by QGIS Server to identify the layer.
bool layerReadPermission(const QgsMapLayer *layer) const
Returns the layer read right.
QgsServerRequest Class defining request interface passed to services QgsService::executeRequest() met...
Q_INVOKABLE QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
const QString GML_NAMESPACE
void writeDescribeCoverage(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request, QgsServerResponse &response)
Output WCS DescribeCoverage response.
virtual QgsAccessControl * accessControls() const =0
Gets the registered access control filters.
SERVER_EXPORT QStringList wcsLayerIds(const QgsProject &project)
Returns the Layer ids list defined in a QGIS project as published in WCS.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
QMap< QString, QString > Parameters
virtual void write(const QString &data)
Write string This is a convenient method that will write directly to the underlying I/O device.
QDomDocument createDescribeCoverageDocument(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request)
Create describe coverage document.
A helper class that centralizes caches accesses given by all the server cache filter plugins.
@ RasterLayer
Raster layer.
Represents a raster layer.
A helper class that centralizes restrictions given by all the access control filter plugins.
virtual QgsServerCacheManager * cacheManager() const =0
Gets the registered server cache filters.
QDomElement getCoverageOffering(QDomDocument &doc, const QgsRasterLayer *layer, const QgsProject *project, bool brief)
CoverageOffering or CoverageOfferingBrief element.
Base class for all map layer types. This is the base class for all map layer types (vector,...
bool getCachedDocument(QDomDocument *doc, const QgsProject *project, const QgsServerRequest &request, QgsAccessControl *accessControl) const
Returns cached document (or 0 if document not in cache) like capabilities.
bool setCachedDocument(const QDomDocument *doc, const QgsProject *project, const QgsServerRequest &request, QgsAccessControl *accessControl) const
Updates or inserts the document in cache like capabilities.
const QString WCS_NAMESPACE
QgsServerInterface Class defining interfaces exposed by QGIS Server and made available to plugins.
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() m...
virtual void setHeader(const QString &key, const QString &value)=0
Set Header entry Add Header entry to the response Note that it is usually an error to set Header afte...