ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
ExtLinkMapper.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\COPage\Link
;
22
23
class
ExtLinkMapper
24
{
25
protected
array
$ilias_url
;
26
27
public
function
__construct
(
28
protected
\
ilObjectDefinition
$object_def,
29
string
$ilias_http_path,
30
protected
array $mapping,
31
protected
$client_id
=
""
32
) {
33
$this->ilias_url = parse_url($ilias_http_path);
34
if
(
$client_id
===
""
) {
35
$this->client_id =
CLIENT_ID
;
36
}
37
}
38
39
public
function
getRefId
(
string
$href):
int
40
{
41
$url
= parse_url($href);
42
43
// only handle links on same host
44
if
((
$url
[
"host"
] ??
""
) !==
""
&&
$url
[
"host"
] !== $this->ilias_url[
"host"
]) {
45
return
0;
46
}
47
48
$ref_id
= 0;
49
50
// get parameters
51
$par = [];
52
$type =
""
;
53
54
// links ending with .html, e.g. goto_client_cat_581.html
55
if
(substr($href, strlen($href) - 5) ===
".html"
) {
56
$parts
= explode(
57
"_"
,
58
basename(
59
substr(
$url
[
"path"
], 0, strlen(
$url
[
"path"
]) - 5)
60
)
61
);
62
if
(array_shift(
$parts
) !==
"goto"
) {
63
return
0;
64
}
65
$par[
"client_id"
] = array_shift(
$parts
);
66
$par[
"target"
] = implode(
"_"
,
$parts
);
// e.g. cat_581
67
$t = explode(
"_"
, $par[
"target"
]);
68
$type = $t[0] ??
""
;
69
$ref_id
= (
int
) ($t[1] ?? 0);
70
} elseif (is_int($p = strpos($href,
"/goto.php/"
))) {
71
$parts
= explode(
"/"
, substr($href, $p + 10));
72
$ref_id
= (
int
) (
$parts
[1] ?? 0);
73
$type = (
$parts
[0] ??
""
);
74
} elseif (is_int($p = strpos($href,
"/go/"
))) {
75
$parts
= explode(
"/"
, substr($href, $p + 4));
76
$ref_id
= (
int
) (
$parts
[1] ?? 0);
77
$type = (
$parts
[0] ??
""
);
78
}
else
{
79
// extract all query parameter
80
foreach
(explode(
"&"
, (
$url
[
"query"
] ??
""
)) as $p) {
81
$p = explode(
"="
, $p);
82
if
(isset($p[0]) && isset($p[1])) {
83
$par[$p[0]] = $p[1];
84
}
85
}
86
$ref_id
= (
int
) ($par[
"ref_id"
] ?? 0);
87
}
88
89
if
(
$ref_id
> 0 && $type !==
""
&& !$this->object_def->isRBACObject($type)) {
90
$ref_id
= 0;
91
}
92
93
// we have a client and it's the wrong client -> return ""
94
$target_client_id = $par[
"client_id"
] ??
""
;
95
if
($target_client_id !==
""
&& $target_client_id !== $this->client_id) {
96
return
0;
97
}
98
return
$ref_id
;
99
}
100
101
public
function
getNewHref
(
int
$ref_id
): string
102
{
103
if
($ref_id > 0) {
104
$new_ref_id = ($this->mapping[
$ref_id
] ?? 0);
105
if
($new_ref_id > 0) {
106
return \ilLink::_getLink($new_ref_id);
107
}
108
}
109
return
""
;
110
}
111
}
ILIAS\Data\Link\ExtLinkMapper\getRefId
getRefId(string $href)
Definition:
ExtLinkMapper.php:39
$parts
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition:
ltitoken.php:61
ILIAS\Data\Link\ExtLinkMapper
Definition:
ExtLinkMapper.php:23
ILIAS\Data\Link\ExtLinkMapper\getNewHref
getNewHref(int $ref_id)
Definition:
ExtLinkMapper.php:101
$url
$url
Definition:
shib_logout.php:66
ILIAS\COPage\Link
Definition:
ExtLinkMapper.php:21
$ref_id
$ref_id
Definition:
ltiauth.php:65
ILIAS\Data\Link\ExtLinkMapper\$ilias_url
array $ilias_url
Definition:
ExtLinkMapper.php:25
CLIENT_ID
const CLIENT_ID
Definition:
constants.php:41
ILIAS\Data\Link\ExtLinkMapper\__construct
__construct(protected \ilObjectDefinition $object_def, string $ilias_http_path, protected array $mapping, protected $client_id="")
Definition:
ExtLinkMapper.php:27
ilObjectDefinition
ILIAS\$client_id
string $client_id
Definition:
class.ilias.php:36
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
COPage
Link
ExtLinkMapper.php
Generated on Wed Apr 2 2025 23:02:35 for ILIAS by
1.8.13 (using
Doxyfile
)