core: Allow clean shutdown of the core
[quassel.git] / src / qtui / passwordchangedlg.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 "passwordchangedlg.h"
22
23 #include <QMessageBox>
24 #include <QPushButton>
25
26 #include "client.h"
27
28 PasswordChangeDlg::PasswordChangeDlg(QWidget *parent) : QDialog(parent)
29 {
30     ui.setupUi(this);
31
32     CoreAccount account = Client::currentCoreAccount();
33     ui.infoLabel->setText(tr("This changes the password for your username <b>%1</b> "
34                              "on the Quassel Core running at <b>%2</b>.")
35                           .arg(account.user(), account.hostName()));
36
37     connect(ui.oldPasswordEdit, SIGNAL(textChanged(QString)), SLOT(inputChanged()));
38     connect(ui.newPasswordEdit, SIGNAL(textChanged(QString)), SLOT(inputChanged()));
39     connect(ui.confirmPasswordEdit, SIGNAL(textChanged(QString)), SLOT(inputChanged()));
40     connect(ui.buttonBox, SIGNAL(accepted()), SLOT(changePassword()));
41
42     connect(Client::instance(), SIGNAL(passwordChanged(bool)), SLOT(passwordChanged(bool)));
43
44     ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
45 }
46
47
48 void PasswordChangeDlg::inputChanged()
49 {
50     bool ok = !ui.oldPasswordEdit->text().isEmpty() && !ui.newPasswordEdit->text().isEmpty()
51               && ui.newPasswordEdit->text() == ui.confirmPasswordEdit->text();
52     ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(ok);
53 }
54
55
56 void PasswordChangeDlg::changePassword()
57 {
58     ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
59     Client::changePassword(ui.oldPasswordEdit->text(), ui.newPasswordEdit->text());
60 }
61
62
63 void PasswordChangeDlg::passwordChanged(bool success)
64 {
65     if (!success) {
66         QMessageBox box(QMessageBox::Warning, tr("Password Not Changed"),
67                         tr("<b>Password change failed</b>"),
68                         QMessageBox::Ok, this);
69         box.setInformativeText(tr("The core reported an error when trying to change your password. Make sure you entered your old password correctly!"));
70         box.exec();
71     }
72     else {
73         accept();
74     }
75 }