landrok/activitypub

View on GitHub
src/ActivityPhp/Type/Validator/EndpointsValidator.php

Summary

Maintainability
A
0 mins
Test Coverage
A
95%
<?php

declare(strict_types=1);

/*
 * This file is part of the ActivityPhp package.
 *
 * Copyright (c) landrok at github.com/landrok
 *
 * For the full copyright and license information, please see
 * <https://github.com/landrok/activitypub/blob/master/LICENSE>.
 */

namespace ActivityPhp\Type\Validator;

use ActivityPhp\Type\Extended\AbstractActor;
use ActivityPhp\Type\Util;
use ActivityPhp\Type\ValidatorInterface;

/**
 * \ActivityPhp\Type\Validator\EndpointsValidator is a dedicated
 * validator for endpoints attribute.
 */
class EndpointsValidator implements ValidatorInterface
{
    /**
     * Validate ENDPOINTS value
     *
     * @param string|array $value
     * @param mixed  $container
     */
    public function validate($value, $container): bool
    {
        // Validate that container is an AbstractActor type
        Util::subclassOf($container, AbstractActor::class, true);

        // A link to a JSON-LD document
        if (Util::validateUrl($value)) {
            return true;
        }

        // A map
        return is_array($value)
            ? $this->validateObject($value)
            : false;
    }

    /**
     * Validate endpoints mapping
     */
    protected function validateObject(array $item): bool
    {
        foreach ($item as $key => $value) {

            switch ($key) {
                case 'proxyUrl':
                case 'oauthAuthorizationEndpoint':
                case 'oauthTokenEndpoint':
                case 'provideClientKey':
                case 'signClientKey':
                case 'sharedInbox':
                    if (! Util::validateUrl($value)) {
                        return false;
                    }
                    break;
                // All other keys are not allowed
                default:
                    return false;
            }

            if (is_numeric($key)) {
                return false;
            }
        }

        return true;
    }
}