|
QGIS API Documentation 4.1.0-Master (31622b25bb0)
|
QGIS Server OGC API endpoint. More...
#include <qgsserverogcapi.h>

Public Types | |
| enum | ContentType { GEOJSON , OPENAPI3 , JSON , HTML , XML , FLATGEOBUF } |
| Media types used for content negotiation, insert more specific first. More... | |
| enum class | Profile { NONE , RFC7946 } |
| JSON profile. More... | |
| enum | Rel { alternate , describedBy , collection , item , self , service_desc , service_doc , prev , next , license , items , conformance , data } |
| Rel link types. More... | |
Public Member Functions | |
| QgsServerOgcApi (QgsServerInterface *serverIface, const QString &rootPath, const QString &name, const QString &description=QString(), const QString &version=QString()) | |
| QgsServerOgcApi constructor. | |
| ~QgsServerOgcApi () override | |
| const QString | description () const override |
| Returns the API description. | |
| void | executeRequest (const QgsServerApiContext &context) const override |
| Executes a request by passing the given context to the API handlers. | |
| const std::vector< std::shared_ptr< QgsServerOgcApiHandler > > | handlers () const |
| Returns registered handlers. | |
| const QString | name () const override |
| Returns the API name. | |
| template<class T, typename... Args> | |
| void | registerHandler (Args... args) |
| Registers an OGC API handler passing Args to the constructor. | |
| void | registerHandler (QgsServerOgcApiHandler *handler) |
| Registers an OGC API handler, ownership of the handler is transferred to the API. | |
| const QString | rootPath () const override |
| Returns the root path for the API. | |
| const QString | version () const override |
| Returns the version of the service. | |
| Public Member Functions inherited from QgsServerApi | |
| QgsServerApi (QgsServerInterface *serverIface) | |
| Creates a QgsServerApi object. | |
| virtual | ~QgsServerApi ()=default |
| virtual bool | accept (const QUrl &url) const |
Returns true if the given url is handled by the API, default implementation checks for the presence of rootPath inside the url path. | |
| QgsServerInterface * | serverIface () const |
| Returns the server interface. | |
Static Public Member Functions | |
| static const QHash< QgsServerOgcApi::ContentType, QList< QgsServerOgcApi::ContentType > > | contentTypeAliases () |
| Returns contentType specializations (e.g. | |
| static QgsServerOgcApi::ContentType | contentTypeFromExtension (const std::string &extension) |
| Returns the Content-Type value corresponding to extension. | |
| static const QMap< QgsServerOgcApi::ContentType, QStringList > | contentTypeMimes () |
| Returns a map of contentType => list of mime types. | |
| static QString | contentTypeToExtension (const QgsServerOgcApi::ContentType &ct) |
| Returns the file extension for a ct (Content-Type). | |
| static std::string | contentTypeToStdString (const QgsServerOgcApi::ContentType &ct) |
| Returns the string representation of a ct (Content-Type) attribute. | |
| static QString | contentTypeToString (const QgsServerOgcApi::ContentType &ct) |
| Returns the string representation of a ct (Content-Type) attribute. | |
| static Q_DECL_DEPRECATED QgsServerOgcApi::ContentType | contenTypeFromExtension (const std::string &extension) |
| Returns the Content-Type value corresponding to extension. | |
| static std::string | mimeType (const QgsServerOgcApi::ContentType &contentType) |
| Returns the mime-type for the contentType or an empty string if not found. | |
| static QString | profileToString (const QgsServerOgcApi::Profile &profile) |
| Returns a string representation of the profile. | |
| static QString | profileToUri (const QgsServerOgcApi::Profile &profile) |
| Returns a URI string representation of the profile. | |
| static std::string | relToString (const QgsServerOgcApi::Rel &rel) |
| Returns the string representation of rel attribute. | |
| static QUrl | sanitizeUrl (const QUrl &url) |
| Returns a sanitized url with extra slashes removed and the path URL component that always starts with a slash. | |
QGIS Server OGC API endpoint.
QgsServerOgcApi provides the foundation for the new generation of REST-API based OGC services (e.g. WFS3).
This class can be used directly and configured by registering handlers as instances of QgsServerOgcApiHandler.
Definition at line 47 of file qgsserverogcapi.h.
Media types used for content negotiation, insert more specific first.
| Enumerator | |
|---|---|
| GEOJSON | |
| OPENAPI3 | "application/openapi+json;version=3.0" |
| JSON | |
| HTML | |
| XML | |
| FLATGEOBUF | "application/flatgeobuf" |
Definition at line 76 of file qgsserverogcapi.h.
|
strong |
JSON profile.
| Enumerator | |
|---|---|
| NONE | No profile. |
| RFC7946 | GeoJSON profile according to RFC7946. |
Definition at line 88 of file qgsserverogcapi.h.
| enum QgsServerOgcApi::Rel |
Rel link types.
Definition at line 54 of file qgsserverogcapi.h.
| QgsServerOgcApi::QgsServerOgcApi | ( | QgsServerInterface * | serverIface, |
| const QString & | rootPath, | ||
| const QString & | name, | ||
| const QString & | description = QString(), | ||
| const QString & | version = QString() ) |
QgsServerOgcApi constructor.
| serverIface | pointer to the server interface |
| rootPath | root path for this API (usually starts with a "/", e.g. "/wfs3") |
| name | API name |
| description | API description |
| version | API version |
Definition at line 50 of file qgsserverogcapi.cpp.
|
override |
Definition at line 58 of file qgsserverogcapi.cpp.
|
static |
Returns contentType specializations (e.g.
JSON => [GEOJSON, OPENAPI3], XML => [GML])
Definition at line 123 of file qgsserverogcapi.cpp.
|
static |
Returns the Content-Type value corresponding to extension.
Definition at line 203 of file qgsserverogcapi.cpp.
|
static |
Returns a map of contentType => list of mime types.
Definition at line 118 of file qgsserverogcapi.cpp.
|
static |
Returns the file extension for a ct (Content-Type).
Definition at line 191 of file qgsserverogcapi.cpp.
|
static |
Returns the string representation of a ct (Content-Type) attribute.
Definition at line 185 of file qgsserverogcapi.cpp.
|
static |
Returns the string representation of a ct (Content-Type) attribute.
Definition at line 178 of file qgsserverogcapi.cpp.
|
inlinestatic |
Returns the Content-Type value corresponding to extension.
Definition at line 191 of file qgsserverogcapi.h.
|
inlineoverridevirtual |
Returns the API description.
Implements QgsServerApi.
Definition at line 111 of file qgsserverogcapi.h.
|
overridevirtual |
Executes a request by passing the given context to the API handlers.
Implements QgsServerApi.
Definition at line 85 of file qgsserverogcapi.cpp.
| const std::vector< std::shared_ptr< QgsServerOgcApiHandler > > QgsServerOgcApi::handlers | ( | ) | const |
Returns registered handlers.
Definition at line 232 of file qgsserverogcapi.cpp.
|
static |
Returns the mime-type for the contentType or an empty string if not found.
Definition at line 223 of file qgsserverogcapi.cpp.
|
inlineoverridevirtual |
|
static |
Returns a string representation of the profile.
Definition at line 128 of file qgsserverogcapi.cpp.
|
static |
Returns a URI string representation of the profile.
Definition at line 149 of file qgsserverogcapi.cpp.
|
inline |
Registers an OGC API handler passing Args to the constructor.
Definition at line 153 of file qgsserverogcapi.h.
| void QgsServerOgcApi::registerHandler | ( | QgsServerOgcApiHandler * | handler | ) |
Registers an OGC API handler, ownership of the handler is transferred to the API.
Definition at line 63 of file qgsserverogcapi.cpp.
|
static |
Returns the string representation of rel attribute.
Definition at line 170 of file qgsserverogcapi.cpp.
|
inlineoverridevirtual |
Returns the root path for the API.
Implements QgsServerApi.
Definition at line 113 of file qgsserverogcapi.h.
|
static |
Returns a sanitized url with extra slashes removed and the path URL component that always starts with a slash.
Definition at line 69 of file qgsserverogcapi.cpp.
|
inlineoverridevirtual |
Returns the version of the service.
Reimplemented from QgsServerApi.
Definition at line 112 of file qgsserverogcapi.h.