|
|
|
@ -165,7 +165,7 @@ class CardDavBackend implements BackendInterface, SyncSupport { |
|
|
|
|
'{DAV:}displayname' => $row['displayname'], |
|
|
|
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
|
|
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ? $row['synctoken'] : '0', |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
$this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
|
|
@ -221,7 +221,7 @@ class CardDavBackend implements BackendInterface, SyncSupport { |
|
|
|
|
'{DAV:}displayname' => $displayName, |
|
|
|
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
|
|
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ? $row['synctoken'] : '0', |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
|
|
|
'{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $row['principaluri'], |
|
|
|
|
$readOnlyPropertyName => $readOnly, |
|
|
|
|
]; |
|
|
|
@ -251,7 +251,7 @@ class CardDavBackend implements BackendInterface, SyncSupport { |
|
|
|
|
'{DAV:}displayname' => $row['displayname'], |
|
|
|
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
|
|
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ? $row['synctoken'] : '0', |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
$this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
|
|
@ -298,7 +298,7 @@ class CardDavBackend implements BackendInterface, SyncSupport { |
|
|
|
|
'{DAV:}displayname' => $row['displayname'], |
|
|
|
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
|
|
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ? $row['synctoken'] : '0', |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
$this->addOwnerPrincipal($addressBook); |
|
|
|
@ -332,7 +332,7 @@ class CardDavBackend implements BackendInterface, SyncSupport { |
|
|
|
|
'{DAV:}displayname' => $row['displayname'], |
|
|
|
|
'{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
|
|
|
'{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ? $row['synctoken'] : '0', |
|
|
|
|
'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
$this->addOwnerPrincipal($addressBook); |
|
|
|
|