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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
<?php
/**
* The SyncML_Device_Synthesis:: class provides functionality that is
* specific to the Synthesis.ch SyncML clients.
*
* Copyright 2005-2009 The Horde Project (http://www.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/Synthesis.php,v 1.2.2.13 2009/01/06 15:23:39 jan Exp $
*
* @author Karsten Fourmont <karsten@horde.org>
* @package SyncML
*/
class SyncML_Device_Synthesis 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 content type of content as returned
* from the backend
* @param string $database The server database URI.
*
* @return array Three-element array with the converted content, the
* (possibly changed) new content type, and encoding type
* (like b64 as used by Funambol).
*/
function convertServer2Client($content, $contentType, $database)
{
list($content, $contentType, $encodingType) =
parent::convertServer2Client($content, $contentType, $database);
$di = $_SESSION['SyncML.state']->deviceInfo;
if (stristr($di->Mod,'palm') === false) {
// Some special priority handling is required. Synthesis uses
// 1 (high), 2 (medium), 3(low), at least for my windows mobile device.
// convert these to valid priority settings:
$content = preg_replace('/(\r\n|\r|\n)PRIORITY:[1-2](\r\n|\r|\n)/', '\1PRIORITY:1\2', $content, 1);
$content = preg_replace('/(\r\n|\r|\n)PRIORITY:[3](\r\n|\r|\n)/', '\1PRIORITY:2\2', $content, 1);
$content = preg_replace('/(\r\n|\r|\n)PRIORITY:[4-9](\r\n|\r|\n)/', '\1PRIORITY:3\2', $content, 1);
}
// Windows Mobile also expects DUE DATES like DUE:20060419T000000
if (preg_match('/(\r\n|\r|\n)DUE:(........T......Z)(\r\n|\r|\n)/',
$content,$m)) {
$m[2] = $this->UTC2LocalDate($m[2]);
$content = preg_replace('/(\r\n|\r|\n)DUE:(........T......Z)(\r\n|\r|\n)/',
'\1DUE:' . $m[2] . '\3', $content, 1);
}
$l = "\noutput converted for client ($contentType):\n" . $content . "\n";
$GLOBALS['backend']->logFile(SYNCML_LOGFILE_DATA, $l);
return array($content, $contentType, $encodingType);
}
/**
* Convert the content.
*
* @param string $content The content to convert.
* @param string $contentType The contentType of the content.
* @return array array($newcontent, $newcontentType):
* the converted content and the
* (possibly changed) new ContentType.
*/
function convertClient2Server($content, $contentType)
{
list($content, $contentType) =
parent::convertClient2Server($content, $contentType);
$di = $_SESSION['SyncML.state']->deviceInfo;
if (stristr($di->Mod, 'palm') === false) {
// Some special priority handling is required. Synthesis uses 1
// (high), 2 (medium), 3(low), at least for my windows mobile
// device. convert these to valid priority settings:
$content = preg_replace('/(\r\n|\r|\n)PRIORITY:3(\r\n|\r|\n)/',
'\1PRIORITY:5\2', $content, 1);
$content = preg_replace('/(\r\n|\r|\n)PRIORITY:2(\r\n|\r|\n)/',
'\1PRIORITY:3\2', $content, 1);
}
$GLOBALS['backend']->logFile(
SYNCML_LOGFILE_DATA,
"\ninput converted for server ($contentType):\n$content\n");
return array($content, $contentType);
}
/* Static helper function: converts a UTC Timestamp like 20060418T220000Z
* into a local date like 20060419T000000. This is actually more than
* stripping the time part: we need to convert to local time first to ensure
* we get the right date!
*/
function UTC2LocalDate($s)
{
$t = Horde_iCalendar::_parseDateTime($s);
return date('Ymd', $t) . 'T000000';
}
}
|