mirror of
https://github.com/flarum/core.git
synced 2025-05-08 00:15:24 +02:00
66 lines
1.6 KiB
PHP
66 lines
1.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Api\Controller;
|
|
|
|
use Flarum\Core\Access\AssertPermissionTrait;
|
|
use Flarum\Event\PrepareSerializedSetting;
|
|
use Flarum\Event\SettingWasSet;
|
|
use Flarum\Http\Controller\ControllerInterface;
|
|
use Flarum\Settings\SettingsRepositoryInterface;
|
|
use Illuminate\Contracts\Events\Dispatcher;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Zend\Diactoros\Response\EmptyResponse;
|
|
|
|
class SetSettingsController implements ControllerInterface
|
|
{
|
|
use AssertPermissionTrait;
|
|
|
|
/**
|
|
* @var \Flarum\Settings\SettingsRepositoryInterface
|
|
*/
|
|
protected $settings;
|
|
|
|
/**
|
|
* @var Dispatcher
|
|
*/
|
|
protected $dispatcher;
|
|
|
|
/**
|
|
* @param SettingsRepositoryInterface $settings
|
|
*/
|
|
public function __construct(SettingsRepositoryInterface $settings, Dispatcher $dispatcher)
|
|
{
|
|
$this->settings = $settings;
|
|
$this->dispatcher = $dispatcher;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function handle(ServerRequestInterface $request)
|
|
{
|
|
$this->assertAdmin($request->getAttribute('actor'));
|
|
|
|
$settings = $request->getParsedBody();
|
|
|
|
foreach ($settings as $k => $v) {
|
|
$this->dispatcher->fire(new PrepareSerializedSetting($k, $v));
|
|
|
|
$this->settings->set($k, $v);
|
|
|
|
$this->dispatcher->fire(new SettingWasSet($k, $v));
|
|
}
|
|
|
|
return new EmptyResponse(204);
|
|
}
|
|
}
|