diff options
Diffstat (limited to 'kresources/groupwise/soap/gwconverter.cpp')
-rw-r--r-- | kresources/groupwise/soap/gwconverter.cpp | 171 |
1 files changed, 171 insertions, 0 deletions
diff --git a/kresources/groupwise/soap/gwconverter.cpp b/kresources/groupwise/soap/gwconverter.cpp new file mode 100644 index 000000000..e005974e6 --- /dev/null +++ b/kresources/groupwise/soap/gwconverter.cpp @@ -0,0 +1,171 @@ +/* + This file is part of kdepim. + Copyright (c) 2004 Tobias Koenig <tokoe@kde.org> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "gwconverter.h" + +#include <libkdepim/kpimprefs.h> + +#include <kdebug.h> + +GWConverter::GWConverter( struct soap* soap ) + : mSoap( soap ) +{ + Q_ASSERT( mSoap ); +} + +struct soap* GWConverter::soap() const +{ + return mSoap; +} + +std::string* GWConverter::qStringToString( const QString &string ) +{ + std::string *str = soap_new_std__string( mSoap, -1 ); + str->append( string.utf8() ); + + return str; +} + +QString GWConverter::stringToQString( const std::string &str ) +{ + return QString::fromUtf8( str.c_str() ); +} + +QString GWConverter::stringToQString( std::string *str ) +{ + if ( !str ) return QString::null; + return QString::fromUtf8( str->c_str() ); +} + +char* GWConverter::qStringToChar( const QString &string ) +{ + QCString str = string.utf8(); + + char* charStr = (char*)soap_malloc( mSoap, str.length() + 1 ); + memcpy( charStr, str, str.length() ); + charStr[ str.length() ] = 0; + + return charStr; +} + +QDate GWConverter::charToQDate( const char *str ) +{ + if ( !str ) return QDate(); // FIXME: Qt::ISODate is probably no good here because it expects yyyy-MM-dd not yyyyMMdd + return QDate::fromString( QString::fromUtf8( str ), Qt::ISODate ); +} + +char *GWConverter::qDateTimeToChar( const QDateTime &dt, + const QString &timezone ) +{ + return qDateTimeToChar( KPimPrefs::localTimeToUtc( dt, timezone ) ); +} + +char *GWConverter::qDateTimeToChar( const QDateTime &dt ) +{ + return qStringToChar( dt.toString( "yyyyMMddThhmmZ" ) ); +} + +std::string* GWConverter::qDateTimeToString( const QDateTime &dt, const QString &timezone ) +{ + return qDateTimeToString( KPimPrefs::localTimeToUtc( dt, timezone ) ); +} + +std::string* GWConverter::qDateTimeToString( const QDateTime &dt ) +{ + return qStringToString( dt.toString( "yyyyMMddThhmmZ" ) ); +} + +QDateTime GWConverter::stringToQDateTime( const std::string* str ) +{ + QDateTime dt = QDateTime::fromString( QString::fromUtf8( str->c_str() ), Qt::ISODate ); + return dt; +} + +char* GWConverter::qDateToChar( const QDate &date ) +{ + return qStringToChar( date.toString( "yyyyMMdd" ) ); +} + +std::string* GWConverter::qDateToString( const QDate &date ) +{ + return qStringToString( date.toString( "yyyyMMdd" ) ); +} + +QDate GWConverter::stringToQDate( std::string* str ) +{ + //NB this ISODate may become unnecessary, if GW stops sending in yyyy-mm-dd format again + return QDate::fromString( QString::fromLatin1( str->c_str() ), Qt::ISODate ); +} + +QDateTime GWConverter::charToQDateTime( const char *str ) +{ + if ( !str ) return QDateTime(); +// kdDebug() << "charToQDateTime(): " << str << endl; + // as above re Qt::ISODate + QDateTime dt = QDateTime::fromString( QString::fromUtf8( str ), Qt::ISODate ); +// kdDebug() << " " << dt.toString() << endl; + return dt; +} + +QDateTime GWConverter::charToQDateTime( const char *str, + const QString &timezone ) +{ + if ( !str ) return QDateTime(); + QDateTime utc = charToQDateTime( str ); + return KPimPrefs::utcToLocalTime( utc, timezone ); +} + +bool GWConverter::emailsMatch( const QString & email1, const QString & email2 ) +{ + // eg demo3.po1.dom1@dmz1.provo.novell.com == demo3@dmz1.provo.novell.com + if ( email1 == email2 ) + return true; + + QString shorter, longer; + if ( email1.length() < email2.length() ) + { + shorter = email1; + longer = email2; + } + else + { + shorter = email2; + longer = email1; + } + + QString shortStem = shorter.section( '@', 0, 0 ); + QString longStem = longer.section( '@', 0, 0 ); + QString shortHost = shorter.section( '@', 1, 1 ); + QString longHost = longer.section( '@', 1, 1 ); + + QString extension = longStem.right( longStem.length() - shortStem.length() ); + + kdDebug() << "gwconverter::emailsMatch(): " << shorter << " = " << longer << endl; + kdDebug() << "shortStem: " << shortStem << ", longStem: " << longStem << ", extension: " << extension << endl; + + if ( longStem.startsWith( shortStem ) && extension.startsWith( "." ) && ( + shortHost == longHost ) ) + { + kdDebug() << "Looks like a match!" << endl; + return true; + } + return false; +} + |