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/kresources/lib/webdavhandler.cpp

195 lines
5.7 KiB

/*
This file is part of kdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
Copyright (c) 2004 Till Adam <adam@kde.org>
Copyright (c) 2005 Reinhold Kainhofer <reinhold@kainhofer.com>
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 <kdebug.h>
#include <tqdatetime.h>
extern "C" {
#include <libical/ical.h>
}
#include "webdavhandler.h"
WebdavHandler::WebdavHandler()
{
}
KURL WebdavHandler::toDAV( const KURL& url )
{
KURL result( url );
if ( result.protocol() == "http" ) {
if ( result.port() == 443 ) {
// OpenGroupware.org returns 'http://server:443' instead of 'https://server'
result.setProtocol( "webdavs" );
result.setPort( 0 );
} else
result.setProtocol( "webdav" );
} else if ( result.protocol() == "https" )
result.setProtocol( "webdavs" );
return result;
}
TQDomElement WebdavHandler::addElement( TQDomDocument &doc, TQDomNode &node,
const TQString &tag, const TQString &value )
{
TQDomElement el = doc.createElement( tag );
node.appendChild( el );
if ( !value.isNull() ) {
TQDomText txt = doc.createTextNode( value );
el.appendChild( txt );
}
return el;
}
TQDomElement WebdavHandler::addElementNS( TQDomDocument &doc, TQDomNode &node,
const TQString &ns, const TQString &tag, const TQString &value )
{
TQDomElement el = doc.createElementNS( ns, tag );
node.appendChild( el );
if ( !value.isNull() ) {
TQDomText txt = doc.createTextNode( value );
el.appendChild( txt );
}
return el;
}
TQDomElement WebdavHandler::addDavElement( TQDomDocument &doc, TQDomNode &node,
const TQString &tag, const TQString &value )
{
return addElementNS( doc, node, "DAV:", tag, value );
}
bool WebdavHandler::extractBool( const TQDomElement &node, const TQString &entry, bool &value )
{
TQDomElement element = node.namedItem( entry ).toElement();
if ( !element.isNull() ) {
value = (element.text() != "0");
return true;
}
return false;
}
bool WebdavHandler::extractLong( const TQDomElement &node, const TQString &entry, long &value )
{
TQDomElement element = node.namedItem( entry ).toElement();
if ( !element.isNull() ) {
value = element.text().toLong();
return true;
}
return false;
}
bool WebdavHandler::extractFloat( const TQDomElement &node, const TQString &entry, float &value )
{
TQDomElement element = node.namedItem( entry ).toElement();
if ( !element.isNull() ) {
value = element.text().toFloat();
return true;
}
return false;
}
bool WebdavHandler::extractDateTime( const TQDomElement &node, const TQString &entry, TQDateTime &value )
{
TQDomElement element = node.namedItem( entry ).toElement();
if ( !element.isNull() && !element.text().isEmpty() ) {
value = TQDateTime::fromString( element.text(), Qt::ISODate );
return true;
}
return false;
}
bool WebdavHandler::extractString( const TQDomElement &node, const TQString &entry, TQString &value )
{
TQDomElement element = node.namedItem( entry ).toElement();
if ( !element.isNull() ) {
value = element.text();
return true;
}
return false;
}
bool WebdavHandler::extractStringList( const TQDomElement &node, const TQString &entry, TQStringList &value )
{
TQDomElement element = node.namedItem( entry ).toElement();
if ( !element.isNull() ) {
value.clear();
TQDomNodeList list = element.elementsByTagNameNS( "xml:", "v" );
for( uint i=0; i < list.count(); i++ ) {
TQDomElement item = list.item(i).toElement();
value.append( item.text() );
}
return true;
}
return false;
}
const TQString WebdavHandler::getEtagFromHeaders( const TQString& headers )
{
int start = headers.find( "etag:", 0, false );
if ( start < 0 ) return TQString();
start += 6;
return headers.mid( start, headers.find( "\n", start ) - start );
}
//TODO: should not call libical functions directly -- better to make
// a new libkcal abstraction method.
TQDateTime WebdavHandler::utcAsZone( const TQDateTime& utc, const TQString& timeZoneId )
{
int daylight;
TQDateTime epoch;
epoch.setTime_t( 0 );
time_t v = epoch.secsTo( utc );
struct icaltimetype tt =
icaltime_from_timet_with_zone( v, 0 /*is_date*/,
icaltimezone_get_builtin_timezone( "UTC" ) );
int offset = icaltimezone_get_utc_offset(
icaltimezone_get_builtin_timezone( timeZoneId.latin1() ),
&tt, &daylight );
kdDebug() << "Calculated offset of: " << offset << " of timezone: " << timeZoneId << endl;
return utc.addSecs( offset );
}
//TODO: should not call libical functions directly -- better to make
// a new libkcal abstraction method.
TQDateTime WebdavHandler::zoneAsUtc( const TQDateTime& zone, const TQString& timeZoneId )
{
int daylight;
TQDateTime epoch;
epoch.setTime_t( 0 );
time_t v = epoch.secsTo( zone );
struct icaltimetype tt = icaltime_from_timet( v, 0 ); // 0: is_date=false
int offset = icaltimezone_get_utc_offset(
icaltimezone_get_builtin_timezone( timeZoneId.latin1() ),
&tt, &daylight );
return zone.addSecs( - offset );
}