sarga/packages/Webkul/Shop/src/Http/Controllers/CartController.php

317 lines
8.2 KiB
PHP
Executable File

<?php
namespace Webkul\Shop\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Webkul\Checkout\Repositories\CartRepository;
use Webkul\Checkout\Repositories\CartItemRepository;
use Webkul\Product\Repositories\ProductRepository;
use Webkul\Customer\Repositories\CustomerRepository;
use Webkul\Customer\Repositories\WishlistRepository;
use Webkul\Discount\Repositories\CartRuleCartRepository as CartRuleCart;
use Illuminate\Support\Facades\Event;
use Cart;
/**
* Cart controller for the customer and guest users for adding and
* removing the products in the cart.
*
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
*/
class CartController extends Controller
{
/**
* Protected Variables that holds instances of the repository classes.
*
* @param Array $_config
* @param $cart
* @param $cartItem
* @param $customer
* @param $product
* @param $productView
*/
protected $_config;
protected $cart;
protected $cartItem;
protected $customer;
protected $product;
protected $cartRuleCart;
protected $suppressFlash = false;
/**
* WishlistRepository Repository object
*
* @var array
*/
protected $wishlist;
public function __construct(
CartRepository $cart,
CartItemRepository $cartItem,
CustomerRepository $customer,
ProductRepository $product,
WishlistRepository $wishlist,
CartRuleCart $cartRuleCart
)
{
$this->middleware('customer')->only(['moveToWishlist']);
$this->customer = $customer;
$this->cart = $cart;
$this->cartItem = $cartItem;
$this->product = $product;
$this->wishlist = $wishlist;
$this->cartRuleCart = $cartRuleCart;
$this->_config = request('_config');
}
/**
* Method to populate the cart page which will be populated before the checkout process.
*
* @return Mixed
*/
public function index()
{
return view($this->_config['view'])->with('cart', Cart::getCart());
}
/**
* Function for guests user to add the product in the cart.
*
* @return Mixed
*/
public function add($id)
{
try {
Event::fire('checkout.cart.add.before', $id);
$result = Cart::add($id, request()->except('_token'));
Event::fire('checkout.cart.add.after', $result);
Cart::collectTotals();
if ($result) {
session()->flash('success', trans('shop::app.checkout.cart.item.success'));
if (auth()->guard('customer')->user()) {
$customer = auth()->guard('customer')->user();
if (count($customer->wishlist_items)) {
foreach ($customer->wishlist_items as $wishlist) {
if ($wishlist->product_id == $id) {
$this->wishlist->delete($wishlist->id);
}
}
}
}
return redirect()->back();
} else {
session()->flash('warning', trans('shop::app.checkout.cart.item.error-add'));
return redirect()->back();
}
return redirect()->route($this->_config['redirect']);
} catch(\Exception $e) {
session()->flash('error', trans($e->getMessage()));
return redirect()->back();
}
}
/**
* Removes the item from the cart if it exists
*
* @param integer $itemId
*/
public function remove($itemId)
{
Event::fire('checkout.cart.delete.before', $itemId);
Cart::removeItem($itemId);
Event::fire('checkout.cart.delete.after', $itemId);
Cart::collectTotals();
return redirect()->back();
}
/**
* Updates the quantity of the items present in the cart.
*
* @return response
*/
public function updateBeforeCheckout()
{
try {
$request = request()->except('_token');
foreach ($request['qty'] as $id => $quantity) {
if ($quantity <= 0) {
session()->flash('warning', trans('shop::app.checkout.cart.quantity.illegal'));
return redirect()->back();
}
}
foreach ($request['qty'] as $key => $value) {
$item = $this->cartItem->findOneByField('id', $key);
$data['quantity'] = $value;
Event::fire('checkout.cart.update.before', $item);
$result = Cart::updateItem($item->product_id, $data, $key);
if ($result == false) {
$this->suppressFlash = true;
}
Event::fire('checkout.cart.update.after', $item);
unset($item);
unset($data);
}
Cart::collectTotals();
if ($this->suppressFlash) {
session()->forget('success');
session()->forget('warning');
session()->flash('info', trans('shop::app.checkout.cart.partial-cart-update'));
}
} catch(\Exception $e) {
session()->flash('error', trans($e->getMessage()));
}
return redirect()->back();
}
/**
* Add the configurable product
* to the cart.
*
* @return response
*/
public function addConfigurable($slug)
{
session()->flash('warning', trans('shop::app.checkout.cart.add-config-warning'));
return redirect()->route('shop.products.index', $slug);
}
public function buyNow($id, $quantity = 1)
{
Event::fire('checkout.cart.add.before', $id);
$result = Cart::proceedToBuyNow($id, $quantity);
Event::fire('checkout.cart.add.after', $result);
Cart::collectTotals();
if (! $result) {
return redirect()->back();
} else {
return redirect()->route('shop.checkout.onepage.index');
}
}
/**
* Function to move a already added product to wishlist
* will run only on customer authentication.
*
* @param instance cartItem $id
*/
public function moveToWishlist($id)
{
$result = Cart::moveToWishlist($id);
if (! $result) {
Cart::collectTotals();
session()->flash('success', trans('shop::app.wishlist.moved'));
return redirect()->back();
} else {
session()->flash('warning', trans('shop::app.wishlist.move-error'));
return redirect()->back();
}
}
/**
* To apply coupon rules
*/
public function applyCoupon()
{
$this->validate(request(), [
'code' => 'string|required'
]);
$code = request()->input('code');
$result = Cart::applyCoupon($code);
if ($result != null) {
return response()->json([
'success' => true,
'message' => trans('shop::app.checkout.onepage.total.coupon-applied'),
'result' => $result
]);
} else {
return response()->json([
'success' => false,
'message' => trans('shop::app.checkout.onepage.total.cannot-apply-coupon'),
'result' => null
]);
}
return $result;
}
/**
* Fetch the non couponable rule
*/
public function getNonCouponAbleRule()
{
$cart = Cart::getCart();
$nonCouponAbleRules = Cart::applyNonCoupon();
return $nonCouponAbleRules;
}
/**
* To remove the currently active
* couponable rule
*/
public function removeCoupon()
{
$result = Cart::removeCoupon();
if ($result) {
return response()->json([
'success' => true,
'message' => trans('admin::app.promotion.status.coupon-removed')
]);
} else {
return response()->json([
'success' => false,
'message' => trans('admin::app.promotion.status.coupon-remove-failed')
]);
}
}
}