2017-10-06 04:09:43 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\API\Remote;
|
|
|
|
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
2017-10-07 04:57:53 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
|
2017-10-06 04:09:43 +00:00
|
|
|
use Pterodactyl\Services\Services\Options\OptionConfigurationFileService;
|
|
|
|
|
|
|
|
class OptionRetrievalController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Services\Options\OptionConfigurationFileService
|
|
|
|
*/
|
|
|
|
protected $configurationFileService;
|
|
|
|
|
|
|
|
/**
|
2017-10-07 04:57:53 +00:00
|
|
|
* @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface
|
2017-10-06 04:09:43 +00:00
|
|
|
*/
|
|
|
|
protected $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OptionUpdateController constructor.
|
|
|
|
*
|
2017-10-07 04:57:53 +00:00
|
|
|
* @param \Pterodactyl\Contracts\Repository\EggRepositoryInterface $repository
|
2017-10-06 04:09:43 +00:00
|
|
|
* @param \Pterodactyl\Services\Services\Options\OptionConfigurationFileService $configurationFileService
|
|
|
|
*/
|
|
|
|
public function __construct(
|
2017-10-07 04:57:53 +00:00
|
|
|
EggRepositoryInterface $repository,
|
2017-10-06 04:09:43 +00:00
|
|
|
OptionConfigurationFileService $configurationFileService
|
|
|
|
) {
|
|
|
|
$this->configurationFileService = $configurationFileService;
|
|
|
|
$this->repository = $repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a JSON array of service options and the SHA1 hash of thier configuration file.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
|
|
|
public function index(): JsonResponse
|
|
|
|
{
|
|
|
|
$options = $this->repository->getAllWithCopyAttributes();
|
|
|
|
|
|
|
|
$response = [];
|
|
|
|
$options->each(function ($option) use (&$response) {
|
|
|
|
$response[$option->uuid] = sha1(json_encode($this->configurationFileService->handle($option)));
|
|
|
|
});
|
|
|
|
|
|
|
|
return response()->json($response);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the configuration file for a single service option for the Daemon.
|
|
|
|
*
|
|
|
|
* @param string $uuid
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
|
|
|
public function download(string $uuid): JsonResponse
|
|
|
|
{
|
|
|
|
$option = $this->repository->getWithCopyAttributes($uuid, 'uuid');
|
|
|
|
|
|
|
|
return response()->json($this->configurationFileService->handle($option));
|
|
|
|
}
|
|
|
|
}
|