2005-07-20 14:14:39 +02:00
|
|
|
<?php
|
2006-07-09 01:02:30 +02:00
|
|
|
/**
|
|
|
|
* Addressbook - vCard / iCal parser
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Lars Kneschke <lkneschke@egroupware.org>
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @package addressbook
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once EGW_SERVER_ROOT.'/addressbook/inc/class.bocontacts.inc.php';
|
|
|
|
require_once EGW_SERVER_ROOT.'/phpgwapi/inc/horde/Horde/iCalendar.php';
|
|
|
|
|
|
|
|
class vcaladdressbook extends bocontacts
|
|
|
|
{
|
2007-07-04 21:13:00 +02:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
/**
|
|
|
|
* import a vard into addressbook
|
|
|
|
*
|
|
|
|
* @param string $_vcard the vcard
|
2006-07-10 01:35:16 +02:00
|
|
|
* @param int/string $_abID=null the internal addressbook id or !$_abID for a new enty
|
2006-07-09 01:02:30 +02:00
|
|
|
* @return int contact id
|
|
|
|
*/
|
|
|
|
function addVCard($_vcard, $_abID)
|
2005-07-20 14:14:39 +02:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
if(!$contact = $this->vcardtoegw($_vcard)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-10 01:35:16 +02:00
|
|
|
if($_abID) {
|
2006-07-09 01:02:30 +02:00
|
|
|
// update entry
|
2006-07-09 15:29:19 +02:00
|
|
|
$contact['id'] = $_abID;
|
2005-07-20 14:14:39 +02:00
|
|
|
}
|
2006-07-10 00:59:22 +02:00
|
|
|
return $this->save($contact);
|
2006-07-09 01:02:30 +02:00
|
|
|
}
|
2005-07-20 14:14:39 +02:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
/**
|
|
|
|
* return a vcard
|
|
|
|
*
|
|
|
|
* @param int/string $_id the id of the contact
|
|
|
|
* @param int $_vcardProfile profile id for mapping from vcard values to egw addressbook
|
|
|
|
* @return string containing the vcard
|
|
|
|
*/
|
|
|
|
function getVCard($_id)
|
|
|
|
{
|
|
|
|
require_once(EGW_SERVER_ROOT.'/phpgwapi/inc/horde/Horde/iCalendar/vcard.php');
|
2005-07-20 14:14:39 +02:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
$vCard =& new Horde_iCalendar_vcard;
|
2005-07-28 05:44:13 +02:00
|
|
|
|
2006-07-09 15:29:19 +02:00
|
|
|
if(!is_array($this->supportedFields)) {
|
2006-07-09 01:02:30 +02:00
|
|
|
$this->setSupportedFields();
|
|
|
|
}
|
|
|
|
$sysCharSet = $GLOBALS['egw']->translation->charset();
|
2005-07-28 05:44:13 +02:00
|
|
|
|
2006-07-09 15:29:19 +02:00
|
|
|
if(!($entry = $this->read($_id))) {
|
2006-07-09 01:02:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
|
|
|
|
$this->fixup_contact($entry);
|
2007-01-23 18:34:24 +01:00
|
|
|
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
foreach($this->supportedFields as $vcardField => $databaseFields)
|
|
|
|
{
|
|
|
|
$values = array();
|
2006-07-09 01:02:30 +02:00
|
|
|
$options = array();
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$hasdata = 0;
|
|
|
|
foreach($databaseFields as $databaseField)
|
|
|
|
{
|
|
|
|
$value = "";
|
|
|
|
|
|
|
|
if (!empty($databaseField))
|
|
|
|
{
|
|
|
|
$value = trim($entry[$databaseField]);
|
2006-05-17 05:36:48 +02:00
|
|
|
}
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
|
|
|
|
switch($databaseField)
|
|
|
|
{
|
|
|
|
case 'private':
|
|
|
|
$value = $value ? 'PRIVATE' : 'PUBLIC';
|
|
|
|
$hasdata++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'bday':
|
|
|
|
if (!empty($value))
|
|
|
|
{
|
|
|
|
$value = str_replace('-','',$value).'T000000Z';
|
|
|
|
$hasdata++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'jpegphoto':
|
|
|
|
if(!empty($value))
|
|
|
|
{
|
|
|
|
error_log("PHOTO='".$value."'");
|
|
|
|
$hasdata++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'cat_id':
|
|
|
|
if (!empty($value))
|
|
|
|
{
|
|
|
|
$value = implode(",", $this->get_categories($value));
|
|
|
|
}
|
|
|
|
// fall-through to the normal processing of string values
|
|
|
|
default:
|
|
|
|
if(!empty($value))
|
|
|
|
{
|
|
|
|
$value = $GLOBALS['egw']->translation->convert(trim($value), $sysCharSet, 'utf-8');
|
|
|
|
$options['CHARSET'] = 'UTF-8';
|
|
|
|
|
|
|
|
if(preg_match('/([\000-\012\015\016\020-\037\075])/',$value))
|
|
|
|
{
|
|
|
|
$options['ENCODING'] = 'QUOTED-PRINTABLE';
|
|
|
|
}
|
|
|
|
|
|
|
|
$hasdata++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($value))
|
|
|
|
{
|
|
|
|
$value = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
$values[] = $value;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
|
|
|
|
if ($hasdata <= 0)
|
|
|
|
{
|
|
|
|
// don't add the entry if there is no data for this field
|
|
|
|
continue;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
|
|
|
|
$vCard->setAttribute($vcardField, implode(';', $values));
|
2006-07-09 01:02:30 +02:00
|
|
|
$vCard->setParameter($vcardField, $options);
|
|
|
|
}
|
2007-07-04 21:13:00 +02:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
$result = $vCard->exportvCalendar();
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
return $result;
|
|
|
|
}
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
function search($_vcard)
|
|
|
|
{
|
2006-07-09 15:29:19 +02:00
|
|
|
if(!($contact = $this->vcardtoegw($_vcard))) {
|
2006-07-09 01:02:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-09 15:29:19 +02:00
|
|
|
unset($contact['private']);
|
|
|
|
unset($contact['note']);
|
|
|
|
unset($contact['n_fn']);
|
2007-01-23 18:34:24 +01:00
|
|
|
unset($contact['email']);
|
|
|
|
unset($contact['email_home']);
|
|
|
|
unset($contact['url']);
|
|
|
|
unset($contact['url_home']);
|
|
|
|
|
|
|
|
// some clients cut the values, because they do not support the same length of data like eGW
|
|
|
|
// at least the first 10 characters must match
|
|
|
|
$maybeCuttedFields = array('org_unit', 'org_name','title');
|
|
|
|
foreach($maybeCuttedFields as $fieldName) {
|
|
|
|
if(!empty($contact[$fieldName]) && strlen($contact[$fieldName]) > 10) {
|
|
|
|
$contact[$fieldName] .= '*';
|
|
|
|
}
|
|
|
|
}
|
2006-07-09 15:29:19 +02:00
|
|
|
|
2007-03-01 21:17:51 +01:00
|
|
|
//error_log(print_r($contact, true));
|
2007-01-23 18:34:24 +01:00
|
|
|
|
|
|
|
#if($foundContacts = parent::search($contact, true, '', '', '%')) {
|
2006-07-09 15:29:19 +02:00
|
|
|
if($foundContacts = parent::search($contact)) {
|
2006-07-09 01:02:30 +02:00
|
|
|
return $foundContacts[0]['id'];
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
function setSupportedFields($_productManufacturer='file', $_productName='')
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* ToDo Lars:
|
|
|
|
* + changes / renamed fields in 1.3+:
|
|
|
|
* - access --> private (already done by Ralf)
|
|
|
|
* - tel_msg --> tel_assistent
|
|
|
|
* - tel_modem --> tel_fax_home
|
|
|
|
* - tel_isdn --> tel_cell_private
|
|
|
|
* - tel_voice/ophone --> tel_other
|
|
|
|
* - address2 --> adr_one_street2
|
|
|
|
* - address3 --> adr_two_street2
|
|
|
|
* - freebusy_url --> freebusy_uri (i instead l !)
|
|
|
|
* - fn --> n_fn
|
|
|
|
* - last_mod --> modified
|
|
|
|
* + new fields in 1.3+:
|
|
|
|
* - n_fileas
|
|
|
|
* - role
|
|
|
|
* - assistent
|
|
|
|
* - room
|
|
|
|
* - calendar_uri
|
|
|
|
* - url_home
|
|
|
|
* - created
|
|
|
|
* - creator (preset with owner)
|
|
|
|
* - modifier
|
|
|
|
* - jpegphoto
|
|
|
|
*/
|
|
|
|
$defaultFields[0] = array(
|
|
|
|
'ADR' => array('','','adr_one_street','adr_one_locality','adr_one_region',
|
|
|
|
'adr_one_postalcode','adr_one_countryname'),
|
|
|
|
'CATEGORIES' => array('cat_id'),
|
|
|
|
'CLASS' => array('private'),
|
|
|
|
'EMAIL' => array('email'),
|
|
|
|
'N' => array('n_family','n_given','','',''),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'FN' => array('n_fn'),
|
2006-07-09 01:02:30 +02:00
|
|
|
'NOTE' => array('note'),
|
|
|
|
'ORG' => array('org_name',''),
|
|
|
|
'TEL;CELL' => array('tel_cell'),
|
|
|
|
'TEL;FAX' => array('tel_fax'),
|
|
|
|
'TEL;HOME' => array('tel_home'),
|
|
|
|
'TEL;WORK' => array('tel_work'),
|
|
|
|
'TITLE' => array('title'),
|
|
|
|
);
|
|
|
|
|
|
|
|
$defaultFields[1] = array(
|
|
|
|
'ADR;WORK' => array('','','adr_one_street','adr_one_locality','adr_one_region',
|
|
|
|
'adr_one_postalcode','adr_one_countryname'),
|
|
|
|
'ADR;HOME' => array('','','adr_two_street','adr_two_locality','adr_two_region',
|
|
|
|
'adr_two_postalcode','adr_two_countryname'),
|
|
|
|
'BDAY' => array('bday'),
|
|
|
|
'CATEGORIES' => array('cat_id'),
|
|
|
|
'EMAIL;INTERNET;WORK' => array('email'),
|
|
|
|
'EMAIL;INTERNET;HOME' => array('email_home'),
|
|
|
|
'N' => array('n_family','n_given','n_middle','n_prefix','n_suffix'),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'FN' => array('n_fn'),
|
2006-07-09 01:02:30 +02:00
|
|
|
'NOTE' => array('note'),
|
|
|
|
'ORG' => array('org_name','org_unit'),
|
|
|
|
'TEL;CELL;WORK' => array('tel_cell'),
|
|
|
|
'TEL;FAX;WORK' => array('tel_fax'),
|
|
|
|
'TEL;HOME' => array('tel_home'),
|
|
|
|
'TEL;PAGER;WORK' => array('tel_pager'),
|
|
|
|
'TEL;WORK' => array('tel_work'),
|
|
|
|
'TITLE' => array('title'),
|
|
|
|
'URL;WORK' => array('url'),
|
2006-07-09 15:29:19 +02:00
|
|
|
'ROLE' => array('role'),
|
2006-07-09 01:02:30 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$defaultFields[2] = array(
|
|
|
|
'ADR;HOME' => array('','','adr_one_street','adr_one_locality','adr_one_region',
|
|
|
|
'adr_one_postalcode','adr_one_countryname'),
|
|
|
|
'BDAY' => array('bday'),
|
|
|
|
'CATEGORIES' => array('cat_id'),
|
|
|
|
'CLASS' => array('private'),
|
|
|
|
'EMAIL' => array('email'),
|
|
|
|
'N' => array('n_family','n_given','','',''),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'FN' => array('n_fn'),
|
2006-07-09 01:02:30 +02:00
|
|
|
'NOTE' => array('note'),
|
|
|
|
'ORG' => array('org_name',''),
|
|
|
|
'TEL;CELL;WORK' => array('tel_cell'),
|
|
|
|
'TEL;FAX;WORK' => array('tel_fax'),
|
|
|
|
'TEL;HOME' => array('tel_home'),
|
|
|
|
'TEL;WORK' => array('tel_work'),
|
|
|
|
'TITLE' => array('title'),
|
2006-07-09 15:29:19 +02:00
|
|
|
'URL;WORK' => array('url'),
|
2006-07-09 01:02:30 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$defaultFields[3] = array(
|
|
|
|
'ADR;WORK' => array('','','adr_one_street','adr_one_locality','adr_one_region',
|
|
|
|
'adr_one_postalcode','adr_one_countryname'),
|
|
|
|
'ADR;HOME' => array('','','adr_two_street','adr_two_locality','adr_two_region',
|
|
|
|
'adr_two_postalcode','adr_two_countryname'),
|
|
|
|
'BDAY' => array('bday'),
|
|
|
|
'EMAIL;INTERNET;WORK' => array('email'),
|
|
|
|
'EMAIL;INTERNET;HOME' => array('email_home'),
|
|
|
|
'N' => array('n_family','n_given','','',''),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'FN' => array('n_fn'),
|
2006-07-09 01:02:30 +02:00
|
|
|
'NOTE' => array('note'),
|
|
|
|
'ORG' => array('org_name','org_unit'),
|
|
|
|
'TEL;CELL;WORK' => array('tel_cell'),
|
|
|
|
'TEL;FAX;WORK' => array('tel_fax'),
|
|
|
|
'TEL;HOME' => array('tel_home'),
|
|
|
|
'TEL;PAGER;WORK' => array('tel_pager'),
|
|
|
|
'TEL;WORK' => array('tel_work'),
|
|
|
|
'TITLE' => array('title'),
|
|
|
|
'URL;WORK' => array('url'),
|
|
|
|
);
|
|
|
|
|
2006-07-23 20:10:37 +02:00
|
|
|
$defaultFields[4] = array(
|
|
|
|
'ADR;WORK' => array('','','adr_one_street','adr_one_locality','adr_one_region',
|
|
|
|
'adr_one_postalcode','adr_one_countryname'),
|
|
|
|
'ADR;HOME' => array('','','adr_two_street','adr_two_locality','adr_two_region',
|
|
|
|
'adr_two_postalcode','adr_two_countryname'),
|
|
|
|
'BDAY' => array('bday'),
|
|
|
|
'EMAIL;INTERNET;WORK' => array('email'),
|
|
|
|
'EMAIL;INTERNET;HOME' => array('email_home'),
|
|
|
|
'N' => array('n_family','n_given','','',''),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'FN' => array('n_fn'),
|
2006-07-23 20:10:37 +02:00
|
|
|
'NOTE' => array('note'),
|
|
|
|
'ORG' => array('org_name',''),
|
|
|
|
'TEL;CELL;WORK' => array('tel_cell'),
|
|
|
|
'TEL;CELL;HOME' => array('tel_cell_private'),
|
|
|
|
'TEL;FAX;WORK' => array('tel_fax'),
|
|
|
|
'TEL;FAX;HOME' => array('tel_fax_home'),
|
|
|
|
'TEL;HOME' => array('tel_home'),
|
|
|
|
'TEL;PAGER;WORK' => array('tel_pager'),
|
|
|
|
'TEL;WORK' => array('tel_work'),
|
|
|
|
'TITLE' => array('title'),
|
|
|
|
'URL;WORK' => array('url'),
|
2006-08-15 14:46:26 +02:00
|
|
|
'URL;HOME' => array('url_home'),
|
2006-07-23 20:10:37 +02:00
|
|
|
);
|
|
|
|
|
2006-08-15 14:46:26 +02:00
|
|
|
$defaultFields[5] = array(
|
|
|
|
'ADR;WORK' => array('','','adr_one_street','adr_one_locality','adr_one_region',
|
|
|
|
'adr_one_postalcode','adr_one_countryname'),
|
|
|
|
'ADR;HOME' => array('','','adr_two_street','adr_two_locality','adr_two_region',
|
|
|
|
'adr_two_postalcode','adr_two_countryname'),
|
|
|
|
'BDAY' => array('bday'),
|
|
|
|
'EMAIL;INTERNET;WORK' => array('email'),
|
|
|
|
'EMAIL;INTERNET;HOME' => array('email_home'),
|
|
|
|
'N' => array('n_family','n_given','','n_prefix','n_suffix'),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'FN' => array('n_fn'),
|
2006-08-15 14:46:26 +02:00
|
|
|
'NOTE' => array('note'),
|
|
|
|
'ORG' => array('org_name',''),
|
|
|
|
'TEL;CELL;WORK' => array('tel_cell'),
|
|
|
|
'TEL;CELL;HOME' => array('tel_cell_private'),
|
|
|
|
'TEL;FAX;WORK' => array('tel_fax'),
|
|
|
|
'TEL;FAX;HOME' => array('tel_fax_home'),
|
|
|
|
'TEL;HOME' => array('tel_home'),
|
|
|
|
'TEL;PAGER;WORK' => array('tel_pager'),
|
|
|
|
'TEL;WORK' => array('tel_work'),
|
|
|
|
'TITLE' => array('title'),
|
|
|
|
'URL;WORK' => array('url'),
|
|
|
|
'URL;HOME' => array('url_home'),
|
|
|
|
);
|
2007-06-25 01:53:10 +02:00
|
|
|
|
|
|
|
$defaultFields[6] = array(
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'ADR;WORK' => array('','','adr_one_street','adr_one_locality','adr_one_region',
|
|
|
|
'adr_one_postalcode','adr_one_countryname'),
|
|
|
|
'ADR;HOME' => array('','','adr_two_street','adr_two_locality','adr_two_region',
|
|
|
|
'adr_two_postalcode','adr_two_countryname'),
|
|
|
|
'EMAIL' => array('email'),
|
|
|
|
'EMAIL;HOME' => array('email_home'),
|
|
|
|
'N' => array('n_family','n_given','','',''),
|
|
|
|
'FN' => array('n_fn'),
|
|
|
|
'NOTE' => array('note'),
|
|
|
|
'ORG' => array('org_name','org_unit'),
|
|
|
|
'TEL;CELL' => array('tel_cell'),
|
|
|
|
'TEL;HOME;FAX' => array('tel_fax'),
|
2007-06-25 01:53:10 +02:00
|
|
|
'TEL;HOME;VOICE' => array('tel_home'),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'TEL;PAGER' => array('tel_pager'),
|
2007-06-25 01:53:10 +02:00
|
|
|
'TEL;WORK;VOICE' => array('tel_work'),
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
'TITLE' => array('title'),
|
|
|
|
'URL;WORK' => array('url'),
|
|
|
|
'URL' => array('url_home'),
|
2007-06-25 01:53:10 +02:00
|
|
|
);
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
|
2006-08-15 14:46:26 +02:00
|
|
|
//error_log("Client: $_productManufacturer $_productName");
|
2006-07-09 01:02:30 +02:00
|
|
|
switch(strtolower($_productManufacturer))
|
|
|
|
{
|
2007-06-25 01:53:10 +02:00
|
|
|
case 'funambol':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
switch (strtolower($_productName))
|
2007-06-25 01:53:10 +02:00
|
|
|
{
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
case 'thunderbird':
|
|
|
|
$this->supportedFields = $defaultFields[6];
|
|
|
|
break;
|
|
|
|
|
2007-06-25 01:53:10 +02:00
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
error_log("Funambol product '$_productName', assuming same as thunderbird");
|
2007-06-25 01:53:10 +02:00
|
|
|
$this->supportedFields = $defaultFields[6];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'nexthaus corporation':
|
|
|
|
switch(strtolower($_productName))
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'syncje outlook edition':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$this->supportedFields = $defaultFields[1];
|
|
|
|
break;
|
2006-07-09 01:02:30 +02:00
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
error_log("Nethaus product '$_productName', assuming same as 'syncje outlook'");
|
2006-07-09 01:02:30 +02:00
|
|
|
$this->supportedFields = $defaultFields[1];
|
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
|
|
|
|
2006-07-23 20:10:37 +02:00
|
|
|
case 'nokia':
|
|
|
|
switch(strtolower($_productName))
|
|
|
|
{
|
2006-08-15 14:46:26 +02:00
|
|
|
case 'e61':
|
|
|
|
$this->supportedFields = $defaultFields[5];
|
|
|
|
break;
|
2006-07-23 20:10:37 +02:00
|
|
|
case '6600':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$this->supportedFields = $defaultFields[4];
|
|
|
|
break;
|
2006-07-23 20:10:37 +02:00
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
error_log("Unknown Nokia phone '$_productName', assuming same as '6600'");
|
2006-07-23 20:10:37 +02:00
|
|
|
$this->supportedFields = $defaultFields[4];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
// multisync does not provide anymore information then the manufacturer
|
|
|
|
// we suppose multisync with evolution
|
|
|
|
case 'the multisync project':
|
|
|
|
switch(strtolower($_productName))
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
default:
|
|
|
|
$this->supportedFields = $defaultFields[0];
|
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'siemens':
|
|
|
|
switch(strtolower($_productName))
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'sx1':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$this->supportedFields = $defaultFields[3];
|
|
|
|
break;
|
2006-07-09 01:02:30 +02:00
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
error_log("Unknown Siemens phone '$_productName', assuming same as 'sx1'");
|
2006-07-09 01:02:30 +02:00
|
|
|
$this->supportedFields = $defaultFields[3];
|
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'sonyericsson':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
case 'sony ericsson':
|
2006-07-09 01:02:30 +02:00
|
|
|
switch(strtolower($_productName))
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'd750i':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$this->supportedFields = $defaultFields[2];
|
|
|
|
break;
|
|
|
|
case 'p910i':
|
2006-07-09 01:02:30 +02:00
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
error_log("unknown Sony Ericsson phone '$_productName', assuming same as 'd750i'");
|
2006-07-09 01:02:30 +02:00
|
|
|
$this->supportedFields = $defaultFields[2];
|
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'synthesis ag':
|
|
|
|
switch(strtolower($_productName))
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2007-01-23 18:34:24 +01:00
|
|
|
case 'sysync client pocketpc pro':
|
|
|
|
$this->supportedFields = $defaultFields[1];
|
|
|
|
#$this->supportedFields['PHOTO'] = array('jpegphoto');
|
|
|
|
break;
|
2006-07-09 01:02:30 +02:00
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
error_log("Synthesis connector '$_productName', using default fields");
|
2006-07-09 01:02:30 +02:00
|
|
|
$this->supportedFields = $defaultFields[0];
|
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'file': // used outside of SyncML, eg. by the calendar itself ==> all possible fields
|
|
|
|
$this->supportedFields = $defaultFields[1];
|
|
|
|
break;
|
|
|
|
|
|
|
|
// the fallback for SyncML
|
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
error_log("Client not found: '$_productManufacturer' '$_productName'");
|
2006-07-09 01:02:30 +02:00
|
|
|
$this->supportedFields = $defaultFields[0];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function vcardtoegw($_vcard)
|
|
|
|
{
|
2006-08-15 14:46:26 +02:00
|
|
|
// the horde class does the charset conversion. DO NOT CONVERT HERE.
|
2006-07-09 01:02:30 +02:00
|
|
|
|
2006-08-15 14:46:26 +02:00
|
|
|
if(!is_array($this->supportedFields)) {
|
2006-07-09 01:02:30 +02:00
|
|
|
$this->setSupportedFields();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->supportedFields[0] = array(
|
|
|
|
);
|
|
|
|
|
|
|
|
require_once(EGW_SERVER_ROOT.'/phpgwapi/inc/horde/Horde/iCalendar.php');
|
|
|
|
|
|
|
|
$vCard = Horde_iCalendar::newComponent('vcard', $container);
|
2007-01-23 18:34:24 +01:00
|
|
|
|
|
|
|
// Unfold any folded lines.
|
|
|
|
$vCardUnfolded = preg_replace ('/(\r|\n)+ /', ' ', $_vcard);
|
2006-07-09 01:02:30 +02:00
|
|
|
|
2007-01-23 18:34:24 +01:00
|
|
|
if(!$vCard->parsevCalendar($vCardUnfolded, 'VCARD')) {
|
2006-07-09 01:02:30 +02:00
|
|
|
return False;
|
|
|
|
}
|
|
|
|
$vcardValues = $vCard->getAllAttributes();
|
|
|
|
|
|
|
|
#print "<pre>$_vcard</pre>";
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-23 20:10:37 +02:00
|
|
|
#error_log(print_r($vcardValues, true));
|
2006-07-09 01:02:30 +02:00
|
|
|
|
|
|
|
foreach($vcardValues as $key => $vcardRow)
|
|
|
|
{
|
|
|
|
$rowName = $vcardRow['name'];
|
|
|
|
|
|
|
|
if(isset($vcardRow['params']['INTERNET']))
|
|
|
|
{
|
|
|
|
$rowName .= ";INTERNET";
|
|
|
|
}
|
|
|
|
if(isset($vcardRow['params']['CELL']))
|
|
|
|
{
|
|
|
|
$rowName .= ';CELL';
|
|
|
|
}
|
|
|
|
if(isset($vcardRow['params']['FAX']))
|
|
|
|
{
|
|
|
|
$rowName .= ';FAX';
|
|
|
|
}
|
|
|
|
if(isset($vcardRow['params']['PAGER']))
|
|
|
|
{
|
|
|
|
$rowName .= ';PAGER';
|
|
|
|
}
|
|
|
|
if(isset($vcardRow['params']['WORK']))
|
|
|
|
{
|
|
|
|
$rowName .= ';WORK';
|
|
|
|
}
|
|
|
|
if(isset($vcardRow['params']['HOME']))
|
|
|
|
{
|
|
|
|
$rowName .= ';HOME';
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
$rowNames[$rowName] = $key;
|
|
|
|
}
|
|
|
|
|
2006-07-09 15:29:19 +02:00
|
|
|
#error_log(print_r($rowNames, true));
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
// now we have all rowNames the vcard provides
|
|
|
|
// we just need to map to the right addressbook fieldnames
|
|
|
|
// we need also to take care about ADR for example. we do not
|
|
|
|
// support this. We support only ADR;WORK or ADR;HOME
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
foreach($rowNames as $rowName => $vcardKey)
|
|
|
|
{
|
|
|
|
switch($rowName)
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'ADR':
|
|
|
|
case 'TEL':
|
2006-07-09 15:29:19 +02:00
|
|
|
case 'URL':
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'TEL;FAX':
|
|
|
|
case 'TEL;CELL':
|
|
|
|
case 'TEL;PAGER':
|
|
|
|
if(!isset($rowNames[$rowName. ';WORK']))
|
|
|
|
{
|
|
|
|
$finalRowNames[$rowName. ';WORK'] = $vcardKey;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'EMAIL':
|
|
|
|
case 'EMAIL;WORK':
|
2006-07-09 15:29:19 +02:00
|
|
|
case 'EMAIL;INTERNET':
|
2006-07-09 01:02:30 +02:00
|
|
|
if(!isset($rowNames['EMAIL;INTERNET;WORK']))
|
|
|
|
{
|
|
|
|
$finalRowNames['EMAIL;INTERNET;WORK'] = $vcardKey;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'EMAIL;HOME':
|
|
|
|
if(!isset($rowNames['EMAIL;INTERNET;HOME']))
|
|
|
|
{
|
|
|
|
$finalRowNames['EMAIL;INTERNET;HOME'] = $vcardKey;
|
|
|
|
}
|
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'VERSION':
|
|
|
|
break;
|
2006-07-09 15:29:19 +02:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
default:
|
|
|
|
$finalRowNames[$rowName] = $vcardKey;
|
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
2006-07-09 01:02:30 +02:00
|
|
|
}
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 15:29:19 +02:00
|
|
|
#error_log(print_r($finalRowNames, true));
|
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
$contact = array();
|
2006-03-21 14:19:38 +01:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
foreach($finalRowNames as $key => $vcardKey)
|
|
|
|
{
|
|
|
|
if(isset($this->supportedFields[$key]))
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
$fieldNames = $this->supportedFields[$key];
|
|
|
|
foreach($fieldNames as $fieldKey => $fieldName)
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 01:02:30 +02:00
|
|
|
if(!empty($fieldName))
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$value = trim($vcardValues[$vcardKey]['values'][$fieldKey]);
|
2006-07-09 01:02:30 +02:00
|
|
|
switch($fieldName)
|
2006-03-21 14:19:38 +01:00
|
|
|
{
|
2006-07-09 15:29:19 +02:00
|
|
|
case 'bday':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
if(!empty($value)) {
|
|
|
|
$contact[$fieldName] = date('Y-m-d', $value);
|
2007-01-23 18:34:24 +01:00
|
|
|
}
|
2006-07-09 15:29:19 +02:00
|
|
|
break;
|
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'private':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
(int)$contact[$fieldName] = $value == 'PRIVATE';
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
2006-07-09 15:29:19 +02:00
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
case 'cat_id':
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$contact[$fieldName] = implode(",",$this->find_or_add_categories(explode(',',$value)));
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
|
2007-07-04 21:13:00 +02:00
|
|
|
case 'note':
|
|
|
|
// note may contain ','s but maybe this needs to be fixed in vcard parser...
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
//$contact[$fieldName] = trim($vcardValues[$vcardKey]['value']);
|
|
|
|
//break;
|
|
|
|
|
2006-07-09 01:02:30 +02:00
|
|
|
default:
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$contact[$fieldName] = $value;
|
2006-07-09 01:02:30 +02:00
|
|
|
break;
|
2006-03-21 14:19:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-08-15 14:46:26 +02:00
|
|
|
|
SyncML patches from patrick.bihan-faou-AT-mindstep.com (without
logout+mbstring stuff), small modification to use the already exiting
methodes to generate full name and fileas)
The code is commited to trunk only at the moment to allow testing of it.
If everything goes well, we intend to commit it to 1.4 branch too.
Here's the original description of the patch by Patrick:
- handles the default config for current versions of funambol (i.e. the
scard/stask/snote/scal locations)
- tries to be a bit smarter on how the data content should be encoded
based on what the client specified (sif+base64/vcard, / fragmented or
not, etc.)
- workaround a bug in some versions of funambol, where funambol does not
specify the proper sif type for the type of requested data
- imported patch #117 from egw's tracker
- make sure that the logs generated by the horde code go to stderr so
they can be view in the webserver's logs
- as much as possible reduce code duplication. For example, the
categories are handled in the parent classes for both the SIF avn VCAL
formats for each type of data (addressbook,infolog,calendar).
- make sure the code can handle more than one categories in each
direction
- treat the 'sony ericsson' vendor string just like 'sonyericsson', the
newer phones apparently have a space in the vendor string... (this
touches some files in the icalsrv as well)
- handle notes: these should now work with everything (funambol or
other)
- remove more code duplication: the syncml "api" for the various data
types (calendar, contacts, infolog) is now common for both the vcard and
sif data formats (cf the files that need to be removed)
- handle the "privat" filter in infolog like the "private" filter (some
part of the code use the name without the trailing e)
- imported patch # 267 from egw's tracker
2007-09-29 12:29:48 +02:00
|
|
|
$this->fixup_contact($contact);
|
2006-07-09 01:02:30 +02:00
|
|
|
return $contact;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exports some contacts: download or write to a file
|
|
|
|
*
|
|
|
|
* @param array $ids contact-ids
|
|
|
|
* @param string $file filename or null for download
|
|
|
|
*/
|
|
|
|
function export($ids,$file=null)
|
|
|
|
{
|
|
|
|
if (!$file)
|
|
|
|
{
|
|
|
|
$browser =& CreateObject('phpgwapi.browser');
|
|
|
|
$browser->content_header('addressbook.vcf','text/x-vcard');
|
|
|
|
}
|
|
|
|
if (!($fp = fopen($file ? $file : 'php://output','w')))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
foreach($ids as $id)
|
|
|
|
{
|
|
|
|
fwrite($fp,$this->getVCard($id));
|
|
|
|
}
|
|
|
|
fclose($fp);
|
|
|
|
|
|
|
|
if (!$file)
|
|
|
|
{
|
|
|
|
$GLOBALS['egw']->common->egw_exit();
|
|
|
|
}
|
|
|
|
return true;
|
2005-07-20 14:14:39 +02:00
|
|
|
}
|
2006-07-09 01:02:30 +02:00
|
|
|
}
|