mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-30 19:36:40 +03:00
52 lines
1.7 KiB
PHP
52 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioApiTest\Shlink\Rest\Fixtures;
|
|
|
|
use Cake\Chronos\Chronos;
|
|
use Doctrine\Common\DataFixtures\AbstractFixture;
|
|
use Doctrine\Common\DataFixtures\DependentFixtureInterface;
|
|
use Doctrine\Persistence\ObjectManager;
|
|
use Shlinkio\Shlink\Core\Entity\Domain;
|
|
use Shlinkio\Shlink\Rest\ApiKey\Model\RoleDefinition;
|
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
|
|
|
class ApiKeyFixture extends AbstractFixture implements DependentFixtureInterface
|
|
{
|
|
public function getDependencies(): array
|
|
{
|
|
return [DomainFixture::class];
|
|
}
|
|
|
|
public function load(ObjectManager $manager): void
|
|
{
|
|
$manager->persist($this->buildApiKey('valid_api_key', true));
|
|
$manager->persist($this->buildApiKey('disabled_api_key', false));
|
|
$manager->persist($this->buildApiKey('expired_api_key', true, Chronos::now()->subDay()));
|
|
|
|
$authorApiKey = $this->buildApiKey('author_api_key', true);
|
|
$authorApiKey->registerRole(RoleDefinition::forAuthoredShortUrls());
|
|
$manager->persist($authorApiKey);
|
|
$this->addReference('author_api_key', $authorApiKey);
|
|
|
|
/** @var Domain $exampleDomain */
|
|
$exampleDomain = $this->getReference('example_domain');
|
|
$domainApiKey = $this->buildApiKey('domain_api_key', true);
|
|
$domainApiKey->registerRole(RoleDefinition::forDomain($exampleDomain));
|
|
$manager->persist($domainApiKey);
|
|
|
|
$manager->flush();
|
|
}
|
|
|
|
private function buildApiKey(string $key, bool $enabled, ?Chronos $expiresAt = null): ApiKey
|
|
{
|
|
$apiKey = ApiKey::withKey($key, $expiresAt);
|
|
|
|
if (! $enabled) {
|
|
$apiKey->disable();
|
|
}
|
|
|
|
return $apiKey;
|
|
}
|
|
}
|