208 $platform->secret =
'secret';
209 $platform->enabled =
true;
211 $platform->created = $now;
212 $platform->updated = $now;
224 $platform->updated = time();
263 $context->created = $now;
264 $context->updated = $now;
276 $context->updated = time();
294 ### ResourceLink methods 305 $resourceLink->created = $now;
306 $resourceLink->updated = $now;
318 $resourceLink->updated = time();
360 ### PlatformNonce methods 445 ### AccessToken methods 469 ### ResourceLinkShareKey methods 503 ### UserResult methods 514 $userresult->created = $now;
515 $userresult->updated = $now;
527 $userresult->updated = time();
555 $tool->secret =
'secret';
556 $tool->enabled =
true;
558 $tool->created = $now;
559 $tool->updated = $now;
571 $tool->updated = time();
616 if (is_null($dbTableNamePrefix)) {
617 $dbTableNamePrefix =
'';
619 if (!is_null(
$db) && empty(
$type)) {
620 if (is_object(
$db)) {
622 } elseif (is_resource(
$db)) {
623 $type = strtok(get_resource_type(
$db),
' ');
627 if (
$type ===
'pdo') {
628 if (
$db->getAttribute(\PDO::ATTR_DRIVER_NAME) ===
'pgsql') {
630 } elseif (
$db->getAttribute(\PDO::ATTR_DRIVER_NAME) ===
'oci') {
635 $type =
"DataConnector_{$type}";
637 $type =
'DataConnector';
639 $type =
"\\ceLTIc\\LTI\\DataConnector\\{$type}";
672 public function escape(
string $value,
bool $addQuotes =
true): string
674 return static::quoted($value, $addQuotes);
685 public static function quoted(
string $value,
bool $addQuotes =
true): string
687 if (is_null($value)) {
690 $value = str_replace(
'\'',
'\'\
'', $value);
692 $value =
"'{$value}'";
707 $platform->authorizationServerId = $platform->getSetting(
'_authorization_server_id', $platform->authorizationServerId);
708 $platform->setSetting(
'_authorization_server_id');
709 $platform->authenticationUrl = $platform->getSetting(
'_authentication_request_url', $platform->authenticationUrl);
710 $platform->setSetting(
'_authentication_request_url');
711 $platform->accessTokenUrl = $platform->getSetting(
'_oauth2_access_token_url', $platform->accessTokenUrl);
712 $platform->setSetting(
'_oauth2_access_token_url');
713 $platform->jku = $platform->getSetting(
'_jku', $platform->jku);
714 $platform->setSetting(
'_jku');
715 $platform->encryptionMethod = $platform->getSetting(
'_encryption_method', $platform->encryptionMethod);
716 $platform->setSetting(
'_encryption_method');
717 $platform->debugMode = $platform->getSetting(
'_debug', $platform->debugMode ?
'true' :
'false') ===
'true';
718 $platform->setSetting(
'_debug');
719 if ($platform->debugMode) {
723 $platform->setSetting(
724 '_authorization_server_id',
725 !empty($platform->authorizationServerId) ? $platform->authorizationServerId : null
727 $platform->setSetting(
728 '_authentication_request_url',
729 !empty($platform->authenticationUrl) ? $platform->authenticationUrl : null
731 $platform->setSetting(
'_oauth2_access_token_url', !empty($platform->accessTokenUrl) ? $platform->accessTokenUrl : null);
732 $platform->setSetting(
'_jku', !empty($platform->jku) ? $platform->jku : null);
733 $platform->setSetting(
'_encryption_method', !empty($platform->encryptionMethod) ? $platform->encryptionMethod : null);
734 $platform->setSetting(
'_debug', $platform->debugMode ?
'true' : null);
746 $tool->encryptionMethod = $tool->getSetting(
'_encryption_method', $tool->encryptionMethod);
747 $tool->setSetting(
'_encryption_method');
748 $tool->debugMode = $tool->getSetting(
'_debug', $tool->debugMode ?
'true' :
'false') ===
'true';
749 $tool->setSetting(
'_debug');
750 if ($tool->debugMode) {
754 $tool->setSetting(
'_encryption_method', !empty($tool->encryptionMethod) ? $tool->encryptionMethod : null);
755 $tool->setSetting(
'_debug', $tool->debugMode ?
'true' : null);
initialize()
Initialise the context.
Class to represent a platform context.