mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Including 3 public methods, which are deprecated by this commit and replaced by a typo-fixed version
165 lines
5.0 KiB
Plaintext
165 lines
5.0 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/server/qgsserverogcapi.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
class QgsServerOgcApi : QgsServerApi
|
|
{
|
|
%Docstring(signature="appended")
|
|
QGIS Server OGC API endpoint. :py:class:`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 :py:class:`QgsServerOgcApiHandler`.
|
|
|
|
.. code-block:: python
|
|
|
|
class Handler1(QgsServerOgcApiHandler):
|
|
"""A handler, see QgsServerOgcApiHandler for an example"""
|
|
...
|
|
|
|
h = Handler1()
|
|
api = QgsServerOgcApi(serverInterface(), "/api1", "apione", "A firs API", "1.0")
|
|
api.registerHandler(h)
|
|
server.serverInterface().serviceRegistry().registerApi(api)
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 3.10
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsserverogcapi.h"
|
|
%End
|
|
public:
|
|
static const QMetaObject staticMetaObject;
|
|
|
|
public:
|
|
|
|
enum Rel
|
|
{
|
|
// The following registered link relation types are used
|
|
alternate,
|
|
describedBy,
|
|
collection,
|
|
item,
|
|
self,
|
|
service_desc,
|
|
service_doc,
|
|
prev,
|
|
next,
|
|
license,
|
|
// In addition the following link relation types are used for which no applicable registered link relation type could be identified:
|
|
items,
|
|
conformance,
|
|
data
|
|
};
|
|
|
|
enum ContentType
|
|
{
|
|
GEOJSON,
|
|
OPENAPI3,
|
|
JSON,
|
|
HTML,
|
|
XML
|
|
};
|
|
|
|
QgsServerOgcApi( QgsServerInterface *serverIface,
|
|
const QString &rootPath,
|
|
const QString &name,
|
|
const QString &description = QString(),
|
|
const QString &version = QString() );
|
|
%Docstring
|
|
QgsServerOgcApi constructor
|
|
|
|
:param serverIface: pointer to the server interface
|
|
:param rootPath: root path for this API (usually starts with a "/", e.g. "/wfs3")
|
|
:param name: API name
|
|
:param description: API description
|
|
:param version: API version
|
|
%End
|
|
|
|
virtual const QString name() const;
|
|
virtual const QString description() const;
|
|
virtual const QString version() const;
|
|
virtual const QString rootPath() const;
|
|
|
|
~QgsServerOgcApi();
|
|
|
|
virtual void executeRequest( const QgsServerApiContext &context ) const throw( QgsServerApiBadRequestException ) /VirtualErrorHandler=serverapi_badrequest_exception_handler/;
|
|
%Docstring
|
|
Executes a request by passing the given ``context`` to the API handlers.
|
|
%End
|
|
|
|
|
|
|
|
|
|
void registerHandler( QgsServerOgcApiHandler *handler /Transfer/ );
|
|
%Docstring
|
|
Registers an OGC API ``handler``, ownership of the handler is transferred to the API
|
|
%End
|
|
|
|
static QUrl sanitizeUrl( const QUrl &url );
|
|
%Docstring
|
|
Returns a sanitized ``url`` with extra slashes removed and the path URL component that
|
|
always starts with a slash.
|
|
%End
|
|
|
|
static std::string relToString( const QgsServerOgcApi::Rel &rel );
|
|
%Docstring
|
|
Returns the string representation of ``rel`` attribute.
|
|
%End
|
|
|
|
static QString contentTypeToString( const QgsServerOgcApi::ContentType &ct );
|
|
%Docstring
|
|
Returns the string representation of a ``ct`` (Content-Type) attribute.
|
|
%End
|
|
|
|
static std::string contentTypeToStdString( const QgsServerOgcApi::ContentType &ct );
|
|
%Docstring
|
|
Returns the string representation of a ``ct`` (Content-Type) attribute.
|
|
%End
|
|
|
|
static QString contentTypeToExtension( const QgsServerOgcApi::ContentType &ct );
|
|
%Docstring
|
|
Returns the file extension for a ``ct`` (Content-Type).
|
|
%End
|
|
|
|
static QgsServerOgcApi::ContentType contenTypeFromExtension( const std::string &extension ) /Deprecated/;
|
|
%Docstring
|
|
Returns the Content-Type value corresponding to ``extension``.
|
|
|
|
.. deprecated::
|
|
Use :py:func:`~QgsServerOgcApi.contentTypeFromExtension`
|
|
%End
|
|
|
|
static QgsServerOgcApi::ContentType contentTypeFromExtension( const std::string &extension );
|
|
%Docstring
|
|
Returns the Content-Type value corresponding to ``extension``.
|
|
|
|
.. versionadded:: 3.38
|
|
%End
|
|
|
|
static std::string mimeType( const QgsServerOgcApi::ContentType &contentType );
|
|
%Docstring
|
|
Returns the mime-type for the ``contentType`` or an empty string if not found
|
|
%End
|
|
|
|
|
|
};
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/server/qgsserverogcapi.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|