sarga/packages/Webkul/Product/src/Http/Controllers/ProductController.php

293 lines
8.2 KiB
PHP
Raw Normal View History

2018-07-27 06:22:12 +00:00
<?php
namespace Webkul\Product\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
2018-12-21 12:48:34 +00:00
use Illuminate\Support\Facades\Event;
2018-08-09 04:35:13 +00:00
use Webkul\Product\Http\Requests\ProductForm;
2018-07-27 06:22:12 +00:00
use Webkul\Product\Repositories\ProductRepository as Product;
use Webkul\Product\Repositories\ProductGridRepository as ProductGrid;
2018-07-31 07:50:54 +00:00
use Webkul\Attribute\Repositories\AttributeFamilyRepository as AttributeFamily;
2018-08-09 04:35:13 +00:00
use Webkul\Category\Repositories\CategoryRepository as Category;
use Webkul\Inventory\Repositories\InventorySourceRepository as InventorySource;
2018-07-27 06:22:12 +00:00
/**
* Product controller
*
* @author Jitendra Singh <jitendra@webkul.com>
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
*/
class ProductController extends Controller
{
/**
* Contains route related configuration
*
* @var array
*/
protected $_config;
2018-07-31 07:50:54 +00:00
/**
* AttributeFamilyRepository object
*
* @var array
*/
protected $attributeFamily;
2018-08-09 04:35:13 +00:00
/**
* CategoryRepository object
*
* @var array
*/
protected $category;
2018-08-09 04:35:13 +00:00
/**
* InventorySourceRepository object
*
* @var array
*/
protected $inventorySource;
2018-07-27 06:22:12 +00:00
/**
* ProductRepository object
*
* @var array
*/
protected $product;
/**
* ProductGrid Repository object
*
* @var array
*/
protected $productGrid;
2018-07-27 06:22:12 +00:00
/**
* Create a new controller instance.
*
2018-07-31 07:50:54 +00:00
* @param Webkul\Attribute\Repositories\AttributeFamilyRepository $attributeFamily
2018-08-09 04:35:13 +00:00
* @param Webkul\Category\Repositories\CategoryRepository $category
* @param Webkul\Inventory\Repositories\InventorySourceRepository $inventorySource
2018-07-31 07:50:54 +00:00
* @param Webkul\Product\Repositories\ProductRepository $product
2018-07-27 06:22:12 +00:00
* @return void
*/
2018-08-09 04:35:13 +00:00
public function __construct(
AttributeFamily $attributeFamily,
Category $category,
InventorySource $inventorySource,
Product $product,
2018-10-23 11:46:00 +00:00
ProductGrid $productGrid)
2018-07-27 06:22:12 +00:00
{
$this->middleware('admin');
2018-07-31 07:50:54 +00:00
$this->attributeFamily = $attributeFamily;
2018-08-09 04:35:13 +00:00
$this->category = $category;
$this->inventorySource = $inventorySource;
2018-07-27 06:22:12 +00:00
$this->product = $product;
$this->productGrid = $productGrid;
2018-07-27 06:22:12 +00:00
$this->_config = request('_config');
}
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view($this->_config['view']);
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
2018-07-31 07:50:54 +00:00
$families = $this->attributeFamily->all();
if($familyId = request()->get('family')) {
2018-08-22 09:44:35 +00:00
$configurableFamily = $this->attributeFamily->find($familyId);
2018-07-31 07:50:54 +00:00
}
return view($this->_config['view'], compact('families', 'configurableFamily'));
2018-07-27 06:22:12 +00:00
}
/**
* Store a newly created resource in storage.
*
* @return \Illuminate\Http\Response
*/
public function store()
{
2018-08-01 06:11:33 +00:00
if(!request()->get('family') && request()->input('type') == 'configurable' && request()->input('sku') != '') {
return redirect(url()->current() . '?family=' . request()->input('attribute_family_id') . '&sku=' . request()->input('sku'));
}
if(request()->input('type') == 'configurable' && (!request()->has('super_attributes') || !count(request()->get('super_attributes')))) {
session()->flash('error', 'Please select atleast one configurable attribute.');
return back();
2018-07-31 07:50:54 +00:00
}
2018-07-27 06:22:12 +00:00
$this->validate(request(), [
2018-07-31 07:50:54 +00:00
'type' => 'required',
'attribute_family_id' => 'required',
'sku' => ['required', 'unique:products,sku', new \Webkul\Core\Contracts\Validations\Slug]
2018-07-27 06:22:12 +00:00
]);
2018-12-21 12:48:34 +00:00
//before store of the product
Event::fire('catalog.product.create.before');
2018-07-31 07:50:54 +00:00
$product = $this->product->create(request()->all());
2018-07-27 06:22:12 +00:00
//after store of the product
2018-12-21 12:48:34 +00:00
Event::fire('catalog.product.create.after', $product);
2018-07-27 06:22:12 +00:00
session()->flash('success', 'Product created successfully.');
2018-07-31 07:50:54 +00:00
return redirect()->route($this->_config['redirect'], ['id' => $product->id]);
2018-07-27 06:22:12 +00:00
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
2018-08-22 09:44:35 +00:00
$product = $this->product->with(['variants'])->find($id);
2018-07-27 06:22:12 +00:00
2018-08-09 04:35:13 +00:00
$categories = $this->category->getCategoryTree();
$inventorySources = $this->inventorySource->all();
return view($this->_config['view'], compact('product', 'categories', 'inventorySources'));
2018-07-27 06:22:12 +00:00
}
/**
* Update the specified resource in storage.
*
2018-08-09 04:35:13 +00:00
* @param \Webkul\Product\Http\Requests\ProductForm $request
2018-07-27 06:22:12 +00:00
* @param int $id
* @return \Illuminate\Http\Response
*/
2018-08-09 04:35:13 +00:00
public function update(ProductForm $request, $id)
2018-07-27 06:22:12 +00:00
{
2018-12-21 12:48:34 +00:00
Event::fire('catalog.product.update.before', $id);
$product = $this->product->update(request()->all(), $id);
2018-07-27 06:22:12 +00:00
2018-12-21 12:48:34 +00:00
Event::fire('catalog.product.update.after', $product);
2018-07-27 06:22:12 +00:00
session()->flash('success', 'Product updated successfully.');
return redirect()->route($this->_config['redirect']);
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
2018-12-21 12:48:34 +00:00
Event::fire('catalog.product.delete.before', $id);
2018-10-26 04:53:35 +00:00
2018-10-17 07:21:47 +00:00
$this->product->delete($id);
2018-10-17 10:30:31 +00:00
2018-12-21 12:48:34 +00:00
Event::fire('catalog.product.delete.after', $id);
2018-10-17 10:30:31 +00:00
session()->flash('success', 'Product deleted successfully.');
return redirect()->back();
2018-07-27 06:22:12 +00:00
}
/**
* Mass Delete the products
*
* @return response
*/
public function massDestroy() {
$data = request()->all();
$productIds = explode(',', $data['indexes']);
if(count($productIds)) {
foreach($productIds as $productId) {
$product = $this->product->find($productId);
if(!is_null($product)) {
2018-12-21 12:48:34 +00:00
Event::fire('catalog.product.delete.before', $productId);
$product->delete();
2018-12-21 12:48:34 +00:00
Event::fire('catalog.product.delete.after', $productId);
}
}
}
session()->flash('success', trans('admin::app.catalog.products.mass-delete-success'));
return redirect()->route($this->_config['redirect']);
}
/**
* Mass updates the products
*
* @return response
*/
public function massUpdate() {
$data = request()->all();
$attribute = 'status';
$productIds = explode(',', $data['indexes']);
if(!isset($data['massaction-type'])) {
return redirect()->back();
}
if(count($productIds)) {
foreach($productIds as $productId) {
$product = $this->product->find($productId);
if($data['update-options'] == 0 && $data['selected-option-text'] == 'In Active') {
2018-12-21 12:48:34 +00:00
Event::fire('catelog.product.update.before', $productId);
$result = $this->product->updateAttribute($product, $attribute, $data['update-options']);
if($result)
2018-12-21 12:48:34 +00:00
Event::fire('catelog.product.update.after', $product);
} else if($data['update-options'] == 1 && $data['selected-option-text'] == 'Active') {
2018-12-21 12:48:34 +00:00
Event::fire('catelog.product.update.before', $productId);
$result = $this->product->updateAttribute($product, $attribute, $data['update-options']);
if($result)
Event::fire('product.update.after', $product);
}
}
}
session()->flash('success', trans('admin::app.catalog.products.mass-delete-success'));
return redirect()->route($this->_config['redirect']);
}
/*
* To be manually invoked when data is seeded into products
*/
2018-10-23 11:46:00 +00:00
public function sync() {
Event::fire('products.datagrid.sync', true);
return redirect()->route('admin.catalog.products.index');
}
2018-07-27 06:22:12 +00:00
}