refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
134
app/Http/Controllers/Api/Account/ApiGenderController.php
Normal file
134
app/Http/Controllers/Api/Account/ApiGenderController.php
Normal file
@@ -0,0 +1,134 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Api\Account;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Contact\Gender;
|
||||
use Illuminate\Database\QueryException;
|
||||
use App\Http\Controllers\Api\ApiController;
|
||||
use App\Services\Account\Gender\CreateGender;
|
||||
use App\Services\Account\Gender\UpdateGender;
|
||||
use App\Services\Account\Gender\DestroyGender;
|
||||
use Illuminate\Validation\ValidationException;
|
||||
use App\Http\Resources\Gender\Gender as GenderResource;
|
||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||
|
||||
class ApiGenderController extends ApiController
|
||||
{
|
||||
/**
|
||||
* Get the list of genders.
|
||||
*
|
||||
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection|\Illuminate\Http\JsonResponse
|
||||
*/
|
||||
public function index(Request $request)
|
||||
{
|
||||
try {
|
||||
$genders = auth()->user()->account->genders()
|
||||
->orderBy($this->sort, $this->sortDirection)
|
||||
->paginate($this->getLimitPerPage());
|
||||
} catch (QueryException $e) {
|
||||
return $this->respondInvalidQuery();
|
||||
}
|
||||
|
||||
return GenderResource::collection($genders);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the detail of a given gender.
|
||||
*
|
||||
* @param Request $request
|
||||
* @return GenderResource|\Illuminate\Http\JsonResponse
|
||||
*/
|
||||
public function show(Request $request, $genderId)
|
||||
{
|
||||
try {
|
||||
$gender = Gender::where('account_id', auth()->user()->account_id)
|
||||
->where('id', $genderId)
|
||||
->firstOrFail();
|
||||
} catch (ModelNotFoundException $e) {
|
||||
return $this->respondNotFound();
|
||||
}
|
||||
|
||||
return new GenderResource($gender);
|
||||
}
|
||||
|
||||
/**
|
||||
* Store the gender.
|
||||
*
|
||||
* @param Request $request
|
||||
* @return GenderResource|\Illuminate\Http\JsonResponse
|
||||
*/
|
||||
public function store(Request $request)
|
||||
{
|
||||
try {
|
||||
$gender = app(CreateGender::class)->execute(
|
||||
$request->except(['account_id'])
|
||||
+
|
||||
[
|
||||
'account_id' => auth()->user()->account_id,
|
||||
]
|
||||
);
|
||||
} catch (ModelNotFoundException $e) {
|
||||
return $this->respondNotFound();
|
||||
} catch (ValidationException $e) {
|
||||
return $this->respondValidatorFailed($e->validator);
|
||||
} catch (QueryException $e) {
|
||||
return $this->respondInvalidQuery();
|
||||
}
|
||||
|
||||
return new GenderResource($gender);
|
||||
}
|
||||
|
||||
/**
|
||||
* Update a gender.
|
||||
*
|
||||
* @param Request $request
|
||||
* @param int $genderId
|
||||
* @return GenderResource|\Illuminate\Http\JsonResponse
|
||||
*/
|
||||
public function update(Request $request, $genderId)
|
||||
{
|
||||
try {
|
||||
$gender = app(UpdateGender::class)->execute(
|
||||
$request->except(['account_id', 'gender_id'])
|
||||
+
|
||||
[
|
||||
'account_id' => auth()->user()->account_id,
|
||||
'gender_id' => $genderId,
|
||||
]
|
||||
);
|
||||
} catch (ModelNotFoundException $e) {
|
||||
return $this->respondNotFound();
|
||||
} catch (ValidationException $e) {
|
||||
return $this->respondValidatorFailed($e->validator);
|
||||
} catch (QueryException $e) {
|
||||
return $this->respondInvalidQuery();
|
||||
}
|
||||
|
||||
return new GenderResource($gender);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a gender.
|
||||
*
|
||||
* @param Request $request
|
||||
* @return \Illuminate\Http\JsonResponse
|
||||
*/
|
||||
public function destroy(Request $request, int $genderId)
|
||||
{
|
||||
try {
|
||||
app(DestroyGender::class)->execute([
|
||||
'account_id' => auth()->user()->account_id,
|
||||
'gender_id' => $genderId,
|
||||
]);
|
||||
} catch (ModelNotFoundException $e) {
|
||||
return $this->respondNotFound();
|
||||
} catch (ValidationException $e) {
|
||||
return $this->respondValidatorFailed($e->validator);
|
||||
} catch (QueryException $e) {
|
||||
return $this->respondInvalidQuery();
|
||||
}
|
||||
|
||||
return $this->respondObjectDeleted($genderId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user