mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 00:34:44 +02:00

* Not found property rule * Make these “better” * Day 1 * Day 2 * Day 3 * Dat 4 * Remove disabled check * Day 4 continued * Run pint * Final changes hopefully * Pint fixes * Fix again * Reset these * Update app/Filament/Admin/Pages/Health.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> * Update app/Traits/CheckMigrationsTrait.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> --------- Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com>
110 lines
3.5 KiB
PHP
110 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\Application\Servers;
|
|
|
|
use Illuminate\Http\Response;
|
|
use App\Models\Server;
|
|
use App\Models\Database;
|
|
use Illuminate\Http\JsonResponse;
|
|
use App\Services\Databases\DatabasePasswordService;
|
|
use App\Services\Databases\DatabaseManagementService;
|
|
use App\Transformers\Api\Application\ServerDatabaseTransformer;
|
|
use App\Http\Controllers\Api\Application\ApplicationApiController;
|
|
use App\Http\Requests\Api\Application\Servers\Databases\GetServerDatabaseRequest;
|
|
use App\Http\Requests\Api\Application\Servers\Databases\GetServerDatabasesRequest;
|
|
use App\Http\Requests\Api\Application\Servers\Databases\ServerDatabaseWriteRequest;
|
|
use App\Http\Requests\Api\Application\Servers\Databases\StoreServerDatabaseRequest;
|
|
use Dedoc\Scramble\Attributes\Group;
|
|
|
|
#[Group('Server - Database')]
|
|
class DatabaseController extends ApplicationApiController
|
|
{
|
|
/**
|
|
* DatabaseController constructor.
|
|
*/
|
|
public function __construct(
|
|
private DatabaseManagementService $databaseManagementService,
|
|
private DatabasePasswordService $databasePasswordService
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* List databases
|
|
*
|
|
* Return a listing of all databases currently available to a single server.
|
|
*
|
|
* @return array<array-key, mixed>
|
|
*/
|
|
public function index(GetServerDatabasesRequest $request, Server $server): array
|
|
{
|
|
return $this->fractal->collection($server->databases)
|
|
->transformWith($this->getTransformer(ServerDatabaseTransformer::class))
|
|
->toArray();
|
|
}
|
|
|
|
/**
|
|
* View database
|
|
*
|
|
* Return a single server database.
|
|
*
|
|
* @return array<array-key, mixed>
|
|
*/
|
|
public function view(GetServerDatabaseRequest $request, Server $server, Database $database): array
|
|
{
|
|
return $this->fractal->item($database)
|
|
->transformWith($this->getTransformer(ServerDatabaseTransformer::class))
|
|
->toArray();
|
|
}
|
|
|
|
/**
|
|
* Reset password
|
|
*
|
|
* Reset the password for a specific server database.
|
|
*
|
|
* @throws \Throwable
|
|
*/
|
|
public function resetPassword(ServerDatabaseWriteRequest $request, Server $server, Database $database): JsonResponse
|
|
{
|
|
$this->databasePasswordService->handle($database);
|
|
|
|
return new JsonResponse([], JsonResponse::HTTP_NO_CONTENT);
|
|
}
|
|
|
|
/**
|
|
* Create database
|
|
*
|
|
* Create a new database on the Panel for a given server.
|
|
*
|
|
* @throws \Throwable
|
|
*/
|
|
public function store(StoreServerDatabaseRequest $request, Server $server): JsonResponse
|
|
{
|
|
$database = $this->databaseManagementService->create($server, array_merge($request->validated(), [
|
|
'database' => $request->databaseName(),
|
|
]));
|
|
|
|
return $this->fractal->item($database)
|
|
->transformWith($this->getTransformer(ServerDatabaseTransformer::class))
|
|
->addMeta([
|
|
'resource' => route('api.application.servers.databases.view', [
|
|
'server' => $server->id,
|
|
'database' => $database->id,
|
|
]),
|
|
])
|
|
->respond(Response::HTTP_CREATED);
|
|
}
|
|
|
|
/**
|
|
* Delete database
|
|
*
|
|
* Handle a request to delete a specific server database from the Panel.
|
|
*/
|
|
public function delete(ServerDatabaseWriteRequest $request, Server $server, Database $database): Response
|
|
{
|
|
$this->databaseManagementService->delete($database);
|
|
|
|
return response('', 204);
|
|
}
|
|
}
|