[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: ProductSpecificationController.php
<?php namespace App\Http\Controllers\Panel\Store; use App\Http\Controllers\Controller; use App\Models\Product; use App\Models\ProductSelectedSpecification; use App\Models\ProductSelectedSpecificationMultiValue; use App\Models\ProductSpecification; use App\Models\ProductSpecificationCategory; use App\Models\ProductSpecificationMultiValue; use App\Models\Translation\ProductSelectedSpecificationTranslation; use Illuminate\Http\Request; use Illuminate\Support\Facades\Validator; class ProductSpecificationController extends Controller { public function getItem($id) { $specification = ProductSpecification::where('id', $id) ->first(); if (!empty($specification)) { $multiValues = ProductSpecificationMultiValue::where('specification_id', $specification->id)->get(); $data = [ 'specification' => $specification, 'multiValues' => $multiValues ]; return response()->json($data); } abort(404); } public function store(Request $request) { $user = auth()->user(); $data = $request->get('ajax')['new']; $rules = [ 'product_id' => 'required', 'input_type' => 'required|in:' . implode(',', ProductSpecification::$inputTypes), 'specification_id' => 'required|exists:product_specifications,id', 'multi_values' => 'required_if:input_type,multi_value', 'summary' => 'required_if:input_type,textarea', ]; $validator = Validator::make($data, $rules); if ($validator->fails()) { return response([ 'code' => 422, 'errors' => $validator->errors(), ], 422); } $product = Product::where('id', $data['product_id']) ->where('creator_id', $user->id) ->first(); if (!empty($product)) { $selectedSpecification = ProductSelectedSpecification::create([ 'creator_id' => $user->id, 'product_id' => $product->id, 'product_specification_id' => $data['specification_id'], 'type' => $data['input_type'], 'allow_selection' => (!empty($data['allow_selection']) and $data['allow_selection'] == 'on'), 'order' => null, 'status' => (!empty($data['status']) and $data['status'] == 'on') ? ProductSelectedSpecification::$Active : ProductSelectedSpecification::$Inactive, 'created_at' => time(), ]); if (!empty($selectedSpecification)) { if ($data['input_type'] == 'multi_value') { $this->handleSelectedSpecificationMultiValue($selectedSpecification, $data['multi_values']); } else if (!empty($data['summary'])) { ProductSelectedSpecificationTranslation::updateOrCreate([ 'locale' => mb_strtolower($data['locale']), 'product_selected_specification_id' => $selectedSpecification->id ], [ 'value' => $data['summary'] ]); } } return response()->json([ 'code' => 200, ], 200); } abort(404); } private function handleSelectedSpecificationMultiValue($selectedSpecification, $multiValues) { ProductSelectedSpecificationMultiValue::where('selected_specification_id', $selectedSpecification->id)->delete(); if (!empty($multiValues) and !is_array($multiValues)) { $multiValues = [$multiValues]; } if (!empty($multiValues) and is_array($multiValues)) { foreach ($multiValues as $multiValue) { ProductSelectedSpecificationMultiValue::create([ 'selected_specification_id' => $selectedSpecification->id, 'specification_multi_value_id' => $multiValue ]); } } } public function update(Request $request, $id) { $user = auth()->user(); $data = $request->get('ajax')[$id]; $rules = [ 'product_id' => 'required', 'input_type' => 'required|in:' . implode(',', ProductSpecification::$inputTypes), 'specification_id' => 'required|exists:product_specifications,id', 'multi_values' => 'required_if:input_type,multi_value', 'summary' => 'required_if:input_type,textarea', ]; $validator = Validator::make($data, $rules); if ($validator->fails()) { return response([ 'code' => 422, 'errors' => $validator->errors(), ], 422); } $product = Product::where('id', $data['product_id']) ->where('creator_id', $user->id) ->first(); if (!empty($product)) { $selectedSpecification = ProductSelectedSpecification::where('creator_id', $user->id) ->where('product_id', $product->id) ->where('id', $id) ->first(); if (!empty($selectedSpecification)) { $selectedSpecification->update([ //'product_specification_id' => $data['specification_id'], 'type' => $data['input_type'], 'allow_selection' => (!empty($data['allow_selection']) and $data['allow_selection'] == 'on'), 'status' => (!empty($data['status']) and $data['status'] == 'on') ? ProductSelectedSpecification::$Active : ProductSelectedSpecification::$Inactive, 'created_at' => time(), ]); if ($data['input_type'] == 'multi_value') { $this->handleSelectedSpecificationMultiValue($selectedSpecification, $data['multi_values']); } else if (!empty($data['summary'])) { ProductSelectedSpecificationTranslation::updateOrCreate([ 'locale' => mb_strtolower($data['locale']), 'product_selected_specification_id' => $selectedSpecification->id ], [ 'value' => $data['summary'] ]); } return response()->json([ 'code' => 200, ], 200); } } } public function destroy(Request $request, $id) { $selectedSpecification = ProductSelectedSpecification::where('id', $id) ->where('creator_id', auth()->id()) ->first(); if (!empty($selectedSpecification)) { $selectedSpecification->delete(); } return response()->json([ 'code' => 200 ], 200); } public function orderItems(Request $request) { $user = auth()->user(); $data = $request->all(); $validator = Validator::make($data, [ 'items' => 'required', ]); if ($validator->fails()) { return response([ 'code' => 422, 'errors' => $validator->errors(), ], 422); } $itemIds = explode(',', $data['items']); if (!is_array($itemIds) and !empty($itemIds)) { $itemIds = [$itemIds]; } if (!empty($itemIds) and is_array($itemIds) and count($itemIds)) { foreach ($itemIds as $order => $id) { ProductSelectedSpecification::where('id', $id) ->where('creator_id', $user->id) ->update(['order' => ($order + 1)]); } } return response()->json([ 'code' => 200, ], 200); } public function search(Request $request) { $term = $request->get('term'); $categoryId = $request->get('category_id'); if (!empty($term)) { $specificationIds = ProductSpecificationCategory::where('category_id', $categoryId) ->pluck('specification_id') ->toArray(); $specifications = ProductSpecification::whereIn('id', $specificationIds) ->whereTranslationLike('title', '%' . $term . '%') ->get(); $result = []; foreach ($specifications as $item) { $result[] = [ 'id' => $item->id, 'title' => $item->title, ]; } return response()->json($result, 200); } return response()->json([]); } public function getByCategoryId($categoryId) { $defaultLocale = getDefaultLocale(); $specificationIds = ProductSpecificationCategory::where('category_id', $categoryId) ->pluck('specification_id') ->toArray(); $specifications = ProductSpecification::select('*') ->whereIn('id', $specificationIds) ->get(); return response()->json([ 'specifications' => $specifications, 'defaultLocale' => mb_strtolower($defaultLocale) ], 200); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285