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;
|
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;
|
|
|
|
}
|
|
|
|
|
2022-04-21 22:20:21 +00:00
|
|
|
public function update(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
|
|
|
|
2021-12-06 17:07:43 +00:00
|
|
|
return response()->noContent();
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
}
|