ldap: Remove warnings
[quassel.git] / src / core / sqlauthenticator.cpp
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 #include "sqlauthenticator.h"
22
23 #include "logger.h"
24 #include "network.h"
25 #include "quassel.h"
26
27 #include "core.h"
28
29 SqlAuthenticator::SqlAuthenticator(QObject *parent)
30     : Authenticator(parent)
31 {
32 }
33
34
35 SqlAuthenticator::~SqlAuthenticator()
36 {
37 }
38
39 bool SqlAuthenticator::isAvailable() const
40 {
41     // FIXME: probably this should query the current storage (see the ::init routine too).
42     return true;
43 }
44
45 QString SqlAuthenticator::backendId() const
46 {
47     // We identify the backend to use for the monolithic core by its displayname.
48     // so only change this string if you _really_ have to and make sure the core
49     // setup for the mono client still works ;)
50     return QString("Database");
51 }
52
53 QString SqlAuthenticator::description() const
54 {
55     return tr("Do not auth against any remote authentication service, but instead save a hashed and salted password "
56               "in the selected database.");
57 }
58
59 UserId SqlAuthenticator::validateUser(const QString &user, const QString &password)
60 {
61     return Core::validateUser(user, password);
62 }
63
64 bool SqlAuthenticator::setup(const QVariantMap &settings)
65 {
66     Q_UNUSED(settings)
67     return true;
68 }
69
70 Authenticator::State SqlAuthenticator::init(const QVariantMap &settings)
71 {
72     Q_UNUSED(settings)
73
74     // TODO: FIXME: this should check if the storage provider is ready, but I don't
75     // know if there's an exposed way to do that at the moment.
76
77     quInfo() << qPrintable(backendId()) << "Authenticator is ready.";
78     return IsReady;
79 }