Skip to content

Commit 326e039

Browse files
committed
feat (contacts): format/clean emails of carddav
Signed-off-by: TimedIn <[email protected]>
1 parent 1f99521 commit 326e039

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

apps/dav/lib/CardDAV/CardDavBackend.php

+22
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
use Sabre\CardDAV\Backend\SyncSupport;
3131
use Sabre\CardDAV\Plugin;
3232
use Sabre\DAV\Exception\BadRequest;
33+
use Sabre\VObject;
3334
use Sabre\VObject\Component\VCard;
3435
use Sabre\VObject\Reader;
3536

@@ -606,6 +607,7 @@ public function getMultipleCards($addressBookId, array $uris) {
606607
* @return string
607608
*/
608609
public function createCard($addressBookId, $cardUri, $cardData, bool $checkAlreadyExists = true) {
610+
$cardData = $this->formatCard($cardData);
609611
$etag = md5($cardData);
610612
$uid = $this->getUID($cardData);
611613
return $this->atomic(function () use ($addressBookId, $cardUri, $cardData, $checkAlreadyExists, $etag, $uid) {
@@ -678,6 +680,7 @@ public function createCard($addressBookId, $cardUri, $cardData, bool $checkAlrea
678680
* @return string
679681
*/
680682
public function updateCard($addressBookId, $cardUri, $cardData) {
683+
$cardData = $this->formatCard($cardData);
681684
$uid = $this->getUID($cardData);
682685
$etag = md5($cardData);
683686

@@ -1460,4 +1463,23 @@ private function getUID(string $cardData): string {
14601463
// should already be handled, but just in case
14611464
throw new BadRequest('vCard can not be empty');
14621465
}
1466+
1467+
/**
1468+
* Format vcard data (cleans spaces of emails)
1469+
* @param string $cardData the vcard raw data
1470+
* @return string the cleaned vcard data
1471+
*/
1472+
private function formatCard(string $cardData): string {
1473+
// Parse VCard
1474+
$vCard = VObject\Reader::read($cardData);
1475+
1476+
// Loop through all emails, remove the entry, remove all spaces from email, add it back
1477+
foreach ($vCard->EMAIL as $email) {
1478+
$cleanedEmail = str_replace(' ', '', (string)$email);
1479+
$vCard->remove($email);
1480+
$vCard->add('EMAIL', $cleanedEmail, ['type' => $email['TYPE']]);
1481+
}
1482+
// return as string
1483+
return $vCard->serialize();
1484+
}
14631485
}

0 commit comments

Comments
 (0)