|
30 | 30 | use Sabre\CardDAV\Backend\SyncSupport;
|
31 | 31 | use Sabre\CardDAV\Plugin;
|
32 | 32 | use Sabre\DAV\Exception\BadRequest;
|
| 33 | +use Sabre\VObject; |
33 | 34 | use Sabre\VObject\Component\VCard;
|
34 | 35 | use Sabre\VObject\Reader;
|
35 | 36 |
|
@@ -606,6 +607,7 @@ public function getMultipleCards($addressBookId, array $uris) {
|
606 | 607 | * @return string
|
607 | 608 | */
|
608 | 609 | public function createCard($addressBookId, $cardUri, $cardData, bool $checkAlreadyExists = true) {
|
| 610 | + $cardData = $this->formatCard($cardData); |
609 | 611 | $etag = md5($cardData);
|
610 | 612 | $uid = $this->getUID($cardData);
|
611 | 613 | return $this->atomic(function () use ($addressBookId, $cardUri, $cardData, $checkAlreadyExists, $etag, $uid) {
|
@@ -678,6 +680,7 @@ public function createCard($addressBookId, $cardUri, $cardData, bool $checkAlrea
|
678 | 680 | * @return string
|
679 | 681 | */
|
680 | 682 | public function updateCard($addressBookId, $cardUri, $cardData) {
|
| 683 | + $cardData = $this->formatCard($cardData); |
681 | 684 | $uid = $this->getUID($cardData);
|
682 | 685 | $etag = md5($cardData);
|
683 | 686 |
|
@@ -1460,4 +1463,23 @@ private function getUID(string $cardData): string {
|
1460 | 1463 | // should already be handled, but just in case
|
1461 | 1464 | throw new BadRequest('vCard can not be empty');
|
1462 | 1465 | }
|
| 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 | + } |
1463 | 1485 | }
|
0 commit comments