-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProductSubCategoryController.php
113 lines (102 loc) · 4.28 KB
/
ProductSubCategoryController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
namespace App\Http\Controllers\Product;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Http\JsonResponse;
use App\Http\Controllers\BaseController;
use Illuminate\Validation\ValidationException;
use App\Http\Requests\Product\ProductSubCategoryValidate;
use App\Interfaces\Product\ProductSubCategoryServiceInterface;
class ProductSubCategoryController extends BaseController
{
/**
* @var ProductSubCategoryServiceInterface
*/
private $productSubCategoryService;
public function __construct(ProductSubCategoryServiceInterface $productSubCategoryService)
{
$this->productSubCategoryService = $productSubCategoryService;
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\JsonResponse|Response
*/
public function store(ProductSubCategoryValidate $request)
{
try {
$data = $this->productSubCategoryService->createProductSubCategory($request->all());
return $this->getResponseJson($data, 'sucess', '', [], Response::HTTP_CREATED);
} catch (ValidationException $validationException) {
return $this->getResponseJson([], 'error', $validationException->getMessage(), [], Response::HTTP_UNPROCESSABLE_ENTITY);
} catch (\Exception $exception) {
return $this->getResponseJson([], 'error', $exception->getMessage(), [], Response::HTTP_INTERNAL_SERVER_ERROR);
}
}
/**
* @OA\Get(
* path="/company",
* summary="List of zip codes by city",
* description="Get list of zip codes by city",
* @OA\Response(
* response=200,
* description="Success"
* )
* )
* @param Request $request
* @return JsonResponse
*/
public function index(Request $request)
{
try {
$data = $this->productSubCategoryService->showProductSubCategory($request->all());
return $this->getResponseJson($data, 'sucess', '', [], Response::HTTP_OK);
} catch (ValidationException $validationException) {
return $this->getResponseJson([], 'error', $validationException->getMessage(), [], Response::HTTP_UNPROCESSABLE_ENTITY);
} catch (\Exception $exception) {
return $this->getResponseJson([], 'error', $exception->getMessage(), [], Response::HTTP_INTERNAL_SERVER_ERROR);
}
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\JsonResponse
*/
public function update(ProductSubCategoryValidate $request, $prefix, int $id)
{
try {
$data = $this->productSubCategoryService->editProductSubCategory($request->all(), $id);
if ($data){
return $this->getResponseJson([], 'sucess', '', [], Response::HTTP_OK);
}
return $this->getResponseJson([], 'error', 'Update Error', [], Response::HTTP_UNPROCESSABLE_ENTITY);
} catch (ValidationException $validationException) {
return $this->getResponseJson([], 'error', $validationException->getMessage(), [], Response::HTTP_UNPROCESSABLE_ENTITY);
} catch (\Exception $exception) {
return $this->getResponseJson([], 'error', $exception->getMessage(), [], Response::HTTP_INTERNAL_SERVER_ERROR);
}
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\JsonResponse
*/
public function destroy($prefix, int $id)
{
try {
$data = $this->productSubCategoryService->deleteProductSubCategory($id);
if ($data){
return $this->getResponseJson([], 'sucess', '', [], Response::HTTP_OK);
}
return $this->getResponseJson([], 'error', 'Erro ao apagar usuário.', [], Response::HTTP_UNPROCESSABLE_ENTITY);
} catch (ValidationException $validationException) {
return $this->getResponseJson([], 'error', $validationException->getMessage(), [], Response::HTTP_UNPROCESSABLE_ENTITY);
} catch (\Exception $exception) {
return $this->getResponseJson([], 'error', $exception->getMessage(), [], Response::HTTP_INTERNAL_SERVER_ERROR);
}
}
}