identd: Remove unneeded strict attribute
[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 "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
40 bool SqlAuthenticator::isAvailable() const
41 {
42     // FIXME: probably this should query the current storage (see the ::init routine too).
43     return true;
44 }
45
46
47 QString SqlAuthenticator::backendId() const
48 {
49     // We identify the backend to use for the monolithic core by this identifier.
50     // so only change this string if you _really_ have to and make sure the core
51     // setup for the mono client still works ;)
52     return QString("Database");
53 }
54
55
56 QString SqlAuthenticator::displayName() const
57 {
58     return tr("Database");
59 }
60
61
62 QString SqlAuthenticator::description() const
63 {
64     return tr("Do not authenticate against any remote service, but instead save a hashed and salted password "
65               "in the database selected in the next step.");
66 }
67
68
69 UserId SqlAuthenticator::validateUser(const QString &user, const QString &password)
70 {
71     return Core::validateUser(user, password);
72 }
73
74
75 bool SqlAuthenticator::setup(const QVariantMap &settings, const QProcessEnvironment &environment,
76                              bool loadFromEnvironment)
77 {
78     Q_UNUSED(settings)
79     Q_UNUSED(environment)
80     Q_UNUSED(loadFromEnvironment)
81     return true;
82 }
83
84
85 Authenticator::State SqlAuthenticator::init(const QVariantMap &settings,
86                                             const QProcessEnvironment &environment,
87                                             bool loadFromEnvironment)
88 {
89     Q_UNUSED(settings)
90     Q_UNUSED(environment)
91     Q_UNUSED(loadFromEnvironment)
92
93     // TODO: FIXME: this should check if the storage provider is ready, but I don't
94     // know if there's an exposed way to do that at the moment.
95
96     quInfo() << qPrintable(backendId()) << "authenticator is ready.";
97     return IsReady;
98 }