28 lines
849 B
PHP
28 lines
849 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controller\Share;
|
|
|
|
use App\Repository\ShareConfigurationRepository;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Symfony\Component\Security\Http\Attribute\IsGranted;
|
|
|
|
class ShareStatusController extends AbstractController
|
|
{
|
|
public function __construct(
|
|
private readonly ShareConfigurationRepository $configRepository,
|
|
) {}
|
|
|
|
#[Route('/api/share/status', name: 'share_status', methods: ['GET'], priority: 1)]
|
|
#[IsGranted('IS_AUTHENTICATED_FULLY')]
|
|
public function __invoke(): JsonResponse
|
|
{
|
|
$config = $this->configRepository->findSingleton();
|
|
|
|
return new JsonResponse(['enabled' => null !== $config && $config->isUsable()]);
|
|
}
|
|
}
|