Add LdapAuthenticator class for logging in users via LDAP
[quassel.git] / src / core / ldapauthenticator.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2015 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 /* This file contains an implementation of an LDAP Authenticator, as an example
22  * of what a custom external auth provider could do.
23  * 
24  * It's based off of this pull request for quassel by abustany:
25  * https://github.com/quassel/quassel/pull/4/
26  * 
27  */
28
29 #ifndef LDAPAUTHENTICATOR_H
30 #define LDAPAUTHENTICATOR_H
31
32 #include "authenticator.h"
33
34 #include "core.h"
35
36 // Link against LDAP.
37 #include <ldap.h>
38
39 // Default LDAP server port.
40 #define DEFAULT_LDAP_PORT 389
41
42 class LdapAuthenticator : public Authenticator
43 {
44     Q_OBJECT
45
46 public:
47     LdapAuthenticator(QObject *parent = 0);
48     virtual ~LdapAuthenticator();
49
50 public slots:
51     /* General */
52     bool isAvailable() const;
53     QString displayName() const;
54     QString description() const;
55     virtual QStringList setupKeys() const;
56     virtual QVariantMap setupDefaults() const;
57  
58     bool setup(const QVariantMap &settings = QVariantMap());
59     State init(const QVariantMap &settings = QVariantMap());
60     UserId validateUser(const QString &user, const QString &password);
61         
62 protected:
63     virtual void setConnectionProperties(const QVariantMap &properties);
64     bool ldapConnect();
65     void ldapDisconnect();
66     bool ldapAuth(const QString &username, const QString &password);
67
68     // Protected methods for retrieving info about the LDAP connection.
69     inline virtual QString hostName() { return _hostName; }
70     inline virtual int port() { return _port; }
71     inline virtual QString bindDN() { return _bindDN; }
72     inline virtual QString baseDN() { return _baseDN; }
73
74 private:
75     QString _hostName;
76     int _port;
77     QString _bindDN;
78     QString _baseDN;
79         QString _filter;
80     QString _bindPassword;
81     QString _uidAttribute;
82
83         // The actual connection object.
84         LDAP *_connection;
85         
86 };
87
88
89 #endif