sarga/packages/Webkul/Customer/src/Http/Controllers/CustomerController.php

181 lines
5.5 KiB
PHP
Raw Normal View History

<?php
namespace Webkul\Customer\Http\Controllers;
use Hash;
2019-07-01 11:33:36 +00:00
use Webkul\Customer\Repositories\CustomerRepository;
2019-10-09 13:00:18 +00:00
use Webkul\Product\Repositories\ProductReviewRepository;
class CustomerController extends Controller
{
/**
2019-07-01 11:33:36 +00:00
* Contains route related configuration
*
2019-07-01 11:33:36 +00:00
* @var array
*/
protected $_config;
/**
* CustomerRepository object
*
2020-03-05 05:34:57 +00:00
* @var \Webkul\Customer\Repositories\CustomerRepository
2020-01-14 09:49:22 +00:00
*/
2019-07-01 11:33:36 +00:00
protected $customerRepository;
2019-10-09 13:00:18 +00:00
/**
* ProductReviewRepository object
*
2020-03-05 05:34:57 +00:00
* @var \Webkul\Customer\Repositories\ProductReviewRepository
2020-01-14 09:49:22 +00:00
*/
2019-10-09 13:00:18 +00:00
protected $productReviewRepository;
2018-09-21 13:43:41 +00:00
/**
2019-07-01 11:33:36 +00:00
* Create a new controller instance.
2018-09-21 13:43:41 +00:00
*
2020-03-05 05:34:57 +00:00
* @param \Webkul\Customer\Repositories\CustomerRepository $customer
* @param \Webkul\Product\Repositories\ProductReviewRepository $productReview
2018-09-21 13:43:41 +00:00
* @return void
2020-01-14 09:49:22 +00:00
*/
2020-03-05 05:34:57 +00:00
public function __construct(
CustomerRepository $customerRepository,
ProductReviewRepository $productReviewRepository
)
{
$this->middleware('customer');
$this->_config = request('_config');
2019-07-01 11:33:36 +00:00
$this->customerRepository = $customerRepository;
2019-10-09 13:00:18 +00:00
$this->productReviewRepository = $productReviewRepository;
}
/**
2018-10-17 10:33:57 +00:00
* Taking the customer to profile details page
*
2019-08-19 09:30:24 +00:00
* @return \Illuminate\View\View
*/
public function index()
{
2019-07-01 11:33:36 +00:00
$customer = $this->customerRepository->find(auth()->guard('customer')->user()->id);
return view($this->_config['view'], compact('customer'));
2018-07-27 13:37:56 +00:00
}
/**
2018-10-17 10:33:57 +00:00
* For loading the edit form page.
*
2019-08-19 09:30:24 +00:00
* @return \Illuminate\View\View
*/
public function edit()
{
2019-07-01 11:33:36 +00:00
$customer = $this->customerRepository->find(auth()->guard('customer')->user()->id);
return view($this->_config['view'], compact('customer'));
}
/**
2018-10-17 10:33:57 +00:00
* Edit function for editing customer profile.
*
2020-03-05 05:34:57 +00:00
* @return \Illuminate\Http\Response
*/
public function update()
{
$id = auth()->guard('customer')->user()->id;
$this->validate(request(), [
2020-01-14 09:49:22 +00:00
'first_name' => 'string',
'last_name' => 'string',
'gender' => 'required',
'date_of_birth' => 'date|before:today',
'email' => 'email|unique:customers,email,' . $id,
'password' => 'confirmed|min:6|required_with:oldpassword',
'oldpassword' => 'required_with:password',
2019-12-19 11:17:00 +00:00
'password_confirmation' => 'required_with:password',
]);
$data = collect(request()->input())->except('_token')->toArray();
if (isset ($data['date_of_birth']) && $data['date_of_birth'] == "") {
unset($data['date_of_birth']);
}
if (isset ($data['oldpassword'])) {
if ($data['oldpassword'] != "" || $data['oldpassword'] != null) {
if (Hash::check($data['oldpassword'], auth()->guard('customer')->user()->password)) {
$data['password'] = bcrypt($data['password']);
} else {
session()->flash('warning', trans('shop::app.customer.account.profile.unmatch'));
return redirect()->back();
}
} else {
unset($data['password']);
}
}
2019-07-01 11:33:36 +00:00
if ($this->customerRepository->update($data, $id)) {
Session()->flash('success', trans('shop::app.customer.account.profile.edit-success'));
return redirect()->route($this->_config['redirect']);
} else {
Session()->flash('success', trans('shop::app.customer.account.profile.edit-fail'));
return redirect()->back($this->_config['redirect']);
}
}
2019-09-12 08:36:38 +00:00
/**
* Remove the specified resource from storage.
*
2020-03-05 05:34:57 +00:00
* @param int $id
2019-09-12 08:36:38 +00:00
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
$id = auth()->guard('customer')->user()->id;
$data = request()->all();
2019-10-18 14:13:03 +00:00
$customerRepository = $this->customerRepository->findorFail($id);
2019-09-12 08:36:38 +00:00
try {
2019-12-19 11:17:00 +00:00
if (Hash::check($data['password'], $customerRepository->password)) {
$orders = $customerRepository->all_orders->whereIn('status', ['pending', 'processing'])->first();
2019-09-12 08:36:38 +00:00
2019-12-19 11:17:00 +00:00
if ($orders) {
session()->flash('error', trans('admin::app.response.order-pending'));
2019-12-19 11:17:00 +00:00
return redirect()->route($this->_config['redirect']);
} else {
$this->customerRepository->delete($id);
2019-12-19 11:17:00 +00:00
session()->flash('success', trans('admin::app.response.delete-success', ['name' => 'Customer']));
return redirect()->route('customer.session.index');
}
} else {
session()->flash('error', trans('shop::app.customer.account.address.delete.wrong-password'));
2019-09-12 08:36:38 +00:00
2019-12-19 11:17:00 +00:00
return redirect()->back();
}
2020-01-14 09:49:22 +00:00
} catch (\Exception $e) {
2019-10-18 14:13:03 +00:00
session()->flash('error', trans('admin::app.response.delete-failed', ['name' => 'Customer']));
2019-09-12 08:36:38 +00:00
2019-10-18 14:13:03 +00:00
return redirect()->route($this->_config['redirect']);
2019-09-12 08:36:38 +00:00
}
}
2018-10-17 10:33:57 +00:00
/**
* Load the view for the customer account panel, showing approved reviews.
*
2019-08-19 09:30:24 +00:00
* @return \Illuminate\View\View
2018-10-17 10:33:57 +00:00
*/
public function reviews()
{
2019-10-09 13:00:18 +00:00
$reviews = $this->productReviewRepository->getCustomerReview();
2018-09-21 13:43:41 +00:00
return view($this->_config['view'], compact('reviews'));
}
}