2021-09-26 22:06:49 +02:00
|
|
|
<?php
|
|
|
|
|
2021-11-07 21:57:22 +01:00
|
|
|
namespace App\Api\v1\Controllers;
|
2021-09-26 22:06:49 +02:00
|
|
|
|
2021-10-11 23:11:52 +02:00
|
|
|
use App\Exceptions\DbEncryptionException;
|
|
|
|
use App\Services\DbEncryptionService;
|
2021-12-01 13:47:20 +01:00
|
|
|
use App\Services\SettingService;
|
2021-11-07 21:57:22 +01:00
|
|
|
use App\Api\v1\Requests\SettingStoreRequest;
|
|
|
|
use App\Api\v1\Requests\SettingUpdateRequest;
|
2021-09-26 22:06:49 +02:00
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
|
|
|
|
|
|
|
|
class SettingController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Settings Service instance.
|
|
|
|
*/
|
2021-12-01 13:47:20 +01:00
|
|
|
protected SettingService $settingService;
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*/
|
2021-12-01 13:47:20 +01:00
|
|
|
public function __construct(SettingService $settingService)
|
2021-09-26 22:06:49 +02:00
|
|
|
{
|
2021-12-01 13:47:20 +01:00
|
|
|
$this->settingService = $settingService;
|
2021-09-26 22:06:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List all settings
|
|
|
|
*
|
2021-11-26 11:18:58 +01:00
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$settings = $this->settingService->all();
|
|
|
|
$settingsResources = collect();
|
|
|
|
$settings->each(function ($item, $key) use ($settingsResources) {
|
|
|
|
$settingsResources->push([
|
2021-10-03 11:35:09 +02:00
|
|
|
'key' => $key,
|
|
|
|
'value' => $item
|
2021-09-26 22:06:49 +02:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
// return SettingResource::collection($tata);
|
|
|
|
return response()->json($settingsResources->all(), 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-11-26 11:18:58 +01:00
|
|
|
* Display a setting
|
2021-09-26 22:06:49 +02:00
|
|
|
*
|
2021-10-03 11:35:09 +02:00
|
|
|
* @param string $settingName
|
2021-11-26 11:18:58 +01:00
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
2021-10-03 11:35:09 +02:00
|
|
|
public function show($settingName)
|
2021-09-26 22:06:49 +02:00
|
|
|
{
|
2021-10-03 11:35:09 +02:00
|
|
|
$setting = $this->settingService->get($settingName);
|
2021-09-26 22:06:49 +02:00
|
|
|
|
2021-11-22 01:12:37 +01:00
|
|
|
if (is_null($setting)) {
|
2021-09-26 22:06:49 +02:00
|
|
|
abort(404);
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json([
|
2021-10-03 11:35:09 +02:00
|
|
|
'key' => $settingName,
|
|
|
|
'value' => $setting
|
2021-09-26 22:06:49 +02:00
|
|
|
], 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-11-26 11:18:58 +01:00
|
|
|
* Store a setting
|
|
|
|
*
|
|
|
|
* @param \App\Api\v1\Requests\SettingStoreRequest $request
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
|
|
|
public function store(SettingStoreRequest $request)
|
|
|
|
{
|
|
|
|
$validated = $request->validated();
|
|
|
|
|
2021-10-03 11:35:09 +02:00
|
|
|
$this->settingService->set($validated['key'], $validated['value']);
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
return response()->json([
|
2021-10-03 11:35:09 +02:00
|
|
|
'key' => $validated['key'],
|
|
|
|
'value' => $validated['value']
|
2021-09-26 22:06:49 +02:00
|
|
|
], 201);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-11-26 11:18:58 +01:00
|
|
|
* Update a setting
|
|
|
|
*
|
|
|
|
* @param \App\Api\v1\Requests\SettingUpdateRequest $request
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
2021-10-03 11:35:09 +02:00
|
|
|
public function update(SettingUpdateRequest $request, $settingName)
|
2021-09-26 22:06:49 +02:00
|
|
|
{
|
|
|
|
$validated = $request->validated();
|
|
|
|
|
2021-11-26 11:21:57 +01:00
|
|
|
$this->settingService->set($settingName, $validated['value']);
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
return response()->json([
|
2021-10-03 11:35:09 +02:00
|
|
|
'key' => $settingName,
|
|
|
|
'value' => $validated['value']
|
2021-09-26 22:06:49 +02:00
|
|
|
], 200);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-11-26 11:18:58 +01:00
|
|
|
* Delete a setting
|
|
|
|
*
|
|
|
|
* @param \App\Api\v1\Requests\SettingUpdateRequest $request
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
2021-10-03 11:35:09 +02:00
|
|
|
public function destroy($settingName)
|
2021-09-26 22:06:49 +02:00
|
|
|
{
|
2021-10-03 11:35:09 +02:00
|
|
|
$setting = $this->settingService->get($settingName);
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
if (is_null($setting)) {
|
|
|
|
abort(404);
|
|
|
|
}
|
|
|
|
|
2021-10-08 23:27:15 +02:00
|
|
|
$optionsConfig = config('2fauth.options');
|
2021-10-03 11:35:09 +02:00
|
|
|
if(array_key_exists($settingName, $optionsConfig)) {
|
2021-09-26 22:06:49 +02:00
|
|
|
return response()->json(
|
|
|
|
['message' => 'bad request',
|
|
|
|
'reason' => [__('errors.delete_user_setting_only')]
|
|
|
|
], 400);
|
|
|
|
}
|
|
|
|
|
2021-10-03 11:35:09 +02:00
|
|
|
$this->settingService->delete($settingName);
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
return response()->json(null, 204);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|