mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-18 01:28:58 +00:00
54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace OCA\Forum\Controller;
|
|
|
|
use OCA\Forum\Service\AdminSettingsService;
|
|
use OCP\AppFramework\Http;
|
|
use OCP\AppFramework\Http\Attribute\ApiRoute;
|
|
use OCP\AppFramework\Http\Attribute\NoAdminRequired;
|
|
use OCP\AppFramework\Http\Attribute\PublicPage;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
use OCP\AppFramework\OCSController;
|
|
use OCP\IRequest;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
class SettingsController extends OCSController {
|
|
|
|
public function __construct(
|
|
string $appName,
|
|
IRequest $request,
|
|
private AdminSettingsService $settingsService,
|
|
private LoggerInterface $logger,
|
|
) {
|
|
parent::__construct($appName, $request);
|
|
}
|
|
|
|
/**
|
|
* Get public forum settings (title, subtitle, and guest access)
|
|
*
|
|
* This endpoint is publicly accessible to all users.
|
|
* For admin-only settings, use AdminController::getSettings()
|
|
*
|
|
* @return DataResponse<Http::STATUS_OK, array{title: string, subtitle: string, allow_guest_access: bool}, array{}>
|
|
*
|
|
* 200: Settings retrieved successfully
|
|
*/
|
|
#[NoAdminRequired]
|
|
#[PublicPage]
|
|
#[ApiRoute(verb: 'GET', url: '/api/settings')]
|
|
public function getPublicSettings(): DataResponse {
|
|
try {
|
|
$settings = $this->settingsService->getAllSettings();
|
|
return new DataResponse($settings);
|
|
} catch (\Exception $e) {
|
|
$this->logger->error('Error fetching public settings: ' . $e->getMessage());
|
|
return new DataResponse(['error' => 'Failed to fetch settings'], Http::STATUS_INTERNAL_SERVER_ERROR);
|
|
}
|
|
}
|
|
}
|