198 lines
6.1 KiB
PHP
Executable File
198 lines
6.1 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Customer\Http\Controllers;
|
|
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Mail;
|
|
use Webkul\Customer\Mail\RegistrationEmail;
|
|
use Webkul\Customer\Mail\VerificationEmail;
|
|
use Webkul\Customer\Repositories\CustomerRepository;
|
|
use Webkul\Customer\Repositories\CustomerGroupRepository;
|
|
use Cookie;
|
|
|
|
/**
|
|
* Registration controller
|
|
*
|
|
* @author Prashant Singh <prashant.singh852@webkul.com>
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
*/
|
|
class RegistrationController extends Controller
|
|
{
|
|
/**
|
|
* Contains route related configuration
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $_config;
|
|
|
|
/**
|
|
* CustomerRepository object
|
|
*
|
|
* @var Object
|
|
*/
|
|
protected $customerRepository;
|
|
|
|
/**
|
|
* CustomerGroupRepository object
|
|
*
|
|
* @var Object
|
|
*/
|
|
protected $customerGroupRepository;
|
|
|
|
/**
|
|
* Create a new Repository instance.
|
|
*
|
|
* @param \Webkul\Customer\Repositories\CustomerRepository $customer
|
|
* @param \Webkul\Customer\Repositories\CustomerGroupRepository $customerGroupRepository
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(
|
|
CustomerRepository $customerRepository,
|
|
CustomerGroupRepository $customerGroupRepository
|
|
)
|
|
{
|
|
$this->_config = request('_config');
|
|
|
|
$this->customerRepository = $customerRepository;
|
|
|
|
$this->customerGroupRepository = $customerGroupRepository;
|
|
}
|
|
|
|
/**
|
|
* Opens up the user's sign up form.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function show()
|
|
{
|
|
return view($this->_config['view']);
|
|
}
|
|
|
|
/**
|
|
* Method to store user's sign up form data to DB.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function create()
|
|
{
|
|
$this->validate(request(), [
|
|
'first_name' => 'string|required',
|
|
'last_name' => 'string|required',
|
|
'email' => 'email|required|unique:customers,email',
|
|
'password' => 'confirmed|min:6|required',
|
|
]);
|
|
|
|
$data = request()->input();
|
|
|
|
$data['password'] = bcrypt($data['password']);
|
|
$data['api_token'] = Str::random(80);
|
|
|
|
if (core()->getConfigData('customer.settings.email.verification')) {
|
|
$data['is_verified'] = 0;
|
|
} else {
|
|
$data['is_verified'] = 1;
|
|
}
|
|
|
|
$data['customer_group_id'] = $this->customerGroupRepository->findOneWhere(['code' => 'general'])->id;
|
|
|
|
$verificationData['email'] = $data['email'];
|
|
$verificationData['token'] = md5(uniqid(rand(), true));
|
|
$data['token'] = $verificationData['token'];
|
|
|
|
Event::dispatch('customer.registration.before');
|
|
|
|
$customer = $this->customerRepository->create($data);
|
|
|
|
Event::dispatch('customer.registration.after', $customer);
|
|
|
|
if ($customer) {
|
|
if (core()->getConfigData('customer.settings.email.verification')) {
|
|
try {
|
|
$configKey = 'emails.general.notifications.emails.general.notifications.verification';
|
|
if (core()->getConfigData($configKey)) {
|
|
Mail::queue(new VerificationEmail($verificationData));
|
|
}
|
|
|
|
session()->flash('success', trans('shop::app.customer.signup-form.success-verify'));
|
|
} catch (\Exception $e) {
|
|
report($e);
|
|
session()->flash('info', trans('shop::app.customer.signup-form.success-verify-email-unsent'));
|
|
}
|
|
} else {
|
|
try {
|
|
$configKey = 'emails.general.notifications.emails.general.notifications.registration';
|
|
if (core()->getConfigData($configKey)) {
|
|
Mail::queue(new RegistrationEmail(request()->all()));
|
|
}
|
|
|
|
session()->flash('success', trans('shop::app.customer.signup-form.success-verify')); //customer registered successfully
|
|
} catch (\Exception $e) {
|
|
report($e);
|
|
session()->flash('info', trans('shop::app.customer.signup-form.success-verify-email-unsent'));
|
|
}
|
|
|
|
session()->flash('success', trans('shop::app.customer.signup-form.success'));
|
|
}
|
|
|
|
return redirect()->route($this->_config['redirect']);
|
|
} else {
|
|
session()->flash('error', trans('shop::app.customer.signup-form.failed'));
|
|
|
|
return redirect()->back();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Method to verify account
|
|
*
|
|
* @param string $token
|
|
*/
|
|
public function verifyAccount($token)
|
|
{
|
|
$customer = $this->customerRepository->findOneByField('token', $token);
|
|
|
|
if ($customer) {
|
|
$customer->update(['is_verified' => 1, 'token' => 'NULL']);
|
|
|
|
session()->flash('success', trans('shop::app.customer.signup-form.verified'));
|
|
} else {
|
|
session()->flash('warning', trans('shop::app.customer.signup-form.verify-failed'));
|
|
}
|
|
|
|
return redirect()->route('customer.session.index');
|
|
}
|
|
|
|
public function resendVerificationEmail($email)
|
|
{
|
|
$verificationData['email'] = $email;
|
|
$verificationData['token'] = md5(uniqid(rand(), true));
|
|
|
|
$customer = $this->customerRepository->findOneByField('email', $email);
|
|
|
|
$this->customerRepository->update(['token' => $verificationData['token']], $customer->id);
|
|
|
|
try {
|
|
Mail::queue(new VerificationEmail($verificationData));
|
|
|
|
if (Cookie::has('enable-resend')) {
|
|
\Cookie::queue(\Cookie::forget('enable-resend'));
|
|
}
|
|
|
|
if (Cookie::has('email-for-resend')) {
|
|
\Cookie::queue(\Cookie::forget('email-for-resend'));
|
|
}
|
|
} catch (\Exception $e) {
|
|
report($e);
|
|
session()->flash('error', trans('shop::app.customer.signup-form.verification-not-sent'));
|
|
|
|
return redirect()->back();
|
|
}
|
|
session()->flash('success', trans('shop::app.customer.signup-form.verification-sent'));
|
|
|
|
return redirect()->back();
|
|
}
|
|
}
|