cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / passwordchangedlg.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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)
29     : QDialog(parent)
30 {
31     ui.setupUi(this);
32
33     CoreAccount account = Client::currentCoreAccount();
34     ui.infoLabel->setText(tr("This changes the password for your username <b>%1</b> "
35                              "on the Quassel Core running at <b>%2</b>.")
36                               .arg(account.user(), account.hostName()));
37
38     connect(ui.oldPasswordEdit, &QLineEdit::textChanged, this, &PasswordChangeDlg::inputChanged);
39     connect(ui.newPasswordEdit, &QLineEdit::textChanged, this, &PasswordChangeDlg::inputChanged);
40     connect(ui.confirmPasswordEdit, &QLineEdit::textChanged, this, &PasswordChangeDlg::inputChanged);
41     connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &PasswordChangeDlg::changePassword);
42
43     connect(Client::instance(), &Client::passwordChanged, this, &PasswordChangeDlg::passwordChanged);
44
45     ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
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 void PasswordChangeDlg::changePassword()
56 {
57     ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
58     Client::changePassword(ui.oldPasswordEdit->text(), ui.newPasswordEdit->text());
59 }
60
61 void PasswordChangeDlg::passwordChanged(bool success)
62 {
63     if (!success) {
64         QMessageBox box(QMessageBox::Warning, tr("Password Not Changed"), tr("<b>Password change failed</b>"), QMessageBox::Ok, this);
65         box.setInformativeText(
66             tr("The core reported an error when trying to change your password. Make sure you entered your old password correctly!"));
67         box.exec();
68     }
69     else {
70         accept();
71     }
72 }