From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- wizards/groupwisewizard.cpp | 418 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 418 insertions(+) create mode 100644 wizards/groupwisewizard.cpp (limited to 'wizards/groupwisewizard.cpp') diff --git a/wizards/groupwisewizard.cpp b/wizards/groupwisewizard.cpp new file mode 100644 index 00000000..6ddee372 --- /dev/null +++ b/wizards/groupwisewizard.cpp @@ -0,0 +1,418 @@ +/* + This file is part of kdepim. + + Copyright (c) 2004 Cornelius Schumacher + + 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. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +#include "groupwisewizard.h" + +#include "groupwiseconfig.h" +#include "kmailchanges.h" + +#include "kresources/groupwise/kabc_groupwiseprefs.h" +#include "kresources/groupwise/kabc_resourcegroupwise.h" +#include "kresources/groupwise/kcal_groupwiseprefsbase.h" +#include "kresources/groupwise/kcal_resourcegroupwise.h" + +#include +#include + +#include +#include + +#include +#include +#include +#include +#include + +QString serverUrl() +{ + QString url; + if ( GroupwiseConfig::self()->useHttps() ) url = "https"; + else url = "http"; + url += "://" + GroupwiseConfig::self()->host() + ":" + + QString::number( GroupwiseConfig::self()->port() ) + GroupwiseConfig::self()->path(); + return url; +} + +class CreateGroupwiseKcalResource : public KConfigPropagator::Change +{ + public: + CreateGroupwiseKcalResource() + : KConfigPropagator::Change( i18n("Create GroupWise Calendar Resource") ) + { + } + + void apply() + { + KCal::CalendarResourceManager m( "calendar" ); + m.readConfig(); + + KCal::ResourceGroupwise *r = new KCal::ResourceGroupwise(); + + r->setResourceName( i18n("GroupWise") ); + r->prefs()->setUrl( serverUrl() ); + r->prefs()->setUser( GroupwiseConfig::self()->user() ); + r->prefs()->setPassword( GroupwiseConfig::self()->password() ); + r->setSavePolicy( KCal::ResourceCached::SaveDelayed ); + r->setReloadPolicy( KCal::ResourceCached::ReloadInterval ); + r->setReloadInterval( 20 ); + m.add( r ); + + m.writeConfig(); + + GroupwiseConfig::self()->setKcalResource( r->identifier() ); + } +}; + +class UpdateGroupwiseKcalResource : public KConfigPropagator::Change +{ + public: + UpdateGroupwiseKcalResource() + : KConfigPropagator::Change( i18n("Update GroupWise Calendar Resource") ) + { + } + + void apply() + { + KCal::CalendarResourceManager m( "calendar" ); + m.readConfig(); + + KCal::CalendarResourceManager::Iterator it; + for ( it = m.begin(); it != m.end(); ++it ) { + if ( (*it)->identifier() == GroupwiseConfig::kcalResource() ) { + KCal::ResourceGroupwise *r = static_cast( *it ); + r->prefs()->setUrl( serverUrl() ); + r->prefs()->setUser( GroupwiseConfig::self()->user() ); + r->prefs()->setPassword( GroupwiseConfig::self()->password() ); + r->setSavePolicy( KCal::ResourceCached::SaveDelayed ); + r->setReloadPolicy( KCal::ResourceCached::ReloadInterval ); + r->setReloadInterval( 20 ); + } + } + m.writeConfig(); + } +}; + +class CreateGroupwiseKabcResource : public KConfigPropagator::Change +{ + public: + CreateGroupwiseKabcResource() + : KConfigPropagator::Change( i18n("Create GroupWise Addressbook Resource") ) + { + } + + void apply() + { + KRES::Manager m( "contact" ); + m.readConfig(); + + QString url = serverUrl(); + QString user( GroupwiseConfig::self()->user() ); + QString password( GroupwiseConfig::self()->password() ); + + KABC::ResourceGroupwise *r = new KABC::ResourceGroupwise( url, user, + password, + QStringList(), + QString::null ); + r->setResourceName( i18n("GroupWise") ); + m.add( r ); + m.writeConfig(); + + GroupwiseConfig::self()->setKabcResource( r->identifier() ); + } +}; + +class UpdateGroupwiseKabcResource : public KConfigPropagator::Change +{ + public: + UpdateGroupwiseKabcResource() + : KConfigPropagator::Change( i18n("Update GroupWise Addressbook Resource") ) + { + } + + void apply() + { + KRES::Manager m( "contact" ); + m.readConfig(); + + KRES::Manager::Iterator it; + for ( it = m.begin(); it != m.end(); ++it ) { + if ( (*it)->identifier() == GroupwiseConfig::kabcResource() ) { + KABC::ResourceGroupwise *r = static_cast( *it ); + r->prefs()->setUrl( serverUrl() ); + r->prefs()->setUser( GroupwiseConfig::self()->user() ); + r->prefs()->setPassword( GroupwiseConfig::self()->password() ); + } + } + m.writeConfig(); + } +}; + + +class GroupwisePropagator : public KConfigPropagator +{ + public: + GroupwisePropagator() + : KConfigPropagator( GroupwiseConfig::self(), "groupwise.kcfg" ) + { + } + + ~GroupwisePropagator() + { + GroupwiseConfig::self()->writeConfig(); + } + + protected: + class Writer : public CreateDisconnectedImapAccount::CustomWriter + { + public: + void writeFolder( KConfig &, int ) {} + void writeIds( int accountId, int transportId ) + { + GroupwiseConfig::setKMailAccountId( accountId ); + GroupwiseConfig::setKMailTransportId( transportId ); + } + }; + + void addCustomChanges( Change::List &changes ) + { + ChangeConfig *c = new ChangeConfig; + c->file = "korganizerrc"; + c->group = "FreeBusy"; + c->name = "FreeBusyRetrieveUrl"; + c->value = "groupwise://" + GroupwiseConfig::self()->host() + GroupwiseConfig::self()->path() + + "/freebusy/"; + changes.append( c ); + + KCal::CalendarResourceManager m1( "calendar" ); + m1.readConfig(); + KCal::CalendarResourceManager::Iterator it; + for ( it = m1.begin(); it != m1.end(); ++it ) { + if ( (*it)->type() == "groupwise" ) break; + } + if ( it == m1.end() ) { + changes.append( new CreateGroupwiseKcalResource ); + } else { + if ( (*it)->identifier() == GroupwiseConfig::kcalResource() ) { + KCal::GroupwisePrefsBase *prefs = + static_cast( *it )->prefs(); + if ( prefs->url() != serverUrl() || + prefs->port() != GroupwiseConfig::self()->port() || + prefs->user() != GroupwiseConfig::user() || + prefs->password() != GroupwiseConfig::password() ) { + changes.append( new UpdateGroupwiseKcalResource ); + } + } + } + + KRES::Manager m2( "contact" ); + m2.readConfig(); + KRES::Manager::Iterator it2; + for ( it2 = m2.begin(); it2 != m2.end(); ++it2 ) { + if ( (*it2)->type() == "groupwise" ) break; + } + if ( it2 == m2.end() ) { + changes.append( new CreateGroupwiseKabcResource ); + } else { + if ( (*it2)->identifier() == GroupwiseConfig::kabcResource() ) { + KABC::GroupwisePrefs *prefs = static_cast( *it2 )->prefs(); + if ( prefs->url() != serverUrl() || + prefs->user() != GroupwiseConfig::user() || + prefs->password() != GroupwiseConfig::password() ) { + changes.append( new UpdateGroupwiseKabcResource ); + } + } + } + + if ( GroupwiseConfig::createEmailAccount() ) { + CreateDisconnectedImapAccount *ca = + new CreateDisconnectedImapAccount( i18n("GroupWise") ); + + ca->setServer( GroupwiseConfig::host() ); + ca->setUser( GroupwiseConfig::user() ); + ca->setPassword( GroupwiseConfig::password() ); + ca->setRealName( GroupwiseConfig::fullName() ); + QString email = GroupwiseConfig::email(); + if ( !email.isEmpty() ) ca->setEmail( email ); + ca->enableSavePassword( true ); + ca->enableSieve( false ); + ca->setEncryption( CreateDisconnectedImapAccount::TLS ); + ca->setAuthenticationSend( CreateDisconnectedImapAccount::LOGIN ); + ca->setSmtpPort( 25 ); + + ca->setExistingAccountId( GroupwiseConfig::kMailAccountId() ); + ca->setExistingTransportId( GroupwiseConfig::kMailTransportId() ); + + ca->setCustomWriter( new Writer ); + + changes.append( ca ); + } + } +}; + +GroupwiseWizard::GroupwiseWizard() : KConfigWizard( new GroupwisePropagator ) +{ + QFrame *page = createWizardPage( i18n("Novell GroupWise") ); + + QGridLayout *topLayout = new QGridLayout( page ); + topLayout->setSpacing( spacingHint() ); + + QLabel *label = new QLabel( i18n("Server name:"), page ); + topLayout->addWidget( label, 0, 0 ); + mServerEdit = new KLineEdit( page ); + topLayout->addWidget( mServerEdit, 0, 1 ); + + label = new QLabel( i18n("Path to SOAP interface:"), page ); + topLayout->addWidget( label, 1, 0 ); + mPathEdit = new KLineEdit( page ); + topLayout->addWidget( mPathEdit, 1, 1 ); + + label = new QLabel( i18n("Port:"), page ); + topLayout->addWidget( label, 2, 0 ); + mPortEdit = new QSpinBox( 1, 65536, 1, page ); + topLayout->addWidget( mPortEdit, 2, 1 ); + + label = new QLabel( i18n("User name:"), page ); + topLayout->addWidget( label, 3, 0 ); + mUserEdit = new KLineEdit( page ); + topLayout->addWidget( mUserEdit, 3, 1 ); + + label = new QLabel( i18n("Password:"), page ); + topLayout->addWidget( label, 4, 0 ); + mPasswordEdit = new KLineEdit( page ); + mPasswordEdit->setEchoMode( KLineEdit::Password ); + topLayout->addWidget( mPasswordEdit, 4, 1 ); + + mSavePasswordCheck = new QCheckBox( i18n("Save password"), page ); + topLayout->addMultiCellWidget( mSavePasswordCheck, 5, 5, 0, 1 ); + + mSecureCheck = new QCheckBox( i18n("Encrypt communication with server"), + page ); + topLayout->addMultiCellWidget( mSecureCheck, 5, 5, 0, 1 ); + + topLayout->setRowStretch( 6, 1 ); + + + mEmailPage = createWizardPage( i18n("Mail") ); + + topLayout = new QGridLayout( mEmailPage ); + topLayout->setSpacing( spacingHint() ); + + mEmailBox = new QGroupBox( 1, Horizontal, + i18n("Create Mail Account"), mEmailPage ); + mEmailBox->setCheckable( true ); + topLayout->addWidget( mEmailBox, 0, 0 ); + + mEmailWidget = new QWidget( mEmailBox ); + connect( mEmailBox, SIGNAL( toggled( bool ) ), mEmailWidget, + SLOT( setEnabled( bool ) ) ); + + QGridLayout *accountLayout= new QGridLayout( mEmailWidget ); + accountLayout->setSpacing( spacingHint() ); + + label = new QLabel( i18n("Email address:"), mEmailWidget ); + accountLayout->addWidget( label, 0, 0 ); + + mEmailEdit = new KLineEdit( mEmailWidget ); + accountLayout->addWidget( mEmailEdit, 0, 1 ); + + label = new QLabel( i18n("Full name:"), mEmailWidget ); + accountLayout->addWidget( label, 1, 0 ); + + mFullNameEdit = new KLineEdit( mEmailWidget ); + accountLayout->addWidget( mFullNameEdit, 1, 1 ); + + accountLayout->setRowStretch( 2, 1 ); + + connect( this, SIGNAL( aboutToShowPage( QWidget * ) ), + SLOT( slotAboutToShowPage( QWidget * ) ) ); + + + setupRulesPage(); + setupChangesPage(); + + resize( 600, 400 ); +} + +GroupwiseWizard::~GroupwiseWizard() +{ +} + +QString GroupwiseWizard::validate() +{ + if( mServerEdit->text().isEmpty() || + mPathEdit->text().isEmpty() || + mPortEdit->text().isEmpty() || + mUserEdit->text().isEmpty() || + mPasswordEdit->text().isEmpty() ) + return i18n( "Please fill in all fields." ); + + if ( mEmailBox->isChecked() ) { + if( !KPIM::isValidSimpleEmailAddress( mEmailEdit->text() ) ) + return i18n("Invalid email address entered."); + if( mFullNameEdit->text().isEmpty() ) + return i18n( "Please fill in all fields." ); + } + + return QString::null; +} + +void GroupwiseWizard::usrReadConfig() +{ + mServerEdit->setText( GroupwiseConfig::self()->host() ); + mPathEdit->setText( GroupwiseConfig::self()->path() ); + mPortEdit->setValue( GroupwiseConfig::self()->port() ); + mUserEdit->setText( GroupwiseConfig::self()->user() ); + mPasswordEdit->setText( GroupwiseConfig::self()->password() ); + mSavePasswordCheck->setChecked( GroupwiseConfig::self()->savePassword() ); + mSecureCheck->setChecked( GroupwiseConfig::self()->useHttps() ); + mEmailEdit->setText( GroupwiseConfig::self()->email() ); + mFullNameEdit->setText( GroupwiseConfig::fullName() ); + mEmailBox->setChecked( GroupwiseConfig::createEmailAccount() ); +} + +void GroupwiseWizard::usrWriteConfig() +{ + GroupwiseConfig::self()->setHost( mServerEdit->text() ); + GroupwiseConfig::self()->setPath( mPathEdit->text() ); + GroupwiseConfig::self()->setPort( mPortEdit->value() ); + GroupwiseConfig::self()->setUser( mUserEdit->text() ); + GroupwiseConfig::self()->setPassword( mPasswordEdit->text() ); + GroupwiseConfig::self()->setSavePassword( mSavePasswordCheck->isChecked() ); + GroupwiseConfig::self()->setUseHttps( mSecureCheck->isChecked() ); + GroupwiseConfig::setEmail( mEmailEdit->text() ); + GroupwiseConfig::setFullName( mFullNameEdit->text() ); + GroupwiseConfig::setCreateEmailAccount( mEmailBox->isChecked() ); +} + +void GroupwiseWizard::slotAboutToShowPage( QWidget *page ) +{ + if ( page == mEmailPage ) { + if ( mEmailEdit->text().isEmpty() ) { + QString host = GroupwiseConfig::host(); + int pos = host.findRev( "." ); + if ( pos > 0 ) pos = host.findRev( ".", pos - 1 ); + if ( pos > 0 ) host = host.mid( pos + 1 ); + QString email = GroupwiseConfig::user() + "@" + host; + mEmailEdit->setText( email ); + } + } +} + +#include "groupwisewizard.moc" -- cgit v1.2.3