src/MessageValidators/SubmissionReviewMessageValidator.php
<?php
namespace Packback\Lti1p3\MessageValidators;
use Packback\Lti1p3\LtiConstants;
use Packback\Lti1p3\LtiException;
class SubmissionReviewMessageValidator extends AbstractMessageValidator
{
public static function getMessageType(): string
{
return LtiConstants::MESSAGE_TYPE_SUBMISSIONREVIEW;
}
/**
* @throws LtiException
*/
public static function validate(array $jwtBody): void
{
static::validateGenericMessage($jwtBody);
if (empty($jwtBody[LtiConstants::RESOURCE_LINK]['id'])) {
throw new LtiException('Missing Resource Link Id');
}
if (empty($jwtBody[LtiConstants::FOR_USER])) {
throw new LtiException('Missing For User');
}
}
}