Commit d372d450 authored by Manfred Kutas's avatar Manfred Kutas

ZP-649 Fix ResolveRecipients for Zarafa to work with FreeBusy.

Released under the Affero GNU General Public License (AGPL) version 3.

ZP-649 remove x flag from the file
parent 0dbd04af
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* Created : 01.10.2011 * Created : 01.10.2011
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -920,24 +920,37 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -920,24 +920,37 @@ class BackendZarafa implements IBackend, ISearchProvider {
public function ResolveRecipients($resolveRecipients) { public function ResolveRecipients($resolveRecipients) {
if ($resolveRecipients instanceof SyncResolveRecipients) { if ($resolveRecipients instanceof SyncResolveRecipients) {
$resolveRecipients->status = SYNC_RESOLVERECIPSSTATUS_SUCCESS; $resolveRecipients->status = SYNC_RESOLVERECIPSSTATUS_SUCCESS;
$resolveRecipients->recipient = array(); $resolveRecipients->response = array();
// TODO handle free busy requests
foreach ($resolveRecipients->to as $i => $to) { foreach ($resolveRecipients->to as $i => $to) {
$response = new SyncResolveRecipientsResponse();
$response->to = $to;
$response->status = SYNC_RESOLVERECIPSSTATUS_SUCCESS;
$recipient = $this->resolveRecipient($to); $recipient = $this->resolveRecipient($to);
if ($recipient instanceof SyncResolveRecipient) { if (is_array($recipient) && !empty($recipient)) {
$resolveRecipients->recipient[$i] = $recipient; $response->recipientcount = 0;
} foreach ($recipient as $entry) {
elseif (is_int($recipient)) { if ($entry instanceof SyncResolveRecipient) {
$resolveRecipients->status = $recipient; $response->recipientcount++;
$response->recipient[] = $entry;
}
elseif (is_int($recipient)) {
$response->status = $recipient;
}
}
} }
$resolveRecipients->response[$i] = $response;
} }
return $resolveRecipients; return $resolveRecipients;
} }
ZLog::Write(LOGLEVEL_WARN, "Not a valid SyncResolveRecipients object."); ZLog::Write(LOGLEVEL_WARN, "Not a valid SyncResolveRecipients object.");
// return a SyncResolveRecipients object so that sync doesn't fail // return a SyncResolveRecipients object so that sync doesn't fail
$r = new SyncResolveRecipients(); $r = new SyncResolveRecipients();
$r->status = SYNC_RESOLVERECIPSSTATUS_PROTOCOLERROR; $r->status = SYNC_RESOLVERECIPSSTATUS_PROTOCOLERROR;
$r->recipient = array();
return $r; return $r;
} }
...@@ -1652,19 +1665,17 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1652,19 +1665,17 @@ class BackendZarafa implements IBackend, ISearchProvider {
* Resolves recipient from the GAL and gets his certificates. * Resolves recipient from the GAL and gets his certificates.
* *
* @param string $to * @param string $to
* @return SyncResolveRecipient|boolean * @return array|boolean
*/ */
private function resolveRecipientGAL($to) { private function resolveRecipientGAL($to) {
ZLog::Write(LOGLEVEL_WBXML, sprintf("Resolving recipient '%s' in GAL", $to));
$addrbook = $this->getAddressbook(); $addrbook = $this->getAddressbook();
$ab_entryid = mapi_ab_getdefaultdir($addrbook); $ab_entryid = mapi_ab_getdefaultdir($addrbook);
if ($ab_entryid) if ($ab_entryid)
$ab_dir = mapi_ab_openentry($addrbook, $ab_entryid); $ab_dir = mapi_ab_openentry($addrbook, $ab_entryid);
if ($ab_dir) if ($ab_dir)
$table = mapi_folder_getcontentstable($ab_dir); $table = mapi_folder_getcontentstable($ab_dir);
// if (!$table)
// throw new StatusException(sprintf("ZarafaBackend->resolveRecipient(): could not open addressbook: 0x%X", mapi_last_hresult()), SYNC_RESOLVERECIPSSTATUS_RESPONSE_UNRESOLVEDRECIP);
if (!$table) { if (!$table) {
ZLog::Write(LOGLEVEL_WARN, sprintf("Unable to open addressbook:0x%X", mapi_last_hresult())); ZLog::Write(LOGLEVEL_WARN, sprintf("Unable to open addressbook:0x%X", mapi_last_hresult()));
return false; return false;
...@@ -1675,6 +1686,8 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1675,6 +1686,8 @@ class BackendZarafa implements IBackend, ISearchProvider {
$querycnt = mapi_table_getrowcount($table); $querycnt = mapi_table_getrowcount($table);
if ($querycnt > 0) { if ($querycnt > 0) {
$recipientGal = array();
// TODO multiple recipients possible if $to is a group or list
$abentries = mapi_table_queryrows($table, array(PR_DISPLAY_NAME, PR_EMS_AB_TAGGED_X509_CERT), 0, 1); $abentries = mapi_table_queryrows($table, array(PR_DISPLAY_NAME, PR_EMS_AB_TAGGED_X509_CERT), 0, 1);
$certificates = $certificates =
// check if there are any certificates available // check if there are any certificates available
...@@ -1685,8 +1698,9 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1685,8 +1698,9 @@ class BackendZarafa implements IBackend, ISearchProvider {
ZLog::Write(LOGLEVEL_INFO, sprintf("No certificates found for '%s'", $to)); ZLog::Write(LOGLEVEL_INFO, sprintf("No certificates found for '%s'", $to));
$certificates = $this->getCertificates(false); $certificates = $this->getCertificates(false);
} }
$recipient = $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_GAL, w2u($abentries[0][PR_DISPLAY_NAME]), $to, $certificates); $recipientGal[] = $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_GAL, w2u($abentries[0][PR_DISPLAY_NAME]), $to, $certificates);
return $recipient; ZLog::Write(LOGLEVEL_WBXML, "Found a recipient in GAL");
return $recipientGal;
} }
else { else {
ZLog::Write(LOGLEVEL_WARN, sprintf("No recipient found for: '%s'", $to)); ZLog::Write(LOGLEVEL_WARN, sprintf("No recipient found for: '%s'", $to));
...@@ -1700,9 +1714,10 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1700,9 +1714,10 @@ class BackendZarafa implements IBackend, ISearchProvider {
* *
* @param string $to * @param string $to
* *
* @return SyncResolveRecipient|boolean * @return array|boolean
*/ */
private function resolveRecipientContact($to) { private function resolveRecipientContact($to) {
ZLog::Write(LOGLEVEL_WBXML, sprintf("Resolving recipient '%s' in user's contacts", $to));
// go through all contact folders of the user and // go through all contact folders of the user and
// check if there's a contact with the given email address // check if there's a contact with the given email address
$root = mapi_msgstore_openentry($this->defaultstore); $root = mapi_msgstore_openentry($this->defaultstore);
...@@ -1714,6 +1729,7 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1714,6 +1729,7 @@ class BackendZarafa implements IBackend, ISearchProvider {
$recipients = array(); $recipients = array();
if ($contacts !== false) { if ($contacts !== false) {
ZLog::Write(LOGLEVEL_WBXML, "Found contacts");
// create resolve recipient object // create resolve recipient object
foreach ($contacts as $contact) { foreach ($contacts as $contact) {
$certificates = $certificates =
...@@ -1722,24 +1738,30 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1722,24 +1738,30 @@ class BackendZarafa implements IBackend, ISearchProvider {
$this->getCertificates($contact[PR_USER_X509_CERTIFICATE], 1) : false; $this->getCertificates($contact[PR_USER_X509_CERTIFICATE], 1) : false;
if ($certificates !== false) { if ($certificates !== false) {
return $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, u2w($contact[PR_DISPLAY_NAME]), $to, $certificates); $recipients[] = $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, u2w($contact[PR_DISPLAY_NAME]), $to, $certificates);
ZLog::Write(LOGLEVEL_WBXML, "Found a recipient in main contacts folder");
return $recipients;
} }
} }
} }
$contactfolder = mapi_msgstore_openentry($this->defaultstore, $rootprops[PR_IPM_CONTACT_ENTRYID]); $contactfolder = mapi_msgstore_openentry($this->defaultstore, $rootprops[PR_IPM_CONTACT_ENTRYID]);
$subfolders = MAPIUtils::GetSubfoldersForType($contactfolder, "IPF.Contact"); $subfolders = MAPIUtils::GetSubfoldersForType($contactfolder, "IPF.Contact");
foreach($subfolders as $folder) { if ($subfolders !== false) {
$contacts = $this->getContactsFromFolder($this->defaultstore, $folder[PR_ENTRYID], $to); foreach($subfolders as $folder) {
if ($contacts !== false) { $contacts = $this->getContactsFromFolder($this->defaultstore, $folder[PR_ENTRYID], $to);
foreach ($contacts as $contact) { if ($contacts !== false) {
$certificates = foreach ($contacts as $contact) {
// check if there are any certificates available $certificates =
(isset($contact[PR_USER_X509_CERTIFICATE]) && is_array($contact[PR_USER_X509_CERTIFICATE]) && count($contact[PR_USER_X509_CERTIFICATE])) ? // check if there are any certificates available
$this->getCertificates($contact[PR_USER_X509_CERTIFICATE], 1) : false; (isset($contact[PR_USER_X509_CERTIFICATE]) && is_array($contact[PR_USER_X509_CERTIFICATE]) && count($contact[PR_USER_X509_CERTIFICATE])) ?
$this->getCertificates($contact[PR_USER_X509_CERTIFICATE], 1) : false;
if ($certificates !== false) {
return $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, u2w($contact[PR_DISPLAY_NAME]), $to, $certificates); if ($certificates !== false) {
$recipients[] = $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, u2w($contact[PR_DISPLAY_NAME]), $to, $certificates);
ZLog::Write(LOGLEVEL_WBXML, "Found a recipient in a contacts subfolder");
return $recipients;
}
} }
} }
} }
...@@ -1769,7 +1791,9 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1769,7 +1791,9 @@ class BackendZarafa implements IBackend, ISearchProvider {
$this->getCertificates($contact[PR_USER_X509_CERTIFICATE], 1) : false; $this->getCertificates($contact[PR_USER_X509_CERTIFICATE], 1) : false;
if ($certificates !== false) { if ($certificates !== false) {
return $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, u2w($contact[PR_DISPLAY_NAME]), $to, $certificates); $recipients[] = $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, u2w($contact[PR_DISPLAY_NAME]), $to, $certificates);
ZLog::Write(LOGLEVEL_WBXML, "Found a recipient in a public folder");
return $recipients;
} }
} }
} }
...@@ -1784,19 +1808,20 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1784,19 +1808,20 @@ class BackendZarafa implements IBackend, ISearchProvider {
} }
$certificates = $this->getCertificates(false); $certificates = $this->getCertificates(false);
return $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, $to, $to, $certificates); $recipients[] = $this->createResolveRecipient(SYNC_RESOLVERECIPIENTS_TYPE_CONTACT, $to, $to, $certificates);
return $recipients;
} }
/** /**
* Creates SyncRRCertificates object for ResolveRecipients * Creates SyncResolveRecipientsCertificates object for ResolveRecipients
* *
* @param binary $certificates * @param binary $certificates
* @param int $recipientCount * @param int $recipientCount
* *
* @return SyncRRCertificates * @return SyncResolveRecipientsCertificates
*/ */
private function getCertificates($certificates, $recipientCount = 0) { private function getCertificates($certificates, $recipientCount = 0) {
$cert = new SyncRRCertificates(); $cert = new SyncResolveRecipientsCertificates();
if ($certificates === false) { if ($certificates === false) {
$cert->status = SYNC_RESOLVERECIPSSTATUS_CERTIFICATES_NOVALIDCERT; $cert->status = SYNC_RESOLVERECIPSSTATUS_CERTIFICATES_NOVALIDCERT;
return $cert; return $cert;
...@@ -1829,7 +1854,7 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1829,7 +1854,7 @@ class BackendZarafa implements IBackend, ISearchProvider {
if ($recipient->certificates === false) { if ($recipient->certificates === false) {
// the recipient does not have a valid certificate, set the appropriate status // the recipient does not have a valid certificate, set the appropriate status
ZLog::Write(LOGLEVEL_INFO, sprintf("No certificates found for '%s'", $email)); ZLog::Write(LOGLEVEL_INFO, sprintf("No certificates found for '%s'", $email));
$cert = new SyncRRCertificates(); $cert = new SyncResolveRecipientsCertificates();
$cert->status = SYNC_RESOLVERECIPSSTATUS_CERTIFICATES_NOVALIDCERT; $cert->status = SYNC_RESOLVERECIPSSTATUS_CERTIFICATES_NOVALIDCERT;
$recipient->certificates = $cert; $recipient->certificates = $cert;
} }
...@@ -1851,7 +1876,7 @@ class BackendZarafa implements IBackend, ISearchProvider { ...@@ -1851,7 +1876,7 @@ class BackendZarafa implements IBackend, ISearchProvider {
mapi_table_restrict($folderContent, MAPIUtils::GetEmailAddressRestriction($store, $email)); mapi_table_restrict($folderContent, MAPIUtils::GetEmailAddressRestriction($store, $email));
// TODO max limit // TODO max limit
if (mapi_table_getrowcount($folderContent) > 0) { if (mapi_table_getrowcount($folderContent) > 0) {
return mapi_table_queryallrows($folderContent, array(PR_DISPLAY_NAME, PR_USER_X509_CERTIFICATE)); return mapi_table_queryallrows($folderContent, array(PR_DISPLAY_NAME, PR_USER_X509_CERTIFICATE, PR_ENTRYID));
} }
return false; return false;
} }
......
...@@ -118,6 +118,7 @@ include_once('lib/syncobjects/syncsendmailsource.php'); ...@@ -118,6 +118,7 @@ include_once('lib/syncobjects/syncsendmailsource.php');
include_once('lib/syncobjects/syncvalidatecert.php'); include_once('lib/syncobjects/syncvalidatecert.php');
include_once('lib/syncobjects/syncresolverecipients.php'); include_once('lib/syncobjects/syncresolverecipients.php');
include_once('lib/syncobjects/syncresolverecipient.php'); include_once('lib/syncobjects/syncresolverecipient.php');
include_once('lib/syncobjects/syncresolverecipientsresponse.php');
include_once('lib/syncobjects/syncresolverecipientsoptions.php'); include_once('lib/syncobjects/syncresolverecipientsoptions.php');
include_once('lib/syncobjects/syncresolverecipientsavailability.php'); include_once('lib/syncobjects/syncresolverecipientsavailability.php');
include_once('lib/syncobjects/syncresolverecipientscertificates.php'); include_once('lib/syncobjects/syncresolverecipientscertificates.php');
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* *
* Created : 01.10.2007 * Created : 01.10.2007
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -199,7 +199,6 @@ abstract class Backend implements IBackend { ...@@ -199,7 +199,6 @@ abstract class Backend implements IBackend {
public function ResolveRecipients($resolveRecipients) { public function ResolveRecipients($resolveRecipients) {
$r = new SyncResolveRecipients(); $r = new SyncResolveRecipients();
$r->status = SYNC_RESOLVERECIPSSTATUS_PROTOCOLERROR; $r->status = SYNC_RESOLVERECIPSSTATUS_PROTOCOLERROR;
$r->recipient = array();
return $r; return $r;
} }
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Created : 15.10.2012 * Created : 15.10.2012
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2013, 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -64,7 +64,6 @@ class ResolveRecipients extends RequestProcessor { ...@@ -64,7 +64,6 @@ class ResolveRecipients extends RequestProcessor {
$resolveRecipients = self::$backend->ResolveRecipients($resolveRecipients); $resolveRecipients = self::$backend->ResolveRecipients($resolveRecipients);
self::$encoder->startWBXML(); self::$encoder->startWBXML();
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RESOLVERECIPIENTS); self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RESOLVERECIPIENTS);
...@@ -72,32 +71,34 @@ class ResolveRecipients extends RequestProcessor { ...@@ -72,32 +71,34 @@ class ResolveRecipients extends RequestProcessor {
self::$encoder->content($resolveRecipients->status); self::$encoder->content($resolveRecipients->status);
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_STATUS self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_STATUS
if ($resolveRecipients->status == SYNC_COMMONSTATUS_SUCCESS && !empty($resolveRecipients->response)) {
foreach ($resolveRecipients->response as $i => $response) {
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RESPONSE);
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_TO);
self::$encoder->content($response->to);
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_TO
foreach ($resolveRecipients->to as $i => $to) { self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_STATUS);
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RESPONSE); self::$encoder->content($response->status);
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_TO); self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_STATUS
self::$encoder->content($to);
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_TO
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_STATUS);
self::$encoder->content($resolveRecipients->status);
self::$encoder->endTag();
// do only if recipient is resolved
if ($resolveRecipients->status != SYNC_RESOLVERECIPSSTATUS_RESPONSE_UNRESOLVEDRECIP) {
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RECIPIENTCOUNT);
self::$encoder->content(count($resolveRecipients->recipient));
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RECIPIENTCOUNT
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RECIPIENT); // do only if recipient is resolved
$resolveRecipients->recipient[$i]->Encode(self::$encoder); if ($response->status != SYNC_RESOLVERECIPSSTATUS_RESPONSE_UNRESOLVEDRECIP && !empty($response->recipient)) {
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RECIPIENT self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RECIPIENTCOUNT);
} self::$encoder->content(count($response->recipient));
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RECIPIENTCOUNT
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RESPONSE foreach ($response->recipient as $recipient) {
self::$encoder->startTag(SYNC_RESOLVERECIPIENTS_RECIPIENT);
$recipient->Encode(self::$encoder);
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RECIPIENT
}
}
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RESPONSE
}
} }
self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RESOLVERECIPIENTS self::$encoder->endTag(); // SYNC_RESOLVERECIPIENTS_RESOLVERECIPIENTS
return true; return true;
} }
} }
\ No newline at end of file
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* Created : 28.10.2012 * Created : 28.10.2012
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2013, 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -51,7 +51,7 @@ class SyncResolveRecipient extends SyncObject { ...@@ -51,7 +51,7 @@ class SyncResolveRecipient extends SyncObject {
public $emailaddress; public $emailaddress;
public $availability; public $availability;
public $certificates; public $certificates;
public $pictures; public $picture;
public function SyncResolveRecipient() { public function SyncResolveRecipient() {
$mapping = array ( $mapping = array (
...@@ -60,14 +60,13 @@ class SyncResolveRecipient extends SyncObject { ...@@ -60,14 +60,13 @@ class SyncResolveRecipient extends SyncObject {
SYNC_RESOLVERECIPIENTS_EMAILADDRESS => array ( self::STREAMER_VAR => "emailaddress"), SYNC_RESOLVERECIPIENTS_EMAILADDRESS => array ( self::STREAMER_VAR => "emailaddress"),
SYNC_RESOLVERECIPIENTS_AVAILABILITY => array ( self::STREAMER_VAR => "availability", SYNC_RESOLVERECIPIENTS_AVAILABILITY => array ( self::STREAMER_VAR => "availability",
self::STREAMER_TYPE => "SyncRRAvailability"), self::STREAMER_TYPE => "SyncResolveRecipientsAvailability"),
SYNC_RESOLVERECIPIENTS_CERTIFICATES => array ( self::STREAMER_VAR => "certificates", SYNC_RESOLVERECIPIENTS_CERTIFICATES => array ( self::STREAMER_VAR => "certificates",
self::STREAMER_TYPE => "SyncRRCertificates"), self::STREAMER_TYPE => "SyncResolveRecipientsCertificates"),
SYNC_RESOLVERECIPIENTS_PICTURE => array ( self::STREAMER_VAR => "pictures", SYNC_RESOLVERECIPIENTS_PICTURE => array ( self::STREAMER_VAR => "picture",
self::STREAMER_TYPE => "SyncRRPicture", self::STREAMER_TYPE => "SyncResolveRecipientsPicture"),
self::STREAMER_ARRAY => SYNC_RESOLVERECIPIENTS_PICTURE),
); );
parent::SyncObject($mapping); parent::SyncObject($mapping);
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* Created : 28.10.2012 * Created : 28.10.2012
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2013, 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -49,8 +49,7 @@ class SyncResolveRecipients extends SyncObject { ...@@ -49,8 +49,7 @@ class SyncResolveRecipients extends SyncObject {
public $to = array(); public $to = array();
public $options; public $options;
public $status; public $status;
public $recipientCount; public $response;
public $recipient;
public function SyncResolveRecipients() { public function SyncResolveRecipients() {
$mapping = array ( $mapping = array (
...@@ -59,13 +58,13 @@ class SyncResolveRecipients extends SyncObject { ...@@ -59,13 +58,13 @@ class SyncResolveRecipients extends SyncObject {
self::STREAMER_PROP => self::STREAMER_TYPE_NO_CONTAINER), self::STREAMER_PROP => self::STREAMER_TYPE_NO_CONTAINER),
SYNC_RESOLVERECIPIENTS_OPTIONS => array ( self::STREAMER_VAR => "options", SYNC_RESOLVERECIPIENTS_OPTIONS => array ( self::STREAMER_VAR => "options",
self::STREAMER_TYPE => "SyncRROptions"), self::STREAMER_TYPE => "SyncResolveRecipientsOptions"),
SYNC_RESOLVERECIPIENTS_STATUS => array ( self::STREAMER_VAR => "status"), SYNC_RESOLVERECIPIENTS_STATUS => array ( self::STREAMER_VAR => "status"),
SYNC_RESOLVERECIPIENTS_RECIPIENTCOUNT => array ( self::STREAMER_VAR => "recipientcount"),
SYNC_RESOLVERECIPIENTS_RECIPIENT => array ( self::STREAMER_VAR => "recipient", SYNC_RESOLVERECIPIENTS_RESPONSE => array ( self::STREAMER_VAR => "response",
self::STREAMER_TYPE => "SyncResolveRecipient"), self::STREAMER_TYPE => "SyncResolveRecipientsResponse",
self::STREAMER_ARRAY => SYNC_RESOLVERECIPIENTS_RESPONSE),
); );
parent::SyncObject($mapping); parent::SyncObject($mapping);
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* Created : 28.12.2012 * Created : 28.12.2012
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2013, 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -45,13 +45,13 @@ ...@@ -45,13 +45,13 @@
* Consult LICENSE file for details * Consult LICENSE file for details
************************************************/ ************************************************/
class SyncRRAvailability extends SyncObject { class SyncResolveRecipientsAvailability extends SyncObject {
public $starttime; public $starttime;
public $endtime; public $endtime;
public $status; public $status;
public $mergedfreebusy; public $mergedfreebusy;
public function SyncRRAvailability() { public function SyncResolveRecipientsAvailability() {
$mapping = array ( $mapping = array (
SYNC_RESOLVERECIPIENTS_STARTTIME => array ( self::STREAMER_VAR => "starttime"), SYNC_RESOLVERECIPIENTS_STARTTIME => array ( self::STREAMER_VAR => "starttime"),
SYNC_RESOLVERECIPIENTS_ENDTIME => array ( self::STREAMER_VAR => "endtime"), SYNC_RESOLVERECIPIENTS_ENDTIME => array ( self::STREAMER_VAR => "endtime"),
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* Created : 28.10.2012 * Created : 28.10.2012
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2013, 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -45,14 +45,14 @@ ...@@ -45,14 +45,14 @@
* Consult LICENSE file for details * Consult LICENSE file for details
************************************************/ ************************************************/
class SyncRRCertificates extends SyncObject { class SyncResolveRecipientsCertificates extends SyncObject {
public $status; public $status;
public $certificatecount; public $certificatecount;
public $recipientcount; public $recipientcount;
public $certificate; public $certificate;
public $minicertificate; public $minicertificate;
public function SyncRRCertificates() { public function SyncResolveRecipientsCertificates() {
$mapping = array ( $mapping = array (
SYNC_RESOLVERECIPIENTS_STATUS => array ( self::STREAMER_VAR => "status"), SYNC_RESOLVERECIPIENTS_STATUS => array ( self::STREAMER_VAR => "status"),
SYNC_RESOLVERECIPIENTS_CERTIFICATECOUNT => array ( self::STREAMER_VAR => "certificatecount"), SYNC_RESOLVERECIPIENTS_CERTIFICATECOUNT => array ( self::STREAMER_VAR => "certificatecount"),
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* Created : 28.10.2012 * Created : 28.10.2012
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2013, 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -45,24 +45,24 @@ ...@@ -45,24 +45,24 @@
* Consult LICENSE file for details * Consult LICENSE file for details
************************************************/ ************************************************/
class SyncRROptions extends SyncObject { class SyncResolveRecipientsOptions extends SyncObject {
public $certificateretrieval; public $certificateretrieval;
public $maxcertificates; public $maxcertificates;
public $maxambiguousrecipients; public $maxambiguousrecipients;
public $availability; public $availability;
public $picture; public $picture;
public function SyncRROptions() { public function SyncResolveRecipientsOptions() {
$mapping = array ( $mapping = array (
SYNC_RESOLVERECIPIENTS_CERTIFICATERETRIEVAL => array ( self::STREAMER_VAR => "certificateretrieval"), SYNC_RESOLVERECIPIENTS_CERTIFICATERETRIEVAL => array ( self::STREAMER_VAR => "certificateretrieval"),
SYNC_RESOLVERECIPIENTS_MAXCERTIFICATES => array ( self::STREAMER_VAR => "maxcertificates"), SYNC_RESOLVERECIPIENTS_MAXCERTIFICATES => array ( self::STREAMER_VAR => "maxcertificates"),
SYNC_RESOLVERECIPIENTS_MAXAMBIGUOUSRECIPIENTS => array ( self::STREAMER_VAR => "maxambiguousrecipients"), SYNC_RESOLVERECIPIENTS_MAXAMBIGUOUSRECIPIENTS => array ( self::STREAMER_VAR => "maxambiguousrecipients"),
SYNC_RESOLVERECIPIENTS_AVAILABILITY => array ( self::STREAMER_VAR => "availability", SYNC_RESOLVERECIPIENTS_AVAILABILITY => array ( self::STREAMER_VAR => "availability",
self::STREAMER_TYPE => "SyncRRAvailability"), self::STREAMER_TYPE => "SyncResolveRecipientsAvailability"),
SYNC_RESOLVERECIPIENTS_PICTURE => array ( self::STREAMER_VAR => "picture", SYNC_RESOLVERECIPIENTS_PICTURE => array ( self::STREAMER_VAR => "picture",
self::STREAMER_TYPE => "SyncRRPicture"), self::STREAMER_TYPE => "SyncResolveRecipientsPicture"),
); );
parent::SyncObject($mapping); parent::SyncObject($mapping);
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* Created : 28.10.2012 * Created : 28.10.2012
* *
* Copyright 2007 - 2013 Zarafa Deutschland GmbH * Copyright 2007 - 2013, 2015 Zarafa Deutschland GmbH
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3, * it under the terms of the GNU Affero General Public License, version 3,
...@@ -45,13 +45,13 @@ ...@@ -45,13 +45,13 @@
* Consult LICENSE file for details * Consult LICENSE file for details
************************************************/ ************************************************/
class SyncRRPicture extends SyncObject { class SyncResolveRecipientsPicture extends SyncObject {
public $maxsize; public $maxsize;
public $maxpictures; public $maxpictures;
public $status; public $status;
public $data; public $data;
public function SyncRRPicture() { public function SyncResolveRecipientsPicture() {
$mapping = array ( $mapping = array (
SYNC_RESOLVERECIPIENTS_MAXSIZE => array ( self::STREAMER_VAR => "maxsize"), SYNC_RESOLVERECIPIENTS_MAXSIZE => array ( self::STREAMER_VAR => "maxsize"),
SYNC_RESOLVERECIPIENTS_MAXPICTURES => array ( self::STREAMER_VAR => "maxpictures"), SYNC_RESOLVERECIPIENTS_MAXPICTURES => array ( self::STREAMER_VAR => "maxpictures"),
......
<?php
/**********************************************************
* File : syncresolverecipientsresponse.php
* Project : Z-Push
* Descr : WBXML appointment entities that can be
* parsed directly (as a stream) from WBXML.
* It is automatically decoded
* according to $mapping,
* and the Sync WBXML mappings
*
* Created : 07.09.2015
*
* Copyright 2015 Zarafa Deutschland GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation with the following additional
* term according to sec. 7:
*
* According to sec. 7 of the GNU Affero General Public License, version 3,
* the terms of the AGPL are supplemented with the following terms:
*
* "Zarafa" is a registered trademark of Zarafa B.V.
* "Z-Push" is a registered trademark of Zarafa Deutschland GmbH
* The licensing of the Program under the AGPL does not imply a trademark license.
* Therefore any rights, title and interest in our trademarks remain entirely with us.
*
* However, if you propagate an unmodified version of the Program you are
* allowed to use the term "Z-Push" to indicate that you distribute the Program.
* Furthermore you may use our trademarks where it is necessary to indicate
* the intended purpose of a product or service provided you use it in accordance
* with honest practices in industrial or commercial matters.
* If you want to propagate modified versions of the Program under the name "Z-Push",
* you may only do so if you have a written permission by Zarafa Deutschland GmbH
* (to acquire a permission please contact Zarafa at trademark@zarafa.com).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Consult LICENSE file for details
************************************************/
class SyncResolveRecipientsResponse extends SyncObject {
public $to;
public $status;
public $recipientcount;
public $recipient;
public function SyncResolveRecipientsResponse() {
$mapping = array (
SYNC_RESOLVERECIPIENTS_TO => array ( self::STREAMER_VAR => "to"),
SYNC_RESOLVERECIPIENTS_STATUS => array ( self::STREAMER_VAR => "status"),
SYNC_RESOLVERECIPIENTS_RECIPIENTCOUNT => array ( self::STREAMER_VAR => "recipientcount"),
SYNC_RESOLVERECIPIENTS_RECIPIENT => array ( self::STREAMER_VAR => "recipient",
self::STREAMER_TYPE => "SyncResolveRecipient",
self::STREAMER_ARRAY => SYNC_RESOLVERECIPIENTS_RECIPIENT),
);
parent::SyncObject($mapping);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment