Total Complexity | 40 |
Total Lines | 232 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
Complex classes like ProductCategoryController often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ProductCategoryController, and based on these observations, apply Extract Interface, too.
1 | <?php namespace App\Http\Controllers\Backend; |
||
19 | class ProductCategoryController extends Controller |
||
20 | { |
||
21 | public function index(Request $request) |
||
22 | { |
||
23 | if ($request->wantsJson()) { |
||
24 | |||
25 | $productCategory = ProductCategoryService::getModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id); |
||
26 | |||
27 | $datatables = DataTables::of($productCategory) |
||
28 | |||
29 | ->addColumn('image', function ($productCategory) { |
||
30 | if ($productCategory->productCategoryImages->count()) { |
||
31 | return '<img src="/files/product_category/100x100/'.$productCategory->id.'/'.$productCategory->productCategoryImages->first()->file.'" />'; |
||
32 | } |
||
33 | }) |
||
34 | |||
35 | ->addColumn('title', function ($productCategory) { |
||
36 | |||
37 | $categoryTitle = $productCategory->title; |
||
38 | if ($productCategory->refProductCategory) { |
||
39 | $categoryTitle = '<strong>Redirect:</strong> '.$productCategory->title.' → '.$productCategory->refProductCategory->title; |
||
40 | } elseif ($productCategory->isRoot()) { |
||
41 | $categoryTitle = '<strong>Root:</strong> '.$productCategory->title; |
||
42 | } elseif ($productCategory->isChild()) { |
||
43 | $categoryTitle = '<strong>Child:</strong> '.$productCategory->title; |
||
44 | } |
||
45 | |||
46 | return $categoryTitle; |
||
47 | }) |
||
48 | |||
49 | ->addColumn('products', function ($productCategory) { |
||
50 | return $productCategory->products->count(); |
||
51 | }) |
||
52 | ->addColumn('parent', function ($productCategory) { |
||
53 | |||
54 | if ($productCategory->parent()->count()) { |
||
55 | return $productCategory->parent()->first()->title; |
||
56 | } |
||
57 | }) |
||
58 | |||
59 | ->addColumn('active', function ($product) { |
||
60 | if ($product->active) { |
||
61 | return '<a href="#" class="change-active" data-url="/admin/product-category/change-active/'.$product->id.'"><span class="glyphicon glyphicon-ok icon-green"></span></a>'; |
||
62 | } |
||
63 | |||
64 | return '<a href="#" class="change-active" data-url="/admin/product-category/change-active/'.$product->id.'"><span class="glyphicon glyphicon-remove icon-red"></span></a>'; |
||
65 | }) |
||
66 | |||
67 | |||
68 | ->addColumn('seo', function ($productCategory) { |
||
69 | if ($productCategory->meta_title && $productCategory->meta_description) { |
||
70 | return '<i class="fa fa-check"></i>'; |
||
71 | } |
||
72 | }) |
||
73 | ->addColumn('action', function ($productCategory) { |
||
74 | $deleteLink = Form::deleteajax(url()->route('product-category.destroy', $productCategory->id), 'Delete', '', array('class'=>'btn btn-sm btn-danger'), $productCategory->title); |
||
75 | $links = '<a href="'.url()->route('product-category.edit', $productCategory->id).'" class="btn btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
||
76 | |||
77 | return $links; |
||
78 | }); |
||
79 | |||
80 | return $datatables->rawColumns(['active', 'title', 'action'])->make(true); |
||
81 | } |
||
82 | |||
83 | return view('backend.product_category.index')->with(array('productCategory' => ProductCategoryService::selectAll())); |
||
84 | } |
||
85 | |||
86 | public function refactorAllImages() |
||
87 | { |
||
88 | $this->productCategoryImage->refactorAllImagesByShopId(auth('hideyobackend')->user()->selected_shop_id); |
||
89 | return redirect()->route('product-category.index'); |
||
90 | } |
||
91 | |||
92 | public function tree() |
||
93 | { |
||
94 | return view('backend.product_category.tree')->with(array('productCategory' => ProductCategoryService::selectAll(), 'tree' => ProductCategoryService::entireTreeStructure(auth('hideyobackend')->user()->shop->id)->toArray())); |
||
95 | } |
||
96 | |||
97 | public function ajaxCategories(Request $request) |
||
98 | { |
||
99 | $query = $request->get('q'); |
||
100 | $selectedId = $request->get('selectedId'); |
||
101 | |||
102 | if ($request->wantsJson()) { |
||
103 | return response()->json(ProductCategoryService::ajaxSearchByTitle($query, $selectedId)); |
||
104 | } |
||
105 | } |
||
106 | |||
107 | public function ajaxCategory(Request $request, $productCategoryId) |
||
108 | { |
||
109 | if ($request->wantsJson()) { |
||
110 | return response()->json(ProductCategoryService::find($productCategoryId)); |
||
111 | } |
||
112 | } |
||
113 | |||
114 | public function generateInput($array) |
||
115 | { |
||
116 | if (empty($array['redirect_product_category_id'])) { |
||
117 | $array['redirect_product_category_id'] = null; |
||
118 | } |
||
119 | |||
120 | if (empty($array['parent_id'])) { |
||
121 | $array['parent_id'] = null; |
||
122 | } |
||
123 | |||
124 | return $array; |
||
125 | } |
||
126 | |||
127 | public function create() |
||
128 | { |
||
129 | return view('backend.product_category.create')->with(array('categories' => ProductCategoryService::selectAll()->pluck('title', 'id'))); |
||
130 | } |
||
131 | |||
132 | public function store(Request $request) |
||
136 | } |
||
137 | |||
138 | public function edit($productCategoryId) |
||
139 | { |
||
140 | return view('backend.product_category.edit')->with(array('productCategory' => ProductCategoryService::find($productCategoryId), 'categories' => ProductCategoryService::selectAll()->pluck('title', 'id'))); |
||
141 | } |
||
142 | |||
143 | public function editHighlight($productCategoryId) |
||
144 | { |
||
145 | $products = ProductService::selectAll()->pluck('title', 'id'); |
||
146 | return view('backend.product_category.edit-highlight')->with(array('products' => $products, 'productCategory' => ProductCategoryService::find($productCategoryId), 'categories' => ProductCategoryService::selectAll()->pluck('title', 'id'))); |
||
147 | } |
||
148 | |||
149 | public function editSeo($productCategoryId) |
||
152 | } |
||
153 | |||
154 | public function update(Request $request, $productCategoryId) |
||
155 | { |
||
156 | $result = ProductCategoryService::updateById($this->generateInput($request->all()), $productCategoryId); |
||
157 | return ProductCategoryService::notificationRedirect('product-category.index', $result, 'The product category was updated.'); |
||
158 | } |
||
159 | |||
160 | public function destroy($productCategoryId) |
||
161 | { |
||
162 | $result = ProductCategoryService::destroy($productCategoryId); |
||
163 | |||
164 | if ($result) { |
||
165 | flash('Category was deleted.'); |
||
166 | return redirect()->route('product-category.index'); |
||
167 | } |
||
168 | } |
||
169 | |||
170 | public function ajaxRootTree() |
||
171 | { |
||
172 | $tree = ProductCategoryService::entireTreeStructure(auth('hideyobackend')->user()->shop->id); |
||
173 | foreach ($tree as $key => $row) { |
||
174 | $children = false; |
||
175 | if ($row->children->count()) { |
||
176 | $children = true; |
||
177 | } |
||
178 | |||
179 | $treeData[] = array( |
||
180 | 'id' => $row->id, |
||
181 | 'text' => $row->title, |
||
182 | 'children' => $children, |
||
183 | 'type' => 'root' |
||
184 | |||
185 | ); |
||
186 | } |
||
187 | |||
188 | return response()->json($treeData); |
||
189 | } |
||
190 | |||
191 | public function ajaxChildrenTree(Request $request) |
||
192 | { |
||
193 | $productCategoryId = $request->get('id'); |
||
194 | $category = ProductCategoryService::find($productCategoryId); |
||
195 | |||
196 | foreach ($category->children()->get() as $key => $row) { |
||
197 | $children = false; |
||
198 | if ($row->children->count()) { |
||
199 | $children = true; |
||
200 | } |
||
201 | |||
202 | $treeData[] = array( |
||
203 | 'id' => $row->id, |
||
204 | 'text' => $row->title, |
||
205 | 'children' => $children |
||
206 | ); |
||
207 | } |
||
208 | |||
209 | return response()->json($treeData); |
||
210 | } |
||
211 | |||
212 | public function changeActive($productCategoryId) |
||
213 | { |
||
214 | $result = ProductCategoryService::changeActive($productCategoryId); |
||
215 | return response()->json($result); |
||
216 | } |
||
217 | |||
218 | public function ajaxMoveNode(Request $request) |
||
251 | } |
||
252 | } |
||
253 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths