19 declare(strict_types=1);
82 if ($this->availability == 0) {
95 $xml = simplexml_load_file(
'php://input');
96 $this->message_ref_id = (string) $xml->imsx_POXHeader->imsx_POXRequestHeaderInfo->imsx_messageIdentifier;
97 $request = current($xml->imsx_POXBody->children());
98 $this->operation = str_replace(
'Request',
'', $request->getName());
103 if (empty($this->result)) {
119 $result = $this->
checkSignature($this->fields[
'KEY'], $this->fields[
'SECRET']);
126 switch ($this->operation) {
131 case 'replaceResult':
156 $response = str_replace(
'{message_id}', md5((
string) rand(0, 999_999_999)),
$response);
161 header(
'Content-type: application/xml');
170 $result = (string) $request->resultRecord->result->resultScore->textString;
171 if (!is_numeric($result)) {
173 $severity =
"status";
174 $description =
"The result is not a number.";
175 } elseif ($result < 0 or $result > 1) {
177 $severity =
"status";
178 $description =
"The result is out of range from 0 to 1.";
180 $this->result->result = (float) $result;
181 $this->result->
save();
188 $lp_percentage = (
int) round(100 * $result);
194 $severity =
"status";
195 $description = sprintf(
"Score for %s is now %s", $this->result->id, $this->result->result);
199 $response = str_replace(
'{message_id}', md5((
string) rand(0, 999_999_999)),
$response);
206 header(
'Content-type: application/xml');
215 $this->result->result =
null;
216 $this->result->save();
223 $severity =
"status";
226 $response = str_replace(
'{message_id}', md5((
string) rand(0, 999_999_999)),
$response);
232 header(
'Content-type: application/xml');
244 return file_get_contents(
'./components/ILIAS/LTIConsumer/responses/' . $a_name);
255 $response = str_replace(
'{message_id}', md5((
string) rand(0, 999_999_999)),
$response);
259 header(
'Content-type: application/xml');
269 $response = str_replace(
'{message_id}', md5((
string) rand(0, 999_999_999)),
$response);
273 header(
'Content-type: application/xml');
282 header(
'HTTP/1.1 400 Bad Request');
283 header(
'Content-type: text/plain');
287 echo
'This is not a well-formed LTI Basic Outcomes Service request.';
297 header(
'HTTP/1.1 401 Unauthorized');
298 header(
'Content-type: text/plain');
302 echo
'This request could not be authorized.';
314 SELECT lti_ext_provider.availability, lti_consumer_settings.mastery_score 315 FROM lti_ext_provider, lti_consumer_settings 316 WHERE lti_ext_provider.id = lti_consumer_settings.provider_id 317 AND lti_consumer_settings.obj_id = %s 320 $res = $DIC->database()->queryF($query, array(
'integer'), array($a_obj_id));
322 if ($row = $DIC->database()->fetchAssoc(
$res)) {
337 SELECT lti_ext_provider.provider_key, lti_ext_provider.provider_secret, lti_consumer_settings.launch_key, lti_consumer_settings.launch_secret 338 FROM lti_ext_provider, lti_consumer_settings 339 WHERE lti_ext_provider.id = lti_consumer_settings.provider_id 340 AND lti_consumer_settings.obj_id = %s 343 $res = $DIC->database()->queryF($query, array(
'integer'), array($a_obj_id));
345 while ($row = $DIC->database()->fetchAssoc(
$res)) {
346 if (strlen($row[
"launch_key"]) > 0) {
347 $this->fields[
"KEY"] = $row[
"launch_key"];
349 $this->fields[
"KEY"] = $row[
"provider_key"];
351 if (strlen($row[
"launch_key"]) > 0) {
352 $this->fields[
"SECRET"] = $row[
"launch_secret"];
354 $this->fields[
"SECRET"] = $row[
"provider_secret"];
366 $store->add_consumer($a_key, $a_secret);
368 $server = new \ILIAS\LTIOAuth\OAuthServer($store);
369 $method = new \ILIAS\LTIOAuth\OAuthSignatureMethod_HMAC_SHA1();
370 $server->add_signature_method($method);
372 $request = \ILIAS\LTIOAuth\OAuthRequest::from_request();
374 $server->verify_request($request);
const LP_STATUS_COMPLETED_NUM
readFields(int $a_obj_id)
Read the LTI Consumer object fields.
respondUnknown()
Send a "unknown operation" response.
setMasteryScore(float $mastery_score)
respondBadRequest(?string $message=null)
Send a "bad request" response.
checkSignature(string $a_key, string $a_secret)
Check the reqest signature.
setAvailability(int $availability)
static getInstanceByToken(string $token)
deleteResult(\SimpleXMLElement $request)
Delete a stored result.
if(!file_exists('../ilias.ini.php'))
const LP_STATUS_IN_PROGRESS_NUM
respondUnauthorized(?string $message=null)
Send an "unauthorized" response.
readProperties(int $a_obj_id)
Read the LTI Consumer object properties.
save()
Save a result object.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
handleRequest()
Handle an incoming request from the LTI tool provider.
respondUnsupported()
Send a response that the operation is not supported This depends on the status of the object...
static getByKeys(int $a_obj_id, int $a_usr_id, ?bool $a_create=false)
Get a result by object and user key.
ilLTIConsumerResult $result
loadResponse($a_name)
Load the XML template for the response.
A Trivial memory-based store - no support for tokens.
static writeStatus(int $a_obj_id, int $a_user_id, int $a_status, int $a_percentage=0, bool $a_force_per=false, ?int &$a_old_status=self::LP_STATUS_NOT_ATTEMPTED_NUM)
Write status for user and object.
replaceResult(\SimpleXMLElement $request)
Replace a stored result.
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
readResult(\SimpleXMLElement $request)
Read a stored result.