mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-03 05:35:25 +01:00
140 lines
3.2 KiB
PHP
140 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Api\v1\Controllers;
|
|
|
|
use App\Exceptions\DbEncryptionException;
|
|
use App\Services\DbEncryptionService;
|
|
use App\Services\SettingService;
|
|
use App\Api\v1\Requests\SettingStoreRequest;
|
|
use App\Api\v1\Requests\SettingUpdateRequest;
|
|
use App\Http\Controllers\Controller;
|
|
|
|
|
|
class SettingController extends Controller
|
|
{
|
|
|
|
/**
|
|
* The Settings Service instance.
|
|
*/
|
|
protected SettingService $settingService;
|
|
|
|
|
|
/**
|
|
* Create a new controller instance.
|
|
*/
|
|
public function __construct(SettingService $settingService)
|
|
{
|
|
$this->settingService = $settingService;
|
|
}
|
|
|
|
|
|
/**
|
|
* List all settings
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function index()
|
|
{
|
|
$settings = $this->settingService->all();
|
|
$settingsResources = collect();
|
|
$settings->each(function ($item, $key) use ($settingsResources) {
|
|
$settingsResources->push([
|
|
'key' => $key,
|
|
'value' => $item
|
|
]);
|
|
});
|
|
|
|
// return SettingResource::collection($tata);
|
|
return response()->json($settingsResources->all(), 200);
|
|
}
|
|
|
|
|
|
/**
|
|
* Display a setting
|
|
*
|
|
* @param string $settingName
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function show($settingName)
|
|
{
|
|
$setting = $this->settingService->get($settingName);
|
|
|
|
if (is_null($setting)) {
|
|
abort(404);
|
|
}
|
|
|
|
return response()->json([
|
|
'key' => $settingName,
|
|
'value' => $setting
|
|
], 200);
|
|
}
|
|
|
|
|
|
/**
|
|
* Store a setting
|
|
*
|
|
* @param \App\Api\v1\Requests\SettingStoreRequest $request
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function store(SettingStoreRequest $request)
|
|
{
|
|
$validated = $request->validated();
|
|
|
|
$this->settingService->set($validated['key'], $validated['value']);
|
|
|
|
return response()->json([
|
|
'key' => $validated['key'],
|
|
'value' => $validated['value']
|
|
], 201);
|
|
}
|
|
|
|
|
|
/**
|
|
* Update a setting
|
|
*
|
|
* @param \App\Api\v1\Requests\SettingUpdateRequest $request
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function update(SettingUpdateRequest $request, $settingName)
|
|
{
|
|
$validated = $request->validated();
|
|
|
|
$this->settingService->set($settingName, $validated['value']);
|
|
|
|
return response()->json([
|
|
'key' => $settingName,
|
|
'value' => $validated['value']
|
|
], 200);
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Delete a setting
|
|
*
|
|
* @param \App\Api\v1\Requests\SettingUpdateRequest $request
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function destroy($settingName)
|
|
{
|
|
$setting = $this->settingService->get($settingName);
|
|
|
|
if (is_null($setting)) {
|
|
abort(404);
|
|
}
|
|
|
|
$optionsConfig = config('2fauth.options');
|
|
if(array_key_exists($settingName, $optionsConfig)) {
|
|
return response()->json(
|
|
['message' => 'bad request',
|
|
'reason' => [__('errors.delete_user_setting_only')]
|
|
], 400);
|
|
}
|
|
|
|
$this->settingService->delete($settingName);
|
|
|
|
return response()->json(null, 204);
|
|
}
|
|
|
|
}
|