You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/wizards/exchangewizard.cpp

298 lines
9.0 KiB

/*
This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@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.
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 "exchangewizard.h"
#include "tderesources/newexchange/tdeabc_resourceexchange.h"
#include "tderesources/newexchange/kcal_resourceexchange.h"
#include "tderesources/lib/folderconfig.h"
#include <libkcal/resourcecalendar.h>
#include <klineedit.h>
#include <tdelocale.h>
#include <tqlayout.h>
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <tqspinbox.h>
#if 0
i18n("Please select folders for addressbook:")
i18n("Please select folders for events, to-dos and journal entries:")
#endif
class CreateExchangeKcalResource : public TDEConfigPropagator::Change
{
public:
CreateExchangeKcalResource()
: TDEConfigPropagator::Change( i18n("Create Exchange Calendar Resource") )
{
}
void apply()
{
#if 0
KCal::CalendarResourceManager m( "calendar" );
m.readConfig();
KURL url( exchangeUrl() );
KCal::ResourceExchange *r = new KCal::ResourceExchange( new TDEConfig );// url );
r->setResourceName( i18n("Exchange Server") );
r->prefs()->setUser( ExchangeConfig::self()->user() );
r->prefs()->setPassword( ExchangeConfig::self()->password() );
r->setSavePolicy( KCal::ResourceCached::SaveDelayed );
r->setReloadPolicy( KCal::ResourceCached::ReloadInterval );
r->setReloadInterval( 20 );
m.add( r );
m.writeConfig();
ExchangeConfig::self()->setKcalResource( r->identifier() );
#endif
}
};
class UpdateExchangeKcalResource : public TDEConfigPropagator::Change
{
public:
UpdateExchangeKcalResource()
: TDEConfigPropagator::Change( i18n("Update Exchange Calendar Resource") )
{
}
void apply()
{
#if 0
KCal::CalendarResourceManager m( "calendar" );
m.readConfig();
KURL url( exchangeUrl() );
KCal::CalendarResourceManager::Iterator it;
for ( it = m.begin(); it != m.end(); ++it ) {
if ( (*it)->identifier() == ExchangeConfig::kcalResource() ) {
KCal::ResourceExchange *r = static_cast<KCal::ResourceExchange *>( *it );
r->prefs()->setUrl( url.url() );
r->prefs()->setUser( ExchangeConfig::self()->user() );
r->prefs()->setPassword( ExchangeConfig::self()->password() );
r->setSavePolicy( KCal::ResourceCached::SaveDelayed );
r->setReloadPolicy( KCal::ResourceCached::ReloadInterval );
r->setReloadInterval( 20 );
}
}
m.writeConfig();
#endif
}
};
class CreateExchangeTdeabcResource : public TDEConfigPropagator::Change
{
public:
CreateExchangeTdeabcResource()
: TDEConfigPropagator::Change( i18n("Create Exchange Addressbook Resource") )
{
}
void apply()
{
#if 0
KRES::Manager<TDEABC::Resource> m( "contact" );
m.readConfig();
KURL url( exchangeUrl() );
TQString user( ExchangeConfig::self()->user() );
TQString password( ExchangeConfig::self()->password() );
TDEABC::ResourceExchange *r = new TDEABC::ResourceExchange( url, user, password );
r->setResourceName( i18n("Exchange Server") );
m.add( r );
m.writeConfig();
ExchangeConfig::self()->setTdeabcResource( r->identifier() );
#endif
}
};
class UpdateExchangeTdeabcResource : public TDEConfigPropagator::Change
{
public:
UpdateExchangeTdeabcResource()
: TDEConfigPropagator::Change( i18n("Update Exchange Addressbook Resource") )
{
}
void apply()
{
# if 0
KRES::Manager<TDEABC::Resource> m( "contact" );
m.readConfig();
KURL url( exchangeUrl() );
KRES::Manager<TDEABC::Resource>::Iterator it;
for ( it = m.begin(); it != m.end(); ++it ) {
if ( (*it)->identifier() == ExchangeConfig::tdeabcResource() ) {
TDEABC::ResourceExchange *r = static_cast<TDEABC::ResourceExchange *>( *it );
r->prefs()->setUrl( url.url() );
r->prefs()->setUser( ExchangeConfig::self()->user() );
r->prefs()->setPassword( ExchangeConfig::self()->password() );
}
}
m.writeConfig();
#endif
}
};
class ExchangePropagator : public TDEConfigPropagator
{
public:
ExchangePropagator()
: TDEConfigPropagator( /*ExchangeConfig::self()*/ 0, "exchange.kcfg" )
{
}
~ExchangePropagator()
{
//ExchangeConfig::self()->writeConfig();
}
protected:
void addCustomChanges( Change::List &changes )
{
#if 0
KCal::CalendarResourceManager m1( "calendar" );
m1.readConfig();
KCal::CalendarResourceManager::Iterator it;
for ( it = m1.begin(); it != m1.end(); ++it ) {
if ( (*it)->type() == "exchange" ) break;
}
if ( it == m1.end() ) {
changes.append( new CreateExchangeKcalResource );
} else {
if ( (*it)->identifier() == ExchangeConfig::kcalResource() ) {
KCal::ExchangePrefs *prefs = static_cast<KCal::ResourceExchange *>( *it )->prefs();
if ( prefs->url() != exchangeUrl() ||
prefs->user() != ExchangeConfig::user() ||
prefs->password() != ExchangeConfig::password() ) {
changes.append( new UpdateExchangeKcalResource );
}
}
}
KRES::Manager<TDEABC::Resource> m2( "contact" );
m2.readConfig();
KRES::Manager<TDEABC::Resource>::Iterator it2;
for ( it2 = m2.begin(); it2 != m2.end(); ++it2 ) {
if ( (*it2)->type() == "exchange" ) break;
}
if ( it2 == m2.end() ) {
changes.append( new CreateExchangeTdeabcResource );
} else {
if ( (*it2)->identifier() == ExchangeConfig::tdeabcResource() ) {
TDEABC::ExchangePrefs *prefs = static_cast<TDEABC::ResourceExchange *>( *it2 )->prefs();
if ( prefs->url() != exchangeUrl() ||
prefs->user() != ExchangeConfig::user() ||
prefs->password() != ExchangeConfig::password() ) {
changes.append( new UpdateExchangeTdeabcResource );
}
}
}
#endif
}
};
ExchangeWizard::ExchangeWizard() : TDEConfigWizard( new ExchangePropagator )
{
TQFrame *page = createWizardPage( i18n("Microsoft Exchange Server") );
TQGridLayout *topLayout = new TQGridLayout( page );
topLayout->setSpacing( spacingHint() );
TQLabel *label = new TQLabel( i18n("Server name:"), page );
topLayout->addWidget( label, 0, 0 );
mServerEdit = new KLineEdit( page );
topLayout->addWidget( mServerEdit, 0, 1 );
label = new TQLabel( i18n("Port:"), page );
topLayout->addWidget( label, 1, 0 );
mPortEdit = new TQSpinBox( 1, 65536, 1, page );
topLayout->addWidget( mPortEdit, 1, 1 );
label = new TQLabel( i18n("User name:"), page );
topLayout->addWidget( label, 2, 0 );
mUserEdit = new KLineEdit( page );
topLayout->addWidget( mUserEdit, 2, 1 );
label = new TQLabel( i18n("Password:"), page );
topLayout->addWidget( label, 3, 0 );
mPasswordEdit = new KLineEdit( page );
mPasswordEdit->setEchoMode( KLineEdit::Password );
topLayout->addWidget( mPasswordEdit, 3, 1 );
mSavePasswordCheck = new TQCheckBox( i18n("Save password"), page );
topLayout->addMultiCellWidget( mSavePasswordCheck, 4, 4, 0, 1 );
mSecureCheck = new TQCheckBox( i18n("Encrypt communication with server"),
page );
topLayout->addMultiCellWidget( mSecureCheck, 5, 5, 0, 1 );
#if 0
KPIM::FolderConfig *fcfg = new KPIM::FolderConfig( page );
topLayout->addMultiCellWidget( fcfg , 5, 5, 0, 1 );
#endif
topLayout->setRowStretch( 5, 1 );
setupRulesPage();
setupChangesPage();
resize( 400, 300 );
}
ExchangeWizard::~ExchangeWizard()
{
}
void ExchangeWizard::usrReadConfig()
{
#if 0
mServerEdit->setText( ExchangeConfig::self()->server() );
mUserEdit->setText( ExchangeConfig::self()->user() );
mPasswordEdit->setText( ExchangeConfig::self()->password() );
mSavePasswordCheck->setChecked( ExchangeConfig::self()->savePassword() );
mSecureCheck->setChecked( ExchangeConfig::self()->useHttps() );
#endif
}
void ExchangeWizard::usrWriteConfig()
{
#if 0
ExchangeConfig::self()->setServer( mServerEdit->text() );
ExchangeConfig::self()->setUser( mUserEdit->text() );
ExchangeConfig::self()->setPassword( mPasswordEdit->text() );
ExchangeConfig::self()->setSavePassword( mSavePasswordCheck->isChecked() );
ExchangeConfig::self()->setUseHttps( mSecureCheck->isChecked() );
#endif
}