mirror of
https://github.com/flarum/core.git
synced 2025-07-22 17:21:27 +02:00
* WIP: Use Laravel filesystem interface where possible * Drop vendorFilesystem * Support getting URL of cloud-based logo and favicon * FilesystemAdapter should always be cloud * Get base avatar URL from filesystem adapter * Restore deleted getAsset method Co-authored-by: Alexander Skvortsov <askvortsov1@users.noreply.github.com>
59 lines
1.4 KiB
PHP
59 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\Http\RequestUtil;
|
|
use Flarum\Settings\SettingsRepositoryInterface;
|
|
use Illuminate\Contracts\Filesystem\Factory;
|
|
use Illuminate\Contracts\Filesystem\Filesystem;
|
|
use Laminas\Diactoros\Response\EmptyResponse;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
|
|
class DeleteLogoController extends AbstractDeleteController
|
|
{
|
|
/**
|
|
* @var SettingsRepositoryInterface
|
|
*/
|
|
protected $settings;
|
|
|
|
/**
|
|
* @var Filesystem
|
|
*/
|
|
protected $uploadDir;
|
|
|
|
/**
|
|
* @param SettingsRepositoryInterface $settings
|
|
* @param Factory $filesystemFactory
|
|
*/
|
|
public function __construct(SettingsRepositoryInterface $settings, Factory $filesystemFactory)
|
|
{
|
|
$this->settings = $settings;
|
|
$this->uploadDir = $filesystemFactory->disk('flarum-assets');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function delete(ServerRequestInterface $request)
|
|
{
|
|
RequestUtil::getActor($request)->assertAdmin();
|
|
|
|
$path = $this->settings->get('logo_path');
|
|
|
|
$this->settings->set('logo_path', null);
|
|
|
|
if ($this->uploadDir->exists($path)) {
|
|
$this->uploadDir->delete($path);
|
|
}
|
|
|
|
return new EmptyResponse(204);
|
|
}
|
|
}
|