2018-01-19 03:36:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
use Illuminate\View\View;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Http\Response;
|
|
|
|
use Pterodactyl\Models\ApiKey;
|
|
|
|
use Illuminate\Http\RedirectResponse;
|
|
|
|
use Prologue\Alerts\AlertsMessageBag;
|
|
|
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
|
|
use Pterodactyl\Services\Api\KeyCreationService;
|
|
|
|
use Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface;
|
|
|
|
use Pterodactyl\Http\Requests\Admin\Api\StoreApplicationApiKeyRequest;
|
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
class ApiController extends Controller
|
2018-01-19 03:36:15 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Prologue\Alerts\AlertsMessageBag
|
|
|
|
*/
|
|
|
|
private $alert;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Api\KeyCreationService
|
|
|
|
*/
|
|
|
|
private $keyCreationService;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface
|
|
|
|
*/
|
|
|
|
private $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ApplicationApiController constructor.
|
|
|
|
*
|
2019-09-06 04:32:57 +00:00
|
|
|
* @param \Prologue\Alerts\AlertsMessageBag $alert
|
2018-01-19 03:36:15 +00:00
|
|
|
* @param \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface $repository
|
2019-09-06 04:32:57 +00:00
|
|
|
* @param \Pterodactyl\Services\Api\KeyCreationService $keyCreationService
|
2018-01-19 03:36:15 +00:00
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
AlertsMessageBag $alert,
|
|
|
|
ApiKeyRepositoryInterface $repository,
|
|
|
|
KeyCreationService $keyCreationService
|
|
|
|
) {
|
|
|
|
$this->alert = $alert;
|
|
|
|
$this->keyCreationService = $keyCreationService;
|
|
|
|
$this->repository = $repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render view showing all of a user's application API keys.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function index(Request $request): View
|
|
|
|
{
|
|
|
|
return view('admin.api.index', [
|
|
|
|
'keys' => $this->repository->getApplicationKeys($request->user()),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render view allowing an admin to create a new application API key.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\View\View
|
2018-05-13 16:30:53 +00:00
|
|
|
* @throws \ReflectionException
|
2018-01-19 03:36:15 +00:00
|
|
|
*/
|
|
|
|
public function create(): View
|
|
|
|
{
|
|
|
|
$resources = AdminAcl::getResourceList();
|
|
|
|
sort($resources);
|
|
|
|
|
|
|
|
return view('admin.api.new', [
|
|
|
|
'resources' => $resources,
|
|
|
|
'permissions' => [
|
|
|
|
'r' => AdminAcl::READ,
|
|
|
|
'rw' => AdminAcl::READ | AdminAcl::WRITE,
|
|
|
|
'n' => AdminAcl::NONE,
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store the new key and redirect the user back to the application key listing.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Http\Requests\Admin\Api\StoreApplicationApiKeyRequest $request
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
*/
|
|
|
|
public function store(StoreApplicationApiKeyRequest $request): RedirectResponse
|
|
|
|
{
|
|
|
|
$this->keyCreationService->setKeyType(ApiKey::TYPE_APPLICATION)->handle([
|
|
|
|
'memo' => $request->input('memo'),
|
|
|
|
'user_id' => $request->user()->id,
|
|
|
|
], $request->getKeyPermissions());
|
|
|
|
|
|
|
|
$this->alert->success('A new application API key has been generated for your account.')->flash();
|
|
|
|
|
|
|
|
return redirect()->route('admin.api.index');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete an application API key from the database.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
2019-09-06 04:32:57 +00:00
|
|
|
* @param string $identifier
|
2018-01-19 03:36:15 +00:00
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function delete(Request $request, string $identifier): Response
|
|
|
|
{
|
|
|
|
$this->repository->deleteApplicationKey($request->user(), $identifier);
|
|
|
|
|
|
|
|
return response('', 204);
|
|
|
|
}
|
|
|
|
}
|