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