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/korganizer/plugins/exchange/exchange.cpp

239 lines
7.7 KiB

/*
This file is part of KOrganizer.
Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.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 <tqfile.h>
#include <kapplication.h>
#include <tdeconfig.h>
#include <kstandarddirs.h>
#include <kurl.h>
#include <kdebug.h>
#include <kmessagebox.h>
#include <klocale.h>
#include <tdeaction.h>
#include <kglobal.h>
#include "korganizer/korganizer.h"
#include "korganizer/calendarview.h"
#include <exchangeclient.h>
#include <exchangeaccount.h>
#include "exchange.h"
#include "exchangedialog.h"
#include "exchangeconfig.h"
using namespace KCal; // Needed for connecting slots
class ExchangeFactory : public KOrg::PartFactory {
public:
KOrg::Part *create(KOrg::MainWindow *parent, const char *name)
{
kdDebug(5850) << "Registering Exchange Plugin...\n";
TDEGlobal::locale()->insertCatalogue("libkpimexchange");
return new Exchange(parent,name);
}
};
K_EXPORT_COMPONENT_FACTORY( libkorg_exchange, ExchangeFactory )
Exchange::Exchange(KOrg::MainWindow *parent, const char *name) :
KOrg::Part(parent,name)
{
setInstance( new TDEInstance( "korganizer" ) );
kdDebug(5850) << "Creating Exchange Plugin...\n";
mAccount = new KPIM::ExchangeAccount( "Calendar/Exchange Plugin" );
mClient = new KPIM::ExchangeClient( mAccount );
mClient->setWindow( parent->topLevelWidget() );
setXMLFile("plugins/exchangeui.rc");
new TDEAction(i18n("&Download..."), 0, this, TQT_SLOT(download()),
actionCollection(), "exchange_download");
TDEAction *action = new TDEAction(i18n("&Upload Event..."), 0, this, TQT_SLOT(upload()),
actionCollection(), "exchange_upload");
TQObject::connect(mainWindow()->view(),TQT_SIGNAL(incidenceSelected(Incidence *)),
this, TQT_SLOT(slotIncidenceSelected(Incidence *)));
action->setEnabled( false );
TQObject::connect(this,TQT_SIGNAL(enableIncidenceActions(bool)),
action,TQT_SLOT(setEnabled(bool)));
action = new TDEAction(i18n("De&lete Event"), 0, this, TQT_SLOT(remove()),
actionCollection(), "exchange_delete");
TQObject::connect(this,TQT_SIGNAL(enableIncidenceActions(bool)),
action,TQT_SLOT(setEnabled(bool)));
action->setEnabled( false );
new TDEAction(i18n("&Configure..."), 0, this, TQT_SLOT(configure()),
actionCollection(), "exchange_configure");
connect( this, TQT_SIGNAL( calendarChanged() ), mainWindow()->view(), TQT_SLOT( updateView() ) );
connect( this, TQT_SIGNAL( calendarChanged(const TQDate &, const TQDate &)),
mainWindow()->view(), TQT_SLOT(updateView(const TQDate &, const TQDate &)) );
}
Exchange::~Exchange()
{
kdDebug(5850) << "Exchange Plugin destructor" << endl;
}
TQString Exchange::info()
{
return i18n("This plugin imports and export calendar events from/to a Microsoft Exchange 2000 Server.");
}
TQString Exchange::shortInfo()
{
return i18n("Exchange Plugin");
}
void Exchange::slotIncidenceSelected( Incidence *incidence )
{
emit enableIncidenceActions( incidence != 0 );
}
void Exchange::download()
{
ExchangeDialog dialog( mainWindow()->view()->startDate(), mainWindow()->view()->endDate() );
if (dialog.exec() != TQDialog::Accepted )
return;
TQDate start = dialog.m_start->date();
TQDate end = dialog.m_end->date();
KCal::Calendar* calendar = mainWindow()->view()->calendar();
int result = mClient->downloadSynchronous(calendar, start, end, true );
if ( result == KPIM::ExchangeClient::ResultOK )
emit calendarChanged();
else
showError( result, mClient->detailedErrorString() );
}
void Exchange::upload()
{
kdDebug(5850) << "Called Exchange::upload()" << endl;
Event* event = dynamic_cast<Event *> ( mainWindow()->view()->currentSelection() );
if ( ! event )
{
KMessageBox::information( 0L, i18n("Please select an appointment."), i18n("Exchange Plugin") );
return;
}
if ( KMessageBox::warningContinueCancel( 0L, i18n("Exchange Upload is EXPERIMENTAL, you may lose data on this appointment!"), i18n("Exchange Plugin"), i18n("&Upload") )
== KMessageBox::Continue ) {
kdDebug(5850) << "Trying to add appointment " << event->summary() << endl;
int result = mClient->uploadSynchronous( event );
if ( result != KPIM::ExchangeClient::ResultOK )
showError( result, mClient->detailedErrorString() );
}
}
void Exchange::remove()
{
kdDebug(5850) << "Called Exchange::remove()" << endl;
Event* event = dynamic_cast<Event *> ( mainWindow()->view()->currentSelection() );
if ( ! event )
{
KMessageBox::information( 0L, i18n("Please select an appointment."), i18n("Exchange Plugin") );
return;
}
if ( KMessageBox::warningContinueCancel( 0L, i18n("Exchange Delete is EXPERIMENTAL, if this is a recurring event it will delete all instances!"), i18n("Exchange Plugin"), KGuiItem(i18n("&Delete"),"editdelete") )
== KMessageBox::Continue ) {
kdDebug(5850) << "Trying to delete appointment " << event->summary() << endl;
int result = mClient->removeSynchronous( event );
if ( result == KPIM::ExchangeClient::ResultOK ) {
mainWindow()->view()->calendar()->deleteEvent( event );
emit calendarChanged();
} else
showError( result, mClient->detailedErrorString() );
}
}
void Exchange::configure()
{
kdDebug(5850) << "Exchange::configure" << endl;
ExchangeConfig dialog( mAccount );
if (dialog.exec() == TQDialog::Accepted )
mAccount->save( "Calendar/Exchange Plugin" );
}
void Exchange::showError( int error, const TQString& moreInfo /* = TQString() */ )
{
TQString errorText;
switch( error ) {
case KPIM::ExchangeClient::ResultOK:
errorText = i18n( "No Error" );
break;
case KPIM::ExchangeClient::CommunicationError:
errorText = i18n( "The Exchange server could not be reached or returned an error." );
break;
case KPIM::ExchangeClient::ServerResponseError:
errorText = i18n( "Server response could not be interpreted." );
break;
case KPIM::ExchangeClient::IllegalAppointmentError:
errorText = i18n( "Appointment data could not be interpreted." );
break;
case KPIM::ExchangeClient::NonEventError:
errorText = i18n( "This should not happen: trying to upload wrong type of event." );
break;
case KPIM::ExchangeClient::EventWriteError:
errorText = i18n( "An error occurred trying to write an appointment to the server." );
break;
case KPIM::ExchangeClient::DeleteUnknownEventError:
errorText = i18n( "Trying to delete an event that is not present on the server." );
break;
case KPIM::ExchangeClient::UnknownError:
default:
errorText = i18n( "Unknown Error" );
}
if ( error != KPIM::ExchangeClient::ResultOK ) {
if ( moreInfo.isNull() )
KMessageBox::error( mainWindow()->topLevelWidget(), errorText, i18n( "Exchange Plugin" ) );
else
KMessageBox::detailedError( mainWindow()->topLevelWidget(), errorText, moreInfo, i18n( "Exchange Plugin" ) );
}
}
void Exchange::test()
{
kdDebug(5850) << "Entering test()" << endl;
mClient->test();
}
void Exchange::test2()
{
kdDebug(5850) << "Entering test2()" << endl;
}
#include "exchange.moc"