__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Packback\Lti1p3\MessageValidators;
use Packback\Lti1p3\Interfaces\IMessageValidator;
use Packback\Lti1p3\LtiConstants;
use Packback\Lti1p3\LtiException;
abstract class AbstractMessageValidator implements IMessageValidator
{
abstract public static function getMessageType(): string;
public static function canValidate(array $jwtBody): bool
{
return $jwtBody[LtiConstants::MESSAGE_TYPE] === static::getMessageType();
}
abstract public static function validate(array $jwtBody): void;
/**
* @throws LtiException
*/
public static function validateGenericMessage(array $jwtBody): void
{
if (empty($jwtBody['sub'])) {
throw new LtiException('Must have a user (sub)');
}
if (!isset($jwtBody[LtiConstants::VERSION])) {
throw new LtiException('Missing LTI Version');
}
if ($jwtBody[LtiConstants::VERSION] !== LtiConstants::V1_3) {
throw new LtiException('Incorrect version, expected 1.3.0');
}
if (!isset($jwtBody[LtiConstants::ROLES])) {
throw new LtiException('Missing Roles Claim');
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AbstractMessageValidator.php | File | 1.14 KB | 0777 |
|
| DeepLinkMessageValidator.php | File | 1.2 KB | 0777 |
|
| ResourceMessageValidator.php | File | 612 B | 0777 |
|
| SubmissionReviewMessageValidator.php | File | 749 B | 0777 |
|