diff options
Diffstat (limited to 'kopete/protocols/jabber/ui/dlgjabberchangepassword.cpp')
-rw-r--r-- | kopete/protocols/jabber/ui/dlgjabberchangepassword.cpp | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/kopete/protocols/jabber/ui/dlgjabberchangepassword.cpp b/kopete/protocols/jabber/ui/dlgjabberchangepassword.cpp new file mode 100644 index 00000000..9f6ae65d --- /dev/null +++ b/kopete/protocols/jabber/ui/dlgjabberchangepassword.cpp @@ -0,0 +1,135 @@ + +/*************************************************************************** + Change the password of a Jabber account + ------------------- + begin : Tue May 31 2005 + copyright : (C) 2005 by Till Gerken <till@tantalo.net> + + Kopete (C) 2001-2005 Kopete developers <kopete-devel@kde.org> + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "dlgjabberchangepassword.h" + +#include <kdebug.h> +#include <klocale.h> +#include <kpassdlg.h> +#include <kmessagebox.h> +#include <qlabel.h> +#include <qlineedit.h> +#include <kopetepassword.h> +#include <xmpp_tasks.h> +#include "jabberaccount.h" +#include "dlgchangepassword.h" + +DlgJabberChangePassword::DlgJabberChangePassword ( JabberAccount *account, QWidget *parent, const char *name ) + : KDialogBase ( parent, name, true, i18n("Change Jabber Password"), + KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, true ) +{ + + m_account = account; + + m_mainWidget = new DlgChangePassword ( this ); + setMainWidget ( m_mainWidget ); + +} + +DlgJabberChangePassword::~DlgJabberChangePassword() +{ +} + +void DlgJabberChangePassword::slotOk () +{ + + if ( !strlen ( m_mainWidget->peCurrentPassword->password () ) + || ( m_account->password().cachedValue () != m_mainWidget->peCurrentPassword->password () ) ) + { + KMessageBox::queuedMessageBox ( this, KMessageBox::Sorry, + i18n ( "You entered your current password incorrectly." ), + i18n ( "Password Incorrect" ) ); + return; + } + + if ( strcmp ( m_mainWidget->peNewPassword1->password (), m_mainWidget->peNewPassword2->password () ) != 0 ) + { + KMessageBox::queuedMessageBox ( this, KMessageBox::Sorry, + i18n ( "Your new passwords do not match. Please enter them again." ), + i18n ( "Password Incorrect" ) ); + return; + } + + if ( !strlen ( m_mainWidget->peNewPassword1->password () ) ) + { + KMessageBox::queuedMessageBox ( this, KMessageBox::Sorry, + i18n ( "For security reasons, you are not allowed to set an empty password." ), + i18n ( "Password Incorrect" ) ); + return; + } + + if ( !m_account->isConnected () ) + { + if ( KMessageBox::questionYesNo ( this, + i18n ( "Your account needs to be connected before the password can be changed. Do you want to try to connect now?" ), + i18n ( "Jabber Password Change" ), i18n("Connect"), i18n("Stay Offline") ) == KMessageBox::Yes ) + { + connect ( m_account, SIGNAL ( isConnectedChanged () ), this, SLOT ( slotChangePassword () ) ); + m_account->connect (); + } + } + else + { + slotChangePassword (); + } + +} + +void DlgJabberChangePassword::slotCancel () +{ + + deleteLater (); + +} + +void DlgJabberChangePassword::slotChangePassword () +{ + + XMPP::JT_Register *task = new XMPP::JT_Register ( m_account->client()->rootTask () ); + QObject::connect ( task, SIGNAL ( finished () ), this, SLOT ( slotChangePasswordDone () ) ); + + task->changepw ( m_mainWidget->peNewPassword1->password () ); + task->go ( true ); + +} + +void DlgJabberChangePassword::slotChangePasswordDone () +{ + + XMPP::JT_Register *task = (XMPP::JT_Register *) sender (); + + if ( task->success () ) + { + KMessageBox::queuedMessageBox ( dynamic_cast<QWidget*>(parent()), KMessageBox::Information, + i18n ( "Your password has been changed successfully. Please note that the change may not be instantaneous. If you have problems logging in with your new password, please contact the administrator." ), + i18n ( "Jabber Password Change" ) ); + + m_account->password().set ( m_mainWidget->peNewPassword1->password () ); + } + else + { + KMessageBox::queuedMessageBox ( dynamic_cast<QWidget*>(parent()), KMessageBox::Sorry, + i18n ( "Your password could not be changed. Either your server does not support this feature or the administrator does not allow you to change your password." ) ); + } + + deleteLater(); + +} + +#include "dlgjabberchangepassword.moc" |