40 QStringList &layerList );
46 QDomDocument doc =
getStyles( serverIface, project, version, request );
47 response.
setHeader( QStringLiteral(
"Content-Type" ), QStringLiteral(
"text/xml; charset=utf-8" ) );
48 response.
write( doc.toByteArray() );
58 QString layersName = parameters.value(
"LAYERS" );
60 if ( layersName.isEmpty() )
63 QStringLiteral(
"Layers is mandatory for GetStyles operation" ) );
66 QStringList layerList = layersName.split(
',', QString::SkipEmptyParts );
67 if ( layerList.isEmpty() )
70 QStringLiteral(
"Layers is mandatory for GetStyles operation" ) );
73 return getStyledLayerDescriptorDocument( serverIface, project, layerList );
80 QDomDocument doc =
getStyle( serverIface, project, version, request );
81 response.
setHeader( QStringLiteral(
"Content-Type" ), QStringLiteral(
"text/xml; charset=utf-8" ) );
82 response.
write( doc.toByteArray() );
94 QString styleName = parameters.value( QStringLiteral(
"STYLE" ) );
95 QString layerName = parameters.value( QStringLiteral(
"LAYER" ) );
97 if ( styleName.isEmpty() )
100 QStringLiteral(
"Style is mandatory for GetStyle operation" ), 400 );
103 if ( layerName.isEmpty() )
106 QStringLiteral(
"Layer is mandatory for GetStyle operation" ), 400 );
109 QStringList layerList;
110 layerList.append( layerName );
111 return getStyledLayerDescriptorDocument( serverIface, project, layerList );
117 QStringList &layerList )
119 QDomDocument myDocument = QDomDocument();
121 QDomNode header = myDocument.createProcessingInstruction( QStringLiteral(
"xml" ), QStringLiteral(
"version=\"1.0\" encoding=\"UTF-8\"" ) );
122 myDocument.appendChild( header );
125 QDomElement root = myDocument.createElementNS( QStringLiteral(
"http://www.opengis.net/sld" ), QStringLiteral(
"StyledLayerDescriptor" ) );
126 root.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.1.0" ) );
127 root.setAttribute( QStringLiteral(
"xsi:schemaLocation" ), QStringLiteral(
"http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/StyledLayerDescriptor.xsd" ) );
128 root.setAttribute( QStringLiteral(
"xmlns:ogc" ), QStringLiteral(
"http://www.opengis.net/ogc" ) );
129 root.setAttribute( QStringLiteral(
"xmlns:se" ), QStringLiteral(
"http://www.opengis.net/se" ) );
130 root.setAttribute( QStringLiteral(
"xmlns:xlink" ), QStringLiteral(
"http://www.w3.org/1999/xlink" ) );
131 root.setAttribute( QStringLiteral(
"xmlns:xsi" ), QStringLiteral(
"http://www.w3.org/2001/XMLSchema-instance" ) );
132 myDocument.appendChild( root );
135 #ifdef HAVE_SERVER_PYTHON_PLUGINS 147 QString name = layer->name();
150 else if ( !layer->shortName().isEmpty() )
151 name = layer->shortName();
153 if ( !layerList.contains( name ) )
159 if ( restrictedLayers.contains( layer->name() ) )
170 QDomElement namedLayerNode = myDocument.createElement( QStringLiteral(
"NamedLayer" ) );
171 root.appendChild( namedLayerNode );
174 QDomElement nameNode = myDocument.createElement( QStringLiteral(
"se:Name" ) );
175 nameNode.appendChild( myDocument.createTextNode( name ) );
176 namedLayerNode.appendChild( nameNode );
188 props[ QStringLiteral(
"scaleMinDenom" ) ] = QString::number( vlayer->
maximumScale() );
189 props[ QStringLiteral(
"scaleMaxDenom" ) ] = QString::number( vlayer->
minimumScale() );
196 QDomElement userStyleElem = myDocument.createElement( QStringLiteral(
"UserStyle" ) );
198 QDomElement styleNameElem = myDocument.createElement( QStringLiteral(
"se:Name" ) );
199 styleNameElem.appendChild( myDocument.createTextNode( styleName ) );
201 userStyleElem.appendChild( styleNameElem );
203 QDomElement featureTypeStyleElem = myDocument.createElement( QStringLiteral(
"se:FeatureTypeStyle" ) );
204 userStyleElem.appendChild( featureTypeStyleElem );
206 vlayer->
renderer()->
toSld( myDocument, featureTypeStyleElem, props );
212 namedLayerNode.appendChild( userStyleElem );
QDomDocument getStyle(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request)
Returns an SLD file with the style of the requested layer.
void writeGetStyles(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request, QgsServerResponse &response)
Output GetStyles response.
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...
Base class for all map layer types.
double maximumScale() const
Returns the maximum map scale (i.e.
QgsMapLayerStyleManager * styleManager() const
Gets access to the layer's style manager.
Exception thrown in case of malformed request.
virtual void write(const QString &data)
Write string This is a convenient method that will write directly to the underlying I/O device...
QMap< QString, QString > QgsStringMap
bool isSpatial() const FINAL
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
Exception class for WMS service exceptions.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
const QgsAbstractVectorLayerLabeling * labeling() const
Access to const labeling configuration.
QString currentStyle() const
Returns name of the current style.
virtual void toSld(QDomNode &parent, const QgsStringMap &props) const
Writes the SE 1.1 TextSymbolizer element based on the current layer labeling settings.
Reads and writes project states.
QgsFeatureRenderer * renderer()
Returns renderer.
virtual void toSld(QDomDocument &doc, QDomElement &element, const QgsStringMap &props=QgsStringMap()) const
used from subclasses to create SLD Rule elements following SLD v1.1 specs
double minimumScale() const
Returns the minimum map scale (i.e.
void writeGetStyle(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request, QgsServerResponse &response)
Output GetStyle response.
Median cut implementation.
QgsServerRequest Class defining request interface passed to services QgsService::executeRequest() met...
QgsServerInterface Class defining interfaces exposed by QGIS Server and made available to plugins...
Exception thrown when data access violates access controls.
QDomDocument getStyles(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request)
Returns an SLD file with the styles of the requested layers.
A helper class that centralizes restrictions given by all the access control filter plugins...
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() m...
virtual QgsAccessControl * accessControls() const =0
Gets the registered access control filters.
SERVER_EXPORT QStringList wmsRestrictedLayers(const QgsProject &project)
Returns the restricted layer name list.
bool labelsEnabled() const
Returns whether the layer contains labels which are enabled and should be drawn.
Represents a vector layer which manages a vector based data sets.
QgsServerRequest::Parameters parameters() const
Returns a map of query parameters with keys converted to uppercase.
QMap< QString, QgsMapLayer * > mapLayers() const
Returns a map of all registered layers by layer ID.
bool setCurrentStyle(const QString &name)
Set a different style as the current style - will apply it to the layer.
QMap< QString, QString > Parameters
SERVER_EXPORT bool wmsUseLayerIds(const QgsProject &project)
Returns if layer ids are used as name in WMS.
QStringList styles() const
Returns list of all defined style names.
bool layerReadPermission(const QgsMapLayer *layer) const
Returns the layer read right.