-
Notifications
You must be signed in to change notification settings - Fork 7
/
Card.php
87 lines (73 loc) · 1.27 KB
/
Card.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\LDAPContactsBackend\Model;
use Sabre\CardDAV\ICard;
use Sabre\DAV\Exception\NotImplemented;
use Sabre\VObject\Component\VCard;
class Card implements ICard {
public function __construct(
private array $vCardData,
) {
}
/**
* @inheritDoc
*/
public function put($data) {
throw new NotImplemented();
}
/**
* @inheritDoc
*/
public function get() {
return (new VCard($this->vCardData))->serialize();
}
public function getData(): array {
return $this->vCardData;
}
/**
* @inheritDoc
*/
public function getContentType() {
return 'text/vcard; charset=utf-8';
}
/**
* @inheritDoc
*/
public function getETag() {
return null;
}
/**
* @inheritDoc
*/
public function getSize() {
return \strlen((string)$this->get());
}
/**
* @inheritDoc
*/
public function delete() {
throw new NotImplemented();
}
/**
* @inheritDoc
*/
public function getName() {
return $this->vCardData['URI'];
}
/**
* @inheritDoc
*/
public function setName($name) {
throw new NotImplemented();
}
/**
* @inheritDoc
*/
public function getLastModified() {
return null;
}
}