addressbook.php
11.8 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<?php
/**
* ownCloud - Addressbook
*
* @author Thomas Tanghus
* @copyright 2013-2014 Thomas Tanghus (thomas@tanghus.net)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Contacts;
use OC_L10N;
use OCA\Contacts\Backend\AbstractBackend;
use OCP\AppFramework\Http;
/**
* This class manages our addressbooks.
*/
class Addressbook extends AbstractPIMCollection {
/**
* @brief language object
*
* @var OC_L10N
*/
public static $l10n;
protected $_count;
/**
* @var Backend\AbstractBackend
*/
protected $backend;
/**
* An array containing the mandatory:
* 'displayname'
* 'discription'
* 'permissions'
*
* And the optional:
* 'Etag'
* 'lastModified'
*
* @var array
*/
protected $addressBookInfo;
/**
* @param AbstractBackend $backend The storage backend
* @param array $addressBookInfo
* @throws \Exception
*/
public function __construct(Backend\AbstractBackend $backend, array $addressBookInfo) {
self::$l10n = \OCP\Util::getL10N('contacts');
$this->backend = $backend;
$this->addressBookInfo = $addressBookInfo;
if (is_null($this->getId())) {
$id = $this->backend->createAddressBook($addressBookInfo);
if ($id === false) {
throw new \Exception('Error creating address book.', Http::STATUS_INTERNAL_SERVER_ERROR);
}
$this->addressBookInfo = $this->backend->getAddressBook($id);
}
//\OCP\Util::writeLog('contacts', __METHOD__.' backend: ' . print_r($this->backend, true), \OCP\Util::DEBUG);
}
/**
* @return AbstractBackend
*/
public function getBackend() {
return $this->backend;
}
/**
* @return string|null
*/
public function getId() {
return isset($this->addressBookInfo['id'])
? $this->addressBookInfo['id']
: null;
}
/**
* @return array
*/
public function getMetaData() {
$metadata = $this->addressBookInfo;
$metadata['lastmodified'] = $this->lastModified();
$metadata['active'] = $this->isActive();
$metadata['backend'] = $this->getBackend()->name;
$metadata['owner'] = $this->getOwner();
return $metadata;
}
/**
* @return string
*/
public function getDisplayName() {
return $this->addressBookInfo['displayname'];
}
/**
* @return string
*/
public function getURI() {
return $this->addressBookInfo['uri'];
}
/**
* @return string
*/
public function getOwner() {
return isset($this->addressBookInfo['owner'])
? $this->addressBookInfo['owner']
: \OCP\User::getUser();
}
/**
* Returns the lowest permission of what the backend allows and what it supports.
* @return int
*/
public function getPermissions() {
return $this->addressBookInfo['permissions'];
}
/**
* @brief Query whether an address book is active
* @return boolean
*/
public function isActive() {
return $this->backend->isActive($this->getId());
}
/**
* @brief Activate an address book
* @param bool $active
* @return void
*/
public function setActive($active) {
$this->backend->setActive($active, $this->getId());
}
/**
* Returns a specific child node, referenced by its id
*
* @param string $id
* @return Contact|null
* @throws \Exception On not found
*/
public function getChild($id) {
//\OCP\Util::writeLog('contacts', __METHOD__.' id: '.$id, \OCP\Util::DEBUG);
if (!$this->hasPermission(\OCP\PERMISSION_READ)) {
throw new \Exception(
self::$l10n->t('You do not have permissions to see this contact'),
Http::STATUS_FORBIDDEN
);
}
if (!isset($this->objects[(string)$id])) {
$contact = $this->backend->getContact($this->getId(), $id);
if ($contact) {
$this->objects[(string)$id] = new Contact($this, $this->backend, $contact);
} else {
throw new \Exception(
self::$l10n->t('Contact not found'),
Http::STATUS_NOT_FOUND
);
}
}
// When requesting a single contact we preparse it
if (isset($this->objects[(string)$id])) {
$this->objects[(string)$id]->retrieve();
return $this->objects[(string)$id];
}
}
/**
* Checks if a child-node with the specified id exists
*
* @param string $id
* @return bool
*/
public function childExists($id) {
if(isset($this->objects[$id])) {
return true;
}
return ($this->getChild($id) !== null);
}
/**
* Returns an array with all the child nodes
*
* @param int $limit
* @param int $offset
* @param bool $omitdata
* @return Contact[]
*/
public function getChildren($limit = null, $offset = null, $omitdata = false) {
if (!$this->hasPermission(\OCP\PERMISSION_READ)) {
throw new \Exception(
self::$l10n->t('You do not have permissions to see these contacts'),
Http::STATUS_FORBIDDEN
);
}
$contacts = array();
$options = array('limit' => $limit, 'offset' => $offset, 'omitdata' => $omitdata);
foreach ($this->backend->getContacts($this->getId(), $options) as $contact) {
//\OCP\Util::writeLog('contacts', __METHOD__.' id: '.$contact['id'], \OCP\Util::DEBUG);
if (!isset($this->objects[$contact['id']])) {
$this->objects[$contact['id']] = new Contact($this, $this->backend, $contact);
}
$contacts[] = $this->objects[$contact['id']];
}
//\OCP\Util::writeLog('contacts', __METHOD__.' children: '.count($contacts), \OCP\Util::DEBUG);
return $contacts;
}
/**
* Add a contact to the address book
* This takes an array or a VCard|Contact and return
* the ID or false.
*
* @param array|VObject\VCard $data
* @return int|bool
* @throws \Exception on missing permissions
*/
public function addChild($data = null) {
if (!$this->hasPermission(\OCP\PERMISSION_CREATE)) {
throw new \Exception(
self::$l10n->t('You do not have permissions add contacts to the address book'),
Http::STATUS_FORBIDDEN
);
}
if (!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_CREATE)) {
throw new \Exception(
self::$l10n->t('The backend for this address book does not support adding contacts'),
Http::STATUS_NOT_IMPLEMENTED
);
}
$contact = new Contact($this, $this->backend, $data);
if (is_null($data)) {
// A new Contact, don't try to load from backend
$contact->setRetrieved(true);
}
if ($contact->save() === false) {
return false;
}
$id = $contact->getId();
// If this method is called directly the index isn't set.
if (!isset($this->objects[$id])) {
$this->objects[$id] = $contact;
}
/* If count() hasn't been called yet don't _count hasn't been initialized
* so incrementing it would give a misleading value.
*/
if (isset($this->_count)) {
$this->_count += 1;
}
//\OCP\Util::writeLog('contacts', __METHOD__.' id: ' . $id, \OCP\Util::DEBUG);
return $id;
}
/**
* Delete a contact from the address book
*
* @param string $id
* @param array $options
* @return bool
* @throws \Exception on missing permissions
*/
public function deleteChild($id, $options = array()) {
if (!$this->hasPermission(\OCP\PERMISSION_DELETE)) {
throw new \Exception(
self::$l10n->t('You do not have permissions to delete this contact'),
Http::STATUS_FORBIDDEN
);
}
if (!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_DELETE)) {
throw new \Exception(
self::$l10n->t('The backend for this address book does not support deleting contacts'),
Http::STATUS_NOT_IMPLEMENTED
);
}
if ($this->backend->deleteContact($this->getId(), $id, $options)) {
if (isset($this->objects[$id])) {
unset($this->objects[$id]);
}
/* If count() hasn't been called yet don't _count hasn't been initialized
* so decrementing it would give a misleading value.
*/
if (isset($this->_count)) {
$this->_count -= 1;
}
return true;
}
return false;
}
/**
* Delete a list of contacts from the address book
*
* @param array $ids
* @return array containing the status
* @throws \Exception on missing permissions
*/
public function deleteChildren($ids) {
if (!$this->hasPermission(\OCP\PERMISSION_DELETE)) {
throw new \Exception(
self::$l10n->t('You do not have permissions to delete this contact'),
Http::STATUS_FORBIDDEN
);
}
if (!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_DELETE)) {
throw new \Exception(
self::$l10n->t('The backend for this address book does not support deleting contacts'),
Http::STATUS_NOT_IMPLEMENTED
);
}
$response = array();
\OCP\Util::emitHook('OCA\Contacts', 'pre_deleteContact',
array('id' => $ids)
);
foreach ($ids as $id) {
try {
if (!$this->deleteChild($id, array('isBatch' => true))) {
\OCP\Util::writeLog(
'contacts', __METHOD__.' Error deleting contact: '
. $this->getBackend()->name . '::'
. $this->getId() . '::' . $id,
\OCP\Util::ERROR
);
$response[] = array(
'id' => (string)$id,
'status' => 'error',
'message' => self::$l10n->t('Unknown error')
);
} else {
$response[] = array(
'id' => (string)$id,
'status' => 'success'
);
}
} catch(\Exception $e) {
$response[] = array(
'id' => (string)$id,
'status' => 'error',
'message' => $e->getMessage()
);
}
}
return $response;
}
/**
* @internal implements Countable
* @return int|null
*/
public function count() {
if (!isset($this->_count)) {
$this->_count = $this->backend->numContacts($this->getId());
}
return $this->_count;
}
/**
* Update and save the address book data to backend
* NOTE: @see IPIMObject::update for consistency considerations.
*
* @param array $data
* @return bool
*/
public function update(array $data) {
if (!$this->hasPermission(\OCP\PERMISSION_UPDATE)) {
throw new \Exception(
self::$l10n->t('Access denied'),
Http::STATUS_FORBIDDEN
);
}
if (!$this->getBackend()->hasContactMethodFor(\OCP\PERMISSION_UPDATE)) {
throw new \Exception(
self::$l10n->t('The backend for this address book does not support updating'),
Http::STATUS_NOT_IMPLEMENTED
);
}
if (count($data) === 0) {
return false;
}
foreach ($data as $key => $value) {
switch ($key) {
case 'displayname':
$this->addressBookInfo['displayname'] = $value;
break;
case 'description':
$this->addressBookInfo['description'] = $value;
break;
}
}
return $this->backend->updateAddressBook($this->getId(), $data);
}
/**
* Delete the address book from backend
*
* @return bool
*/
public function delete() {
if (!$this->hasPermission(\OCP\PERMISSION_DELETE)) {
throw new \Exception(
self::$l10n->t('You don\'t have permissions to delete the address book.'),
Http::STATUS_FORBIDDEN
);
}
return $this->backend->deleteAddressBook($this->getId());
}
/**
* @brief Get the last modification time for the object.
*
* Must return a UNIX time stamp or null if the backend
* doesn't support it.
*
* @return int | null
*/
public function lastModified() {
return $this->backend->lastModifiedAddressBook($this->getId());
}
/**
* Get an array of birthday events for contacts in this address book.
*
* @return \Sabre\VObject\Component\VEvent[]
*/
public function getBirthdayEvents() {
$events = array();
foreach ($this->getChildren() as $contact) {
if ($event = $contact->getBirthdayEvent()) {
$events[] = $event;
}
}
return $events;
}
/**
* Returns the searchProvider for a specific backend.
*
* @return \OCP\IAddressBook
*/
public function getSearchProvider() {
return $this->backend->getSearchProvider($this);
}
}