QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsserverapi.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsserverapi.h
3
4 Class defining the service interface for QGIS server APIs.
5 -------------------
6 begin : 2019-04-16
7 copyright : (C) 2019 by Alessandro Pasotti
8 email : elpaso at itopen dot it
9 ***************************************************************************/
10
11/***************************************************************************
12 * *
13 * This program is free software; you can redistribute it and/or modify *
14 * it under the terms of the GNU General Public License as published by *
15 * the Free Software Foundation; either version 2 of the License, or *
16 * (at your option) any later version. *
17 * *
18 ***************************************************************************/
19
20
21#ifndef QGSSERVERAPI_H
22#define QGSSERVERAPI_H
23
24#include "qgis_server.h"
25#include "qgsserverexception.h"
26#include "qgsserverrequest.h"
27
28#include <QRegularExpression>
29
31class QgsProject;
34
80class SERVER_EXPORT QgsServerApi
81{
82 public:
87
88 virtual ~QgsServerApi() = default;
89
93 virtual const QString name() const = 0;
94
98 virtual const QString description() const = 0;
99
104 virtual const QString version() const { return QString(); }
105
109 virtual const QString rootPath() const = 0;
110
114 virtual bool accept( const QUrl &url ) const;
115
119 virtual void executeRequest( const QgsServerApiContext &context ) const = 0;
120
125
126 private:
127 QgsServerInterface *mServerIface = nullptr;
128};
129
130
131#endif // QGSSERVERAPI_H
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition qgsproject.h:109
Encapsulates the resources for a particular client request.
QgsServerApi(QgsServerInterface *serverIface)
Creates a QgsServerApi object.
QgsServerInterface * serverIface() const
Returns the server interface.
virtual const QString version() const
Returns the version of the service.
virtual const QString description() const =0
Returns the API description.
virtual const QString name() const =0
Returns the API name.
virtual bool accept(const QUrl &url) const
Returns true if the given url is handled by the API, default implementation checks for the presence o...
virtual void executeRequest(const QgsServerApiContext &context) const =0
Executes a request by passing the given context to the API handlers.
virtual const QString rootPath() const =0
Returns the root path for the API.
virtual ~QgsServerApi()=default
Defines interfaces exposed by QGIS Server and made available to plugins.
Defines the response interface passed to QgsService.