Blame view

sources/3rdparty/sabre/dav/lib/Sabre/CalDAV/ICSExportPlugin.php 3.83 KB
03e52840d   Kload   Init
1
  <?php
6d9380f96   Cédric Dupont   Update sources OC...
2
3
4
  namespace Sabre\CalDAV;
  
  use Sabre\DAV;
03e52840d   Kload   Init
5
6
7
8
9
10
11
12
13
  use Sabre\VObject;
  
  /**
   * ICS Exporter
   *
   * This plugin adds the ability to export entire calendars as .ics files.
   * This is useful for clients that don't support CalDAV yet. They often do
   * support ics files.
   *
6d9380f96   Cédric Dupont   Update sources OC...
14
15
16
   * @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
   * @author Evert Pot (http://evertpot.com/)
   * @license http://sabre.io/license/ Modified BSD License
03e52840d   Kload   Init
17
   */
6d9380f96   Cédric Dupont   Update sources OC...
18
  class ICSExportPlugin extends DAV\ServerPlugin {
03e52840d   Kload   Init
19
20
21
22
  
      /**
       * Reference to Server class
       *
6d9380f96   Cédric Dupont   Update sources OC...
23
       * @var \Sabre\DAV\Server
03e52840d   Kload   Init
24
25
26
27
28
29
       */
      protected $server;
  
      /**
       * Initializes the plugin and registers event handlers
       *
6d9380f96   Cédric Dupont   Update sources OC...
30
       * @param \Sabre\DAV\Server $server
03e52840d   Kload   Init
31
32
       * @return void
       */
6d9380f96   Cédric Dupont   Update sources OC...
33
      public function initialize(DAV\Server $server) {
03e52840d   Kload   Init
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  
          $this->server = $server;
          $this->server->subscribeEvent('beforeMethod',array($this,'beforeMethod'), 90);
  
      }
  
      /**
       * 'beforeMethod' event handles. This event handles intercepts GET requests ending
       * with ?export
       *
       * @param string $method
       * @param string $uri
       * @return bool
       */
      public function beforeMethod($method, $uri) {
  
          if ($method!='GET') return;
          if ($this->server->httpRequest->getQueryString()!='export') return;
  
          // splitting uri
          list($uri) = explode('?',$uri,2);
  
          $node = $this->server->tree->getNodeForPath($uri);
6d9380f96   Cédric Dupont   Update sources OC...
57
          if (!($node instanceof Calendar)) return;
03e52840d   Kload   Init
58
59
60
61
62
63
64
65
66
67
  
          // Checking ACL, if available.
          if ($aclPlugin = $this->server->getPlugin('acl')) {
              $aclPlugin->checkPrivileges($uri, '{DAV:}read');
          }
  
          $this->server->httpResponse->setHeader('Content-Type','text/calendar');
          $this->server->httpResponse->sendStatus(200);
  
          $nodes = $this->server->getPropertiesForPath($uri, array(
6d9380f96   Cédric Dupont   Update sources OC...
68
              '{' . Plugin::NS_CALDAV . '}calendar-data',
03e52840d   Kload   Init
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
          ),1);
  
          $this->server->httpResponse->sendBody($this->generateICS($nodes));
  
          // Returning false to break the event chain
          return false;
  
      }
  
      /**
       * Merges all calendar objects, and builds one big ics export
       *
       * @param array $nodes
       * @return string
       */
      public function generateICS(array $nodes) {
6d9380f96   Cédric Dupont   Update sources OC...
85
          $calendar = new VObject\Component\VCalendar();
03e52840d   Kload   Init
86
          $calendar->version = '2.0';
6d9380f96   Cédric Dupont   Update sources OC...
87
88
          if (DAV\Server::$exposeVersion) {
              $calendar->prodid = '-//SabreDAV//SabreDAV ' . DAV\Version::VERSION . '//EN';
03e52840d   Kload   Init
89
90
91
92
93
94
95
96
97
98
99
          } else {
              $calendar->prodid = '-//SabreDAV//SabreDAV//EN';
          }
          $calendar->calscale = 'GREGORIAN';
  
          $collectedTimezones = array();
  
          $timezones = array();
          $objects = array();
  
          foreach($nodes as $node) {
6d9380f96   Cédric Dupont   Update sources OC...
100
              if (!isset($node[200]['{' . Plugin::NS_CALDAV . '}calendar-data'])) {
03e52840d   Kload   Init
101
102
                  continue;
              }
6d9380f96   Cédric Dupont   Update sources OC...
103
              $nodeData = $node[200]['{' . Plugin::NS_CALDAV . '}calendar-data'];
03e52840d   Kload   Init
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
  
              $nodeComp = VObject\Reader::read($nodeData);
  
              foreach($nodeComp->children() as $child) {
  
                  switch($child->name) {
                      case 'VEVENT' :
                      case 'VTODO' :
                      case 'VJOURNAL' :
                          $objects[] = $child;
                          break;
  
                      // VTIMEZONE is special, because we need to filter out the duplicates
                      case 'VTIMEZONE' :
                          // Naively just checking tzid.
                          if (in_array((string)$child->TZID, $collectedTimezones)) continue;
  
                          $timezones[] = $child;
                          $collectedTimezones[] = $child->TZID;
                          break;
  
                  }
  
              }
  
          }
  
          foreach($timezones as $tz) $calendar->add($tz);
          foreach($objects as $obj) $calendar->add($obj);
  
          return $calendar->serialize();
  
      }
  
  }