ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ltiauth.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 chdir("../../../");
23 
28 if (strtoupper($_SERVER['REQUEST_METHOD']) == 'POST') {
29  $orig = new ArrayObject($_POST);
30  $data = $orig->getArrayCopy();
31 } elseif (strtoupper($_SERVER['REQUEST_METHOD']) == 'GET') {
32  $orig = new ArrayObject($_GET);
33  $data = $orig->getArrayCopy();
34  // early removing client_id from $_GET
35  // otherwise the client_id is interpreted as ILIAS client_id
36  // and client.ini.php will not be found
37  if (isset($_GET['client_id'])) {
38  unset($_GET['client_id']);
39  }
40 } else {
41  header($_SERVER["SERVER_PROTOCOL"] . " 405 Method Not Allowed", true, 405);
43 }
44 
46 
47 global $DIC;
48 
49 $ltiMessageHint = $data['lti_message_hint'];
50 
51 if (empty($ltiMessageHint)) {
52  $DIC->http()->saveResponse(
53  $DIC->http()->response()
54  ->withStatus(400)
55  );
56  try {
57  $DIC->http()->sendResponse();
58  $DIC->http()->close();
59  } catch (\ILIAS\HTTP\Response\Sender\ResponseSendingException $e) {
60  $DIC->http()->close();
61  }
62 }
63 $mh = explode(":", $ltiMessageHint);
65 $ref_id = '';
68 if (count($mh) == 2) { // launch message auth
69  list($ref_id, $client_id) = explode(":", $ltiMessageHint);
70 } else { // contentSelection message auth
71  $isContentSelection = true;
72  list($ref_id, $client_id, $redirect_uri) = explode(":", $ltiMessageHint);
73 }
74 
75 ilSession::set('lti13_login_data', $data);
77  $url = "../../../" . base64_decode($redirect_uri);
78 } else {
79  $url = "../../../goto.php?target=lti_" . $ref_id . "&client_id=" . $client_id;
80 }
81 
82 $DIC->http()->saveResponse(
83  $DIC->http()->response()
84  ->withStatus(302)
85  ->withAddedHeader('Location', $url)
86 );
87 try {
88  $DIC->http()->sendResponse();
89  $DIC->http()->close();
90 } catch (\ILIAS\HTTP\Response\Sender\ResponseSendingException $e) {
91  $DIC->http()->close();
92 }
if(empty($ltiMessageHint)) $mh
Definition: ltiauth.php:63
$_GET["client_id"]
Definition: webdav.php:30
$redirect_uri
Definition: ltiauth.php:67
Interface Observer Contains several chained tasks and infos about them.
$isContentSelection
Definition: ltiauth.php:64
global $DIC
Definition: ltiauth.php:47
$url
Definition: shib_logout.php:66
static initILIAS()
ilias initialisation
$ref_id
Definition: ltiauth.php:65
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
$ltiMessageHint
Definition: ltiauth.php:49
$client_id
Definition: ltiauth.php:66
exit
Definition: ltiauth.php:42
header()
expected output: > ILIAS shows the rendered Component.
Definition: header.php:29
static set(string $a_var, $a_val)
Set a value.