. */ namespace Plugin\ActivityPub\Util\Type\Validator; use Exception; use Plugin\ActivityPub\Util\Type\Core\ObjectType; use Plugin\ActivityPub\Util\Type\Util; use Plugin\ActivityPub\Util\Type\ValidatorInterface; /** * \Plugin\ActivityPub\Util\Type\Validator\GeneratorValidator is a dedicated * validator for generator attribute. */ class GeneratorValidator implements ValidatorInterface { /** * Validate a generator attribute value * * @param mixed $value * @param mixed $container * * @throws Exception * * @return bool */ public function validate(mixed $value, mixed $container): bool { // Validate that container has an ObjectType type Util::subclassOf($container, ObjectType::class, true); if (Util::validateUrl($value)) { return true; } if (is_array($value)) { $value = Util::arrayToType($value); } // MUST be a valid Actor type return Util::isActorType($value) || Util::validateLink($value); } }