ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilCalendarRemoteAccessHandler.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once './Services/Calendar/classes/class.ilCalendarAuthenticationToken.php';
25 
35 {
36  private $token_handler = null;
37 
42  public function __construct()
43  {
44  }
45 
46  public function getTokenHandler()
47  {
48  return $this->token_handler;
49  }
50 
55  public function parseRequest()
56  {
57  if($_GET['client_id'])
58  {
59  $_COOKIE['ilClientId'] = $_GET['client_id'];
60 
61  }
62  else
63  {
64  $path_info_components = explode('/',$_SERVER['PATH_INFO']);
65  $_COOKIE['ilClientId'] = $path_info_components[1];
66  }
67  }
68 
73  public function handleRequest()
74  {
75  $this->initIlias();
76  $this->initTokenHandler();
77 
78  if($this->getTokenHandler()->getIcal() and !$this->getTokenHandler()->isIcalExpired())
79  {
80  ilUtil::deliverData($this->getTokenHandler(),'calendar.ics','text/calendar','utf-8');
81  }
82 
83  include_once './Services/Calendar/classes/Export/class.ilCalendarExport.php';
84  include_once './Services/Calendar/classes/class.ilCalendarCategories.php';
85  if($this->getTokenHandler()->getSelectionType() == ilCalendarAuthenticationToken::SELECTION_CALENDAR)
86  {
87  $export = new ilCalendarExport(array($this->getTokenHandler()->getCalendar()));
88  }
89  else
90  {
93  $export = new ilCalendarExport($cats->getCategories(true));
94  }
95 
96  $export->export();
97 
98  $this->getTokenHandler()->setIcal($export->getExportString());
99  $this->getTokenHandler()->storeIcal();
100 
101  $GLOBALS['ilAuth']->logout();
102  ilUtil::deliverData($export->getExportString(),'calendar.ics','text/calendar','utf-8');
103  #echo $export->getExportString();
104  #echo nl2br($export->getExportString());
105 
106  #$fp = fopen('ilias.ics', 'w');
107  #fwrite($fp,$export->getExportString());
108  exit;
109  }
110 
111  protected function initTokenHandler()
112  {
113  $this->token_handler = new ilCalendarAuthenticationToken(
115  $_GET['token']
116  );
117  return true;
118  }
119 
120  protected function initIlias()
121  {
122  include_once "Services/Context/classes/class.ilContext.php";
124 
125  include_once './Services/Authentication/classes/class.ilAuthFactory.php';
127 
128  $_POST['username'] = 'cal_auth_token';
129  $_POST['password'] = 'cal_auth_token';
130 
131  require_once("Services/Init/classes/class.ilInitialisation.php");
133 
134  $GLOBALS['lng']->loadLanguageModule('dateplaner');
135  }
136 }
137 ?>