-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFaqCategoryController.php
213 lines (173 loc) · 6.49 KB
/
FaqCategoryController.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
namespace App\Http\Controllers;
use App\DataTables\FaqCategoryDataTable;
use App\Http\Requests;
use App\Http\Requests\CreateFaqCategoryRequest;
use App\Http\Requests\UpdateFaqCategoryRequest;
use App\Repositories\FaqCategoryRepository;
use App\Repositories\CustomFieldRepository;
use Flash;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Response;
use Prettus\Validator\Exceptions\ValidatorException;
class FaqCategoryController extends Controller
{
/** @var FaqCategoryRepository */
private $faqCategoryRepository;
/**
* @var CustomFieldRepository
*/
private $customFieldRepository;
public function __construct(FaqCategoryRepository $faqCategoryRepo, CustomFieldRepository $customFieldRepo )
{
parent::__construct();
$this->faqCategoryRepository = $faqCategoryRepo;
$this->customFieldRepository = $customFieldRepo;
}
/**
* Display a listing of the FaqCategory.
*
* @param FaqCategoryDataTable $faqCategoryDataTable
* @return Response
*/
public function index(FaqCategoryDataTable $faqCategoryDataTable)
{
return $faqCategoryDataTable->render('faq_categories.index');
}
/**
* Show the form for creating a new FaqCategory.
*
* @return Response
*/
public function create()
{
$hasCustomField = in_array($this->faqCategoryRepository->model(),setting('custom_field_models',[]));
if($hasCustomField){
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->faqCategoryRepository->model());
$html = generateCustomField($customFields);
}
return view('faq_categories.create')->with("customFields", isset($html) ? $html : false);
}
/**
* Store a newly created FaqCategory in storage.
*
* @param CreateFaqCategoryRequest $request
*
* @return Response
*/
public function store(CreateFaqCategoryRequest $request)
{
$input = $request->all();
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->faqCategoryRepository->model());
try {
$faqCategory = $this->faqCategoryRepository->create($input);
$faqCategory->customFieldsValues()->createMany(getCustomFieldsValues($customFields,$request));
} catch (ValidatorException $e) {
Flash::error($e->getMessage());
}
Flash::success(__('lang.saved_successfully',['operator' => __('lang.faq_category')]));
return redirect(route('faqCategories.index'));
}
/**
* Display the specified FaqCategory.
*
* @param int $id
*
* @return Response
*/
public function show($id)
{
$faqCategory = $this->faqCategoryRepository->findWithoutFail($id);
if (empty($faqCategory)) {
Flash::error('Faq Category not found');
return redirect(route('faqCategories.index'));
}
return view('faq_categories.show')->with('faqCategory', $faqCategory);
}
/**
* Show the form for editing the specified FaqCategory.
*
* @param int $id
*
* @return Response
*/
public function edit($id)
{
$faqCategory = $this->faqCategoryRepository->findWithoutFail($id);
if (empty($faqCategory)) {
Flash::error(__('lang.not_found',['operator' => __('lang.faq_category')]));
return redirect(route('faqCategories.index'));
}
$customFieldsValues = $faqCategory->customFieldsValues()->with('customField')->get();
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->faqCategoryRepository->model());
$hasCustomField = in_array($this->faqCategoryRepository->model(),setting('custom_field_models',[]));
if($hasCustomField) {
$html = generateCustomField($customFields, $customFieldsValues);
}
return view('faq_categories.edit')->with('faqCategory', $faqCategory)->with("customFields", isset($html) ? $html : false);
}
/**
* Update the specified FaqCategory in storage.
*
* @param int $id
* @param UpdateFaqCategoryRequest $request
*
* @return Response
*/
public function update($id, UpdateFaqCategoryRequest $request)
{
$faqCategory = $this->faqCategoryRepository->findWithoutFail($id);
if (empty($faqCategory)) {
Flash::error('Faq Category not found');
return redirect(route('faqCategories.index'));
}
$input = $request->all();
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->faqCategoryRepository->model());
try {
$faqCategory = $this->faqCategoryRepository->update($input, $id);
foreach (getCustomFieldsValues($customFields, $request) as $value){
$faqCategory->customFieldsValues()
->updateOrCreate(['custom_field_id'=>$value['custom_field_id']],$value);
}
} catch (ValidatorException $e) {
Flash::error($e->getMessage());
}
Flash::success(__('lang.updated_successfully',['operator' => __('lang.faq_category')]));
return redirect(route('faqCategories.index'));
}
/**
* Remove the specified FaqCategory from storage.
*
* @param int $id
*
* @return Response
*/
public function destroy($id)
{
$faqCategory = $this->faqCategoryRepository->findWithoutFail($id);
if (empty($faqCategory)) {
Flash::error('Faq Category not found');
return redirect(route('faqCategories.index'));
}
$this->faqCategoryRepository->delete($id);
Flash::success(__('lang.deleted_successfully',['operator' => __('lang.faq_category')]));
return redirect(route('faqCategories.index'));
}
/**
* Remove Media of FaqCategory
* @param Request $request
*/
public function removeMedia(Request $request)
{
$input = $request->all();
$faqCategory = $this->faqCategoryRepository->findWithoutFail($input['id']);
try {
if($faqCategory->hasMedia($input['collection'])){
$faqCategory->getFirstMedia($input['collection'])->delete();
}
} catch (\Exception $e) {
Log::error($e->getMessage());
}
}
}