25   : mCapabilitiesCache( capCache )
 
   26   , mServiceRegistry( srvRegistry )
 
   27   , mServerSettings( settings )
 
   29   mRequestHandler = 
nullptr;
 
   30 #ifdef HAVE_SERVER_PYTHON_PLUGINS 
   38   return getenv( name.toLocal8Bit() );
 
   44 #ifdef HAVE_SERVER_PYTHON_PLUGINS 
   45   delete mAccessControls;
 
   53   mRequestHandler = 
nullptr;
 
   68   mFilters.insert( priority, filter );
 
   79 #ifdef HAVE_SERVER_PYTHON_PLUGINS 
   82   Q_UNUSED( accessControl )
 
   90 #ifdef HAVE_SERVER_PYTHON_PLUGINS 
   93   Q_UNUSED( serverCache )
 
  100   return mCacheManager;
 
  105   if ( mCapabilitiesCache )
 
  114   return mServiceRegistry;
 
  119   return mServerSettings;
 
Class defining access control interface for QGIS Server plugins.
A helper class that centralizes restrictions given by all the access control filter plugins.
void registerAccessControl(QgsAccessControlFilter *accessControl, int priority=0)
Register an access control filter.
A cache for capabilities xml documents (by configuration file path)
void removeCapabilitiesDocument(const QString &path)
Remove capabilities document.
void removeEntry(const QString &path)
Removes an entry from cache.
static QgsConfigCache * instance()
Returns the current instance.
This class is an interface hiding the details of reading input and writing output from/to a wms reque...
Class defining cache interface for QGIS Server plugins.
A helper class that centralizes caches accesses given by all the server cache filter plugins.
void registerServerCache(QgsServerCacheFilter *serverCache, int priority=0)
Register a server cache filter.
Class defining I/O filters for QGIS Server and implemented in plugins.
void registerServerCache(QgsServerCacheFilter *serverCache, int priority=0) override
Registers a server cache filter.
~QgsServerInterfaceImpl() override
QgsServerSettings * serverSettings() override
Returns the server settings.
void removeConfigCacheEntry(const QString &path) override
Remove entry from config cache.
QgsServerInterfaceImpl(QgsCapabilitiesCache *capCache, QgsServiceRegistry *srvRegistry, QgsServerSettings *serverSettings)
Constructor.
void setRequestHandler(QgsRequestHandler *requestHandler) override
Set the request handler.
QString getEnv(const QString &name) const override
Returns an enrironment variable, used to pass environment variables to Python.
void clearRequestHandler() override
Clear the request handler.
QgsServerFiltersMap filters() override
Returns the list of current QgsServerFilter.
QgsServiceRegistry * serviceRegistry() override
Returns the service registry.
void registerAccessControl(QgsAccessControlFilter *accessControl, int priority=0) override
Register an access control filter.
QgsServerCacheManager * cacheManager() const override
Gets the helper over all the registered server cache filters.
void setFilters(QgsServerFiltersMap *filters) override
Set the filters map.
QString configFilePath() override
Returns the configuration file path.
QgsRequestHandler * requestHandler() override
Returns the QgsRequestHandler, to be used only in server plugins.
void setConfigFilePath(const QString &configFilePath) override
Set the configuration file path.
void registerFilter(QgsServerFilter *filter, int priority=0) override
Register a QgsServerFilter.
Provides a way to retrieve settings by prioritizing according to environment variables,...
QgsServiceRegistry Class defining the registry manager for QGIS server services.
QMultiMap< int, QgsServerFilter * > QgsServerFiltersMap