2018-03-04 22:30:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Tests\Integration\Api\Application;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\User;
|
|
|
|
use Pterodactyl\Models\ApiKey;
|
|
|
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
|
|
|
use Pterodactyl\Tests\Integration\IntegrationTestCase;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2021-01-23 20:09:16 +00:00
|
|
|
use Pterodactyl\Tests\Traits\Integration\CreatesTestModels;
|
|
|
|
use Pterodactyl\Tests\Traits\Http\IntegrationJsonRequestAssertions;
|
2018-03-04 22:30:16 +00:00
|
|
|
|
|
|
|
abstract class ApplicationApiIntegrationTestCase extends IntegrationTestCase
|
|
|
|
{
|
2021-01-23 20:33:34 +00:00
|
|
|
use CreatesTestModels;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use IntegrationJsonRequestAssertions;
|
2018-03-04 22:30:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Models\ApiKey
|
|
|
|
*/
|
|
|
|
private $key;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Models\User
|
|
|
|
*/
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bootstrap application API tests. Creates a default admin user and associated API key
|
|
|
|
* and also sets some default headers required for accessing the API.
|
|
|
|
*/
|
2020-05-09 16:00:52 +00:00
|
|
|
public function setUp(): void
|
2018-03-04 22:30:16 +00:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->user = $this->createApiUser();
|
|
|
|
$this->key = $this->createApiKey($this->user);
|
|
|
|
|
|
|
|
$this->withHeader('Accept', 'application/vnd.pterodactyl.v1+json');
|
|
|
|
$this->withHeader('Authorization', 'Bearer ' . $this->getApiKey()->identifier . decrypt($this->getApiKey()->token));
|
|
|
|
|
|
|
|
$this->withMiddleware('api..key:' . ApiKey::TYPE_APPLICATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Pterodactyl\Models\User
|
|
|
|
*/
|
|
|
|
public function getApiUser(): User
|
|
|
|
{
|
|
|
|
return $this->user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Pterodactyl\Models\ApiKey
|
|
|
|
*/
|
|
|
|
public function getApiKey(): ApiKey
|
|
|
|
{
|
|
|
|
return $this->key;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new default API key and refreshes the headers using it.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\User $user
|
2021-01-03 18:34:07 +00:00
|
|
|
* @param array $permissions
|
|
|
|
*
|
2018-03-04 22:30:16 +00:00
|
|
|
* @return \Pterodactyl\Models\ApiKey
|
|
|
|
*/
|
|
|
|
protected function createNewDefaultApiKey(User $user, array $permissions = []): ApiKey
|
|
|
|
{
|
|
|
|
$this->key = $this->createApiKey($user, $permissions);
|
|
|
|
$this->refreshHeaders($this->key);
|
|
|
|
|
|
|
|
return $this->key;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Refresh the authorization header for a request to use a different API key.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\ApiKey $key
|
|
|
|
*/
|
|
|
|
protected function refreshHeaders(ApiKey $key)
|
|
|
|
{
|
|
|
|
$this->withHeader('Authorization', 'Bearer ' . $key->identifier . decrypt($key->token));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an administrative user.
|
|
|
|
*
|
|
|
|
* @return \Pterodactyl\Models\User
|
|
|
|
*/
|
|
|
|
protected function createApiUser(): User
|
|
|
|
{
|
2021-01-23 20:09:16 +00:00
|
|
|
return User::factory()->create([
|
2018-03-04 22:30:16 +00:00
|
|
|
'root_admin' => true,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new application API key for a given user model.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\User $user
|
2021-01-03 18:34:07 +00:00
|
|
|
* @param array $permissions
|
|
|
|
*
|
2018-03-04 22:30:16 +00:00
|
|
|
* @return \Pterodactyl\Models\ApiKey
|
|
|
|
*/
|
|
|
|
protected function createApiKey(User $user, array $permissions = []): ApiKey
|
|
|
|
{
|
2021-01-23 20:09:16 +00:00
|
|
|
return ApiKey::factory()->create(array_merge([
|
2018-03-04 22:30:16 +00:00
|
|
|
'user_id' => $user->id,
|
|
|
|
'key_type' => ApiKey::TYPE_APPLICATION,
|
|
|
|
'r_servers' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_nodes' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_allocations' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_users' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_locations' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_nests' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_eggs' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_database_hosts' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'r_server_databases' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
], $permissions));
|
|
|
|
}
|
|
|
|
}
|