mirror of
https://github.com/flarum/core.git
synced 2025-10-11 15:04:25 +02:00
Also ensure backwards compatibility for extensions that use the Zend framework but don't explicitly require it.
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Api\Controller;
|
|
|
|
use Flarum\Foundation\Application;
|
|
use Flarum\Settings\SettingsRepositoryInterface;
|
|
use Flarum\User\AssertPermissionTrait;
|
|
use Laminas\Diactoros\Response\EmptyResponse;
|
|
use League\Flysystem\Adapter\Local;
|
|
use League\Flysystem\Filesystem;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
|
|
class DeleteLogoController extends AbstractDeleteController
|
|
{
|
|
use AssertPermissionTrait;
|
|
|
|
/**
|
|
* @var SettingsRepositoryInterface
|
|
*/
|
|
protected $settings;
|
|
|
|
/**
|
|
* @var Application
|
|
*/
|
|
protected $app;
|
|
|
|
/**
|
|
* @param SettingsRepositoryInterface $settings
|
|
*/
|
|
public function __construct(SettingsRepositoryInterface $settings, Application $app)
|
|
{
|
|
$this->settings = $settings;
|
|
$this->app = $app;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function delete(ServerRequestInterface $request)
|
|
{
|
|
$this->assertAdmin($request->getAttribute('actor'));
|
|
|
|
$path = $this->settings->get('logo_path');
|
|
|
|
$this->settings->set('logo_path', null);
|
|
|
|
$uploadDir = new Filesystem(new Local($this->app->publicPath().'/assets'));
|
|
|
|
if ($uploadDir->has($path)) {
|
|
$uploadDir->delete($path);
|
|
}
|
|
|
|
return new EmptyResponse(204);
|
|
}
|
|
}
|