ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
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
l
m
n
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
const
TYPE_ICAL
= 1;
17
18
// Fixed in the moment
19
private
$type
= self::TYPE_ICAL;
20
21
private
$curl
= null;
22
23
private
$url
;
24
private
$user
;
25
private
$pass
;
26
27
private
$ical
;
28
32
private
$logger
;
33
34
39
public
function
__construct
($a_url)
40
{
41
global
$DIC
;
42
43
$this->logger = $DIC->logger();
44
$this->url = $a_url;
45
}
46
47
public
function
setUser
($a_user)
48
{
49
$this->
user
= $a_user;
50
}
51
52
public
function
setPass
($a_pass)
53
{
54
$this->pass = $a_pass;
55
}
56
57
public
function
getType
()
58
{
59
return
$this->type
;
60
}
61
62
public
function
getUrl
()
63
{
64
return
$this->url
;
65
}
66
67
73
public
function
read
()
74
{
75
$this->
initCurl
();
76
77
switch
($this->
getType
()) {
78
case
self::TYPE_ICAL:
79
return
$this->
readIcal
();
80
}
81
}
82
87
public
function
import
(
ilCalendarCategory
$cat)
88
{
89
switch
($this->
getType
()) {
90
case
self::TYPE_ICAL:
91
return
$this->
importIcal
($cat);
92
}
93
}
94
100
protected
function
readIcal
()
101
{
102
$this->ical = $this->
call
();
103
$this->logger->debug($this->ical);
104
return
true
;
105
}
106
111
protected
function
importIcal
(
ilCalendarCategory
$cat)
112
{
113
// Delete old appointments
114
include_once(
'./Services/Calendar/classes/class.ilCalendarCategoryAssignments.php'
);
115
foreach
(
ilCalendarCategoryAssignments::_getAssignedAppointments
(array($cat->
getCategoryID
())) as $app_id) {
116
include_once(
'./Services/Calendar/classes/class.ilCalendarEntry.php'
);
117
ilCalendarEntry::_delete
($app_id);
118
}
119
ilCalendarCategoryAssignments::_deleteByCategoryId
($cat->
getCategoryID
());
120
121
// Import new appointments
122
include_once
'./Services/Calendar/classes/iCal/class.ilICalParser.php'
;
123
$parser
=
new
ilICalParser
($this->ical,
ilICalParser::INPUT_STRING
);
124
$parser
->setCategoryId($cat->
getCategoryID
());
125
$parser
->parse();
126
}
127
131
protected
function
initCurl
()
132
{
133
try
{
134
$this->
replaceWebCalProtocol
();
135
136
$this->curl =
new
ilCurlConnection
($this->
getUrl
());
137
$this->curl->init();
138
139
$this->curl->setOpt(CURLOPT_SSL_VERIFYPEER, 0);
140
$this->curl->setOpt(CURLOPT_SSL_VERIFYHOST, 0);
141
$this->curl->setOpt(CURLOPT_RETURNTRANSFER, 1);
142
143
$this->curl->setOpt(CURLOPT_FOLLOWLOCATION, 1);
144
$this->curl->setOpt(CURLOPT_MAXREDIRS, 3);
145
146
if
($this->
user
) {
147
$this->curl->setOpt(CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
148
$this->curl->setOpt(CURLOPT_USERPWD, $this->
user
.
':'
. $this->pass);
149
}
150
}
catch
(
Exception
$e
) {
151
throw
$e
;
152
}
153
}
154
155
protected
function
replaceWebCalProtocol
()
156
{
157
if
(substr($this->
getUrl
(), 0, 6) ==
'webcal'
) {
158
$purged = preg_replace(
'/webcal/'
,
'http'
, $this->
getUrl
(), 1);
159
$this->url = $purged;
160
}
161
}
162
169
private
function
call
()
170
{
171
try
{
172
$res
= $this->curl->exec();
173
return
$res
;
174
}
catch
(
ilCurlConnectionException
$exc) {
175
throw
($exc);
176
}
177
}
178
}
ilCalendarRemoteReader\initCurl
initCurl()
Init curl connection.
Definition:
class.ilCalendarRemoteReader.php:131
ilCurlConnectionException
Definition:
class.ilCurlConnectionException.php:34
ilCalendarRemoteReader\call
call()
call peer
Definition:
class.ilCalendarRemoteReader.php:169
ilICalParser
Definition:
class.ilICalParser.php:45
Vendor\Package\$e
$e
Definition:
example_cleaned.php:31
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:21
ilCalendarRemoteReader\setUser
setUser($a_user)
Definition:
class.ilCalendarRemoteReader.php:47
user
user()
Definition:
user.php:4
ilCalendarRemoteReader\$ical
$ical
Definition:
class.ilCalendarRemoteReader.php:27
ilCalendarEntry\_delete
static _delete($a_entry_id)
delete entry
Definition:
class.ilCalendarEntry.php:81
ilCalendarRemoteReader\setPass
setPass($a_pass)
Definition:
class.ilCalendarRemoteReader.php:52
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ilCalendarRemoteReader\importIcal
importIcal(ilCalendarCategory $cat)
Import ical in calendar.
Definition:
class.ilCalendarRemoteReader.php:111
ilCalendarRemoteReader\__construct
__construct($a_url)
Constructor init curl.
Definition:
class.ilCalendarRemoteReader.php:39
ilCalendarRemoteReader\TYPE_ICAL
const TYPE_ICAL
Definition:
class.ilCalendarRemoteReader.php:16
ilCalendarRemoteReader\readIcal
readIcal()
Read ical.
Definition:
class.ilCalendarRemoteReader.php:100
ilCalendarRemoteReader\getType
getType()
Definition:
class.ilCalendarRemoteReader.php:57
ilCalendarRemoteReader\replaceWebCalProtocol
replaceWebCalProtocol()
Definition:
class.ilCalendarRemoteReader.php:155
ilCalendarCategoryAssignments\_deleteByCategoryId
static _deleteByCategoryId($a_cat_id)
Delete assignments by category id.
Definition:
class.ilCalendarCategoryAssignments.php:214
ilCalendarRemoteReader\getUrl
getUrl()
Definition:
class.ilCalendarRemoteReader.php:62
ilCalendarCategoryAssignments\_getAssignedAppointments
static _getAssignedAppointments($a_cat_id)
Get assigned apointments.
Definition:
class.ilCalendarCategoryAssignments.php:125
$parser
$parser
Definition:
BPMN2Parser.php:23
$DIC
$DIC
Definition:
xapitoken.php:46
ilICalParser\INPUT_STRING
const INPUT_STRING
Definition:
class.ilICalParser.php:47
ilCalendarCategory\getCategoryID
getCategoryID()
get category id
Definition:
class.ilCalendarCategory.php:160
ilCalendarRemoteReader\$url
$url
Definition:
class.ilCalendarRemoteReader.php:23
ilCalendarRemoteReader\$type
$type
Definition:
class.ilCalendarRemoteReader.php:19
ilCalendarRemoteReader\$pass
$pass
Definition:
class.ilCalendarRemoteReader.php:25
ilCalendarRemoteReader\$logger
$logger
Definition:
class.ilCalendarRemoteReader.php:32
ilCalendarRemoteReader\$user
$user
Definition:
class.ilCalendarRemoteReader.php:24
ilCalendarRemoteReader\read
read()
Read ical format.
Definition:
class.ilCalendarRemoteReader.php:73
Exception
ilCurlConnection
Definition:
class.ilCurlConnection.php:38
Services
Calendar
classes
class.ilCalendarRemoteReader.php
Generated on Sat Apr 5 2025 20:01:17 for ILIAS by
1.8.13 (using
Doxyfile
)