1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<?php
/**
* The SyncML_Device_Nokia:: class provides functionality that is
* specific to the Nokia SyncML clients.
*
* Copyright 2005-2006 Karsten Fourmont <karsten@horde.org>
*
* See the enclosed file COPYING for license information (LGPL). If you did not
* receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* $Horde: framework/SyncML/SyncML/Device/Nokia.php,v 1.2.2.3 2006/05/01 12:05:14 jan Exp $
*
* @author Karsten Fourmont <karsten@horde.org>
* @package SyncML
*/
class SyncML_Device_Nokia extends SyncML_Device {
/**
* Converts the content from the backend to a format suitable for the
* client device.
*
* Strips the uid (primary key) information as client and server might use
* different ones.
*
* @param string $content The content to convert
* @param string $contentType The contentType of content as returned from
* the backend
* @return array array($newcontent, $newcontentType):
* the converted content and the
* (possibly changed) new ContentType.
*/
function convertServer2Client($content, $contentType)
{
global $backend;
list($content, $contentType) =
parent::convertServer2Client($content, $contentType);
// FIXME: just swapping out the version number in the header
// so that the client doesn't immediately deny with a "Format
// not supported". See http://bugs.horde.org/ticket/?id=1881.
$content = preg_replace('/(\r\n|\r|\n)VERSION:2.0/', '\1VERSION:1.0', $content, 1);
if (DEBUGLOG_ICALENDARDATA) {
$fp = @fopen('/tmp/sync/log.txt', 'a');
if ($fp) {
@fwrite($fp, "\noutput converted for client ($contentType):\n");
@fwrite($fp, $content . "\n");
@fclose($fp);
}
}
return array($content, $contentType);
}
/* Nokia currently expects notes as text/plain. Maybe we can extract
* this from DevInf rather than hardcode it.
*/
function getPreferredContentType($type)
{
if ($type == 'notes') {
return 'text/plain';
}
return parent::getPreferredContentType($type);
}
function handleTasksInCalendar()
{
return true;
}
}
|