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