koel/app/Http/Controllers/API/SettingController.php

31 lines
817 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Http\Controllers\API;
use App\Http\Requests\API\SettingRequest;
use App\Models\Setting;
2018-08-19 15:26:34 +00:00
use App\Services\MediaSyncService;
2020-09-13 22:04:07 +00:00
use Illuminate\Http\Response;
2015-12-13 04:42:28 +00:00
class SettingController extends Controller
{
2021-06-05 10:47:56 +00:00
private MediaSyncService $mediaSyncService;
2018-08-19 15:26:34 +00:00
public function __construct(MediaSyncService $mediaSyncService)
{
$this->mediaSyncService = $mediaSyncService;
}
2020-09-13 22:04:07 +00:00
// @TODO: This should be a PUT request
2016-05-30 05:50:59 +00:00
public function store(SettingRequest $request)
2015-12-13 04:42:28 +00:00
{
2017-04-29 02:55:41 +00:00
Setting::set('media_path', rtrim(trim($request->media_path), '/'));
2015-12-13 04:42:28 +00:00
// In a next version we should opt for a "MediaPathChanged" event,
// but let's just do this async now.
2018-08-19 15:26:34 +00:00
$this->mediaSyncService->sync();
2015-12-13 04:42:28 +00:00
2020-09-13 22:04:07 +00:00
return response()->json(null, Response::HTTP_NO_CONTENT);
2015-12-13 04:42:28 +00:00
}
}