ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilCalendarRemoteReader.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
5
include_once
'./Services/WebServices/Curl/classes/class.ilCurlConnection.php'
;
6
include_once
'./Services/WebServices/Curl/classes/class.ilCurlConnectionException.php'
;
7
14
class
ilCalendarRemoteReader
15
{
16
17
const
TYPE_ICAL
= 1;
18
19
// Fixed in the moment
20
private
$type
= self::TYPE_ICAL;
21
22
private
$curl
= null;
23
24
private
$url
;
25
private
$user
;
26
private
$pass
;
27
28
private
$ical
;
29
30
35
public
function
__construct
($a_url)
36
{
37
$this->url = $a_url;
38
}
39
40
public
function
setUser
($a_user)
41
{
42
$this->user = $a_user;
43
}
44
45
public
function
setPass
($a_pass)
46
{
47
$this->pass = $a_pass;
48
}
49
50
public
function
getType
()
51
{
52
return
$this->type
;
53
}
54
55
public
function
getUrl
()
56
{
57
return
$this->url
;
58
}
59
60
66
public
function
read
()
67
{
68
$this->
initCurl
();
69
70
switch
($this->
getType
())
71
{
72
case
self::TYPE_ICAL:
73
return
$this->
readIcal
();
74
}
75
}
76
81
public
function
import
(
ilCalendarCategory
$cat)
82
{
83
switch
($this->
getType
())
84
{
85
case
self::TYPE_ICAL:
86
return
$this->
importIcal
($cat);
87
}
88
}
89
95
protected
function
readIcal
()
96
{
97
$this->ical = $this->
call
();
98
$GLOBALS
[
'ilLog'
]->write(__METHOD__.
': '
.$this->ical);
99
return
true
;
100
}
101
106
protected
function
importIcal
(
ilCalendarCategory
$cat)
107
{
108
// Delete old appointments
109
include_once(
'./Services/Calendar/classes/class.ilCalendarCategoryAssignments.php'
);
110
foreach
(
ilCalendarCategoryAssignments::_getAssignedAppointments
(array($cat->
getCategoryID
())) as $app_id)
111
{
112
include_once(
'./Services/Calendar/classes/class.ilCalendarEntry.php'
);
113
ilCalendarEntry::_delete
($app_id);
114
}
115
ilCalendarCategoryAssignments::_deleteByCategoryId
($cat->
getCategoryID
());
116
117
// Import new appointments
118
include_once
'./Services/Calendar/classes/iCal/class.ilICalParser.php'
;
119
$parser =
new
ilICalParser
($this->ical,
ilICalParser::INPUT_STRING
);
120
$parser->setCategoryId($cat->
getCategoryID
());
121
$parser->parse();
122
}
123
127
protected
function
initCurl
()
128
{
129
try
{
130
131
$this->
replaceWebCalProtocol
();
132
133
$this->curl =
new
ilCurlConnection
($this->
getUrl
());
134
$this->curl->init();
135
$this->curl->setOpt(CURLOPT_SSL_VERIFYPEER, 0);
136
$this->curl->setOpt(CURLOPT_SSL_VERIFYHOST, 0);
137
$this->curl->setOpt(CURLOPT_RETURNTRANSFER, 1);
138
139
$this->curl->setOpt(CURLOPT_FOLLOWLOCATION, 1);
140
$this->curl->setOpt(CURLOPT_MAXREDIRS, 3);
141
142
if
($this->user)
143
{
144
$this->curl->setOpt(CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
145
$this->curl->setOpt(CURLOPT_USERPWD,$this->user.
':'
.$this->pass);
146
}
147
}
148
catch
(
Exception
$e)
149
{
150
throw
$e;
151
}
152
}
153
154
protected
function
replaceWebCalProtocol
()
155
{
156
if
(substr($this->
getUrl
(), 0, 6) ==
'webcal'
)
157
{
158
$purged = preg_replace(
'/webcal/'
,
'http'
, $this->
getUrl
(), 1);
159
$this->url = $purged;
160
$GLOBALS
[
'ilLog'
]->write(__METHOD__.
': Using new url: '
. $this->getUrl());
161
}
162
}
163
170
private
function
call
()
171
{
172
try
173
{
174
$res
= $this->curl->exec();
175
return
$res
;
176
}
177
catch
(
ilCurlConnectionException
$exc)
178
{
179
throw
($exc);
180
}
181
}
182
183
184
185
}
186
187
?>
ilCalendarRemoteReader\initCurl
initCurl()
Init curl connection.
Definition:
class.ilCalendarRemoteReader.php:127
ilCurlConnectionException
Definition:
class.ilCurlConnectionException.php:34
ilCalendarRemoteReader\call
call()
call peer
Definition:
class.ilCalendarRemoteReader.php:170
$res
$res
Definition:
examplelayouts.sql.php:25
ilICalParser
Definition:
class.ilICalParser.php:45
ilCalendarCategory
Stores calendar categories.
Definition:
class.ilCalendarCategory.php:33
ilCalendarRemoteReader
Reader for remote ical calendars.
Definition:
class.ilCalendarRemoteReader.php:14
ilCalendarRemoteReader\$curl
$curl
Definition:
class.ilCalendarRemoteReader.php:22
ilCalendarRemoteReader\setUser
setUser($a_user)
Definition:
class.ilCalendarRemoteReader.php:40
ilCalendarRemoteReader\$ical
$ical
Definition:
class.ilCalendarRemoteReader.php:28
ilCalendarEntry\_delete
static _delete($a_entry_id)
delete entry
Definition:
class.ilCalendarEntry.php:79
ilCalendarRemoteReader\setPass
setPass($a_pass)
Definition:
class.ilCalendarRemoteReader.php:45
ilCalendarRemoteReader\importIcal
importIcal(ilCalendarCategory $cat)
Import ical in calendar.
Definition:
class.ilCalendarRemoteReader.php:106
ilCalendarRemoteReader\__construct
__construct($a_url)
Constructor init curl.
Definition:
class.ilCalendarRemoteReader.php:35
$GLOBALS
$GLOBALS['ct_recipient']
Definition:
example_form.ajax.php:4
ilCalendarRemoteReader\TYPE_ICAL
const TYPE_ICAL
Definition:
class.ilCalendarRemoteReader.php:17
ilCalendarRemoteReader\readIcal
readIcal()
Read ical.
Definition:
class.ilCalendarRemoteReader.php:95
ilCalendarRemoteReader\getType
getType()
Definition:
class.ilCalendarRemoteReader.php:50
ilCalendarRemoteReader\replaceWebCalProtocol
replaceWebCalProtocol()
Definition:
class.ilCalendarRemoteReader.php:154
ilCalendarCategoryAssignments\_deleteByCategoryId
static _deleteByCategoryId($a_cat_id)
Delete assignments by category id.
Definition:
class.ilCalendarCategoryAssignments.php:206
ilCalendarRemoteReader\getUrl
getUrl()
Definition:
class.ilCalendarRemoteReader.php:55
ilCalendarCategoryAssignments\_getAssignedAppointments
static _getAssignedAppointments($a_cat_id)
Get assigned apointments.
Definition:
class.ilCalendarCategoryAssignments.php:122
Exception
ilICalParser\INPUT_STRING
const INPUT_STRING
Definition:
class.ilICalParser.php:47
ilCalendarCategory\getCategoryID
getCategoryID()
get category id
Definition:
class.ilCalendarCategory.php:157
ilCalendarRemoteReader\$url
$url
Definition:
class.ilCalendarRemoteReader.php:24
ilCalendarRemoteReader\$type
$type
Definition:
class.ilCalendarRemoteReader.php:20
ilCalendarRemoteReader\$pass
$pass
Definition:
class.ilCalendarRemoteReader.php:26
ilCalendarRemoteReader\$user
$user
Definition:
class.ilCalendarRemoteReader.php:25
ilCalendarRemoteReader\read
read()
Read ical format.
Definition:
class.ilCalendarRemoteReader.php:66
ilCurlConnection
Definition:
class.ilCurlConnection.php:38
Services
Calendar
classes
class.ilCalendarRemoteReader.php
Generated on Mon Mar 31 2025 19:00:43 for ILIAS by
1.8.13 (using
Doxyfile
)