Blame view

sources/apps/contacts/lib/carddav/plugin.php 2.12 KB
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
  <?php
  /**
   * ownCloud - CardDAV plugin
   *
   * The CardDAV plugin adds CardDAV functionality to the WebDAV server
   *
   * @author Thomas Tanghus
6d9380f96   Cédric Dupont   Update sources OC...
8
   * @copyright 2013-2014 Thomas Tanghus (thomas@tanghus.net)
d1bafeea1   Kload   [fix] Upgrade to ...
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
   *
   * 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\CardDAV;
  
  use Sabre\VObject;
  use OCA\Contacts\VObject\VCard;
  
  /**
6d9380f96   Cédric Dupont   Update sources OC...
31
   * This class overrides \Sabre\CardDAV\Plugin::validateVCard() to be able
d1bafeea1   Kload   [fix] Upgrade to ...
32
33
34
   * to import partially invalid vCards by ignoring invalid lines and to
   * validate and upgrade using \OCA\Contacts\VCard.
  */
6d9380f96   Cédric Dupont   Update sources OC...
35
  class Plugin extends \Sabre\CardDAV\Plugin {
d1bafeea1   Kload   [fix] Upgrade to ...
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  
  	/**
  	* Checks if the submitted vCard data is in fact, valid.
  	*
  	* An exception is thrown if it's not.
  	*
  	* @param resource|string $data
  	* @return void
  	*/
  	protected function validateVCard(&$data) {
  
  		// If it's a stream, we convert it to a string first.
  		if (is_resource($data)) {
  			$data = stream_get_contents($data);
6d9380f96   Cédric Dupont   Update sources OC...
50
51
  		} elseif (!is_string($data)) {
  			throw new \Exception(__METHOD__ . ' argument 1 only supports string or stream resource.');
d1bafeea1   Kload   [fix] Upgrade to ...
52
53
54
55
56
  		}
  
  		try {
  			$vobj = VObject\Reader::read($data, VObject\Reader::OPTION_IGNORE_INVALID_LINES);
  		} catch (VObject\ParseException $e) {
6d9380f96   Cédric Dupont   Update sources OC...
57
  			throw new \Sabre\DAV\Exception\UnsupportedMediaType('This resource only supports valid vcard data. Parse error: ' . $e->getMessage());
d1bafeea1   Kload   [fix] Upgrade to ...
58
59
60
  		}
  
  		if ($vobj->name !== 'VCARD') {
6d9380f96   Cédric Dupont   Update sources OC...
61
  			throw new \Sabre\DAV\Exception\UnsupportedMediaType('This collection can only support vcard objects.');
d1bafeea1   Kload   [fix] Upgrade to ...
62
63
64
65
66
  		}
  
  		$vobj->validate(VCard::REPAIR|VCard::UPGRADE);
  		$data = $vobj->serialize();
  	}
6d9380f96   Cédric Dupont   Update sources OC...
67
  }