QGIS API Documentation 3.39.0-Master (3aed037ce22)
Loading...
Searching...
No Matches
qgscredentials.h
Go to the documentation of this file.
1/***************************************************************************
2 qgscredentials.h - interface for requesting credentials
3 ----------------------
4 begin : February 2010
5 copyright : (C) 2010 by Juergen E. Fischer
6 email : jef at norbit dot de
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16
17#ifndef QGSCREDENTIALS_H
18#define QGSCREDENTIALS_H
19
20#include <QMap>
21#include <QMutex>
22#include <QObject>
23#include <QPair>
24#include <QString>
25
26#include "qgis_core.h"
27#include "qgis_sip.h"
28
45class CORE_EXPORT QgsCredentials
46{
47 public:
48
49 virtual ~QgsCredentials() = default;
50
66 bool get( const QString &realm, QString &username SIP_INOUT, QString &password SIP_INOUT, const QString &message = QString(), bool requestCredentials = true );
67
77 void put( const QString &realm, const QString &username, const QString &password );
78
79 bool getMasterPassword( QString &password SIP_INOUT, bool stored = false );
80
82 static QgsCredentials *instance();
83
89 void lock();
90
94 void unlock();
95
99 QMutex *mutex() { return &mAuthMutex; }
100
101 protected:
102
103 QgsCredentials() = default;
104
106 virtual bool request( const QString &realm, QString &username SIP_INOUT, QString &password SIP_INOUT, const QString &message = QString() ) = 0;
107
109 virtual bool requestMasterPassword( QString &password SIP_INOUT, bool stored = false ) = 0;
110
112 void setInstance( QgsCredentials *instance );
113
114 private:
115 Q_DISABLE_COPY( QgsCredentials )
116
117#ifdef SIP_RUN
119#endif
120
122 QMap< QString, QPair<QString, QString> > mCredentialCache;
123
125 static QgsCredentials *sInstance;
126
128 QMutex mAuthMutex;
129
131 QMutex mCacheMutex;
132};
133
134
141class CORE_EXPORT QgsCredentialsNone : public QObject, public QgsCredentials
142{
143 Q_OBJECT
144
145 public:
147
148 signals:
150 void destroyed();
151
152 protected:
153 bool request( const QString &realm, QString &username SIP_INOUT, QString &password SIP_INOUT, const QString &message = QString() ) override;
154 bool requestMasterPassword( QString &password SIP_INOUT, bool stored = false ) override;
155};
156
157
166class CORE_EXPORT QgsCredentialsConsole : public QObject, public QgsCredentials
167{
168 Q_OBJECT
169
170 public:
172
173 signals:
175 void destroyed();
176
177 protected:
178 bool request( const QString &realm, QString &username SIP_INOUT, QString &password SIP_INOUT, const QString &message = QString() ) override;
179 bool requestMasterPassword( QString &password SIP_INOUT, bool stored = false ) override;
180};
181
182#endif
Implementation of credentials interface for the console.
void destroyed()
signals that object will be destroyed and shouldn't be used anymore
Default implementation of credentials interface.
void destroyed()
signals that object will be destroyed and shouldn't be used anymore
Interface for requesting credentials in QGIS in GUI independent way.
QMutex * mutex()
Returns pointer to mutex.
virtual bool requestMasterPassword(QString &password, bool stored=false)=0
request a master password
QgsCredentials()=default
virtual ~QgsCredentials()=default
virtual bool request(const QString &realm, QString &username, QString &password, const QString &message=QString())=0
request a password
#define SIP_INOUT
Definition qgis_sip.h:71