ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
xapiproxy.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
// hardcoded namespace
22
// attention: maybe a problem with composer v2 / psr4 autoload requires exact matching of namespace and parent folder name?
23
namespace
XapiProxy
;
24
25
// hardcoded context for better performance
26
// $plugin = file_exists(__DIR__."/plugin.php"); // for testing
27
$plugin
=
false
;
28
32
if
(strtoupper(
$_SERVER
[
"REQUEST_METHOD"
]) ==
"OPTIONS"
) {
33
header
(
'HTTP/1.1 204 No Content'
);
34
header
(
'Access-Control-Allow-Origin: '
.
$_SERVER
[
"HTTP_ORIGIN"
]);
35
header
(
'Access-Control-Allow-Credentials: true'
);
36
header
(
'Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS'
);
37
header
(
'Access-Control-Allow-Headers: X-Experience-API-Version,Accept,Authorization,Etag,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Mx-ReqToken,X-Requested-With'
);
38
exit
;
39
}
40
44
if
(!empty(
$_SERVER
[
'PHP_AUTH_USER'
]) && !empty(
$_SERVER
[
'PHP_AUTH_PW'
])) {
45
$client
=
$_SERVER
[
'PHP_AUTH_USER'
];
46
$token
=
$_SERVER
[
'PHP_AUTH_PW'
];
47
} elseif (!empty(
$_SERVER
[
'HTTP_AUTHORIZATION'
])) {
48
$basicAuth = explode(
':'
, base64_decode(substr(
$_SERVER
[
'HTTP_AUTHORIZATION'
], 6)));
49
$client
= $basicAuth[0];
50
$token
= $basicAuth[1];
51
}
else
{
52
header
(
'HTTP/1.1 401 Authorization Required'
);
53
header
(
'Access-Control-Allow-Origin: '
.
$_SERVER
[
"HTTP_ORIGIN"
]);
54
header
(
'Access-Control-Allow-Credentials: true'
);
55
header
(
'Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS'
);
56
header
(
'Access-Control-Allow-Headers: X-Experience-API-Version,Accept,Authorization,Etag,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Mx-ReqToken,X-Requested-With'
);
57
exit
;
58
}
59
64
if
(
$plugin
) {
69
//require_once __DIR__.'/classes/XapiProxy/vendor/autoload.php';
70
71
chdir(
"../../../../../../../../"
);
72
}
else
{
73
chdir(
"../../../"
);
74
}
75
//instead of DataService
76
\ilContext::init
(\
ilContext::CONTEXT_SCORM
);
77
\ilInitialisation::initILIAS
();
78
// DataService::initIlias($client);
79
$dic
=
$GLOBALS
[
'DIC'
];
80
81
$xapiproxy
=
new
XapiProxy
(
$client
,
$token
,
$plugin
);
82
86
try
{
87
$xapiproxy
->initLrs();
88
}
catch
(\
Exception
$e
) {
89
$xapiproxy
->log()->error($e->getMessage());
90
}
91
$req
=
new
XapiProxyRequest
(
$xapiproxy
);
92
$resp
=
new
XapiProxyResponse
(
$xapiproxy
);
93
94
$xapiproxy
->setXapiProxyRequest(
$req
);
95
$xapiproxy
->setXapiProxyResponse(
$resp
);
96
97
$req
->handle();
XapiProxy\XapiProxyRequest
Definition:
XapiProxyRequest.php:30
XapiProxy\exit
exit
Definition:
xapiproxy.php:57
XapiProxy\XapiProxyResponse
Definition:
XapiProxyResponse.php:27
ilContext\CONTEXT_SCORM
const CONTEXT_SCORM
Definition:
class.ilContext.php:42
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
XapiProxy
Definition:
DataService.php:21
XapiProxy\$xapiproxy
$xapiproxy
Definition:
xapiproxy.php:81
XapiProxy\$plugin
$plugin
Definition:
xapiproxy.php:27
XapiProxy\$req
catch(\Exception $e) $req
Definition:
xapiproxy.php:91
$client
$client
Definition:
dummy_client.php:45
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1145
$GLOBALS
$GLOBALS["DIC"]
Definition:
wac.php:53
$token
$token
Definition:
xapitoken.php:70
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:26
XapiProxy\$resp
$resp
Definition:
xapiproxy.php:92
ilContext\init
static init(string $a_type)
Init context by type.
Definition:
class.ilContext.php:52
$dic
$dic
Definition:
result.php:31
ILIAS\UI\examples\Symbol\Glyph\Header\header
header()
expected output: > ILIAS shows the rendered Component.
Definition:
header.php:29
Exception
components
ILIAS
CmiXapi
xapiproxy.php
Generated on Thu Apr 3 2025 23:02:31 for ILIAS by
1.8.13 (using
Doxyfile
)