145 lines
3.6 KiB
PHP
145 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace Webkul\API\Http\Controllers\Shop;
|
|
|
|
use Illuminate\Support\Facades\Event;
|
|
use Webkul\Customer\Repositories\CustomerRepository;
|
|
use Webkul\API\Http\Resources\Customer\Customer as CustomerResource;
|
|
|
|
/**
|
|
* Session controller
|
|
*
|
|
* @author Jitendra Singh <jitendra@webkul.com>
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
*/
|
|
class SessionController extends Controller
|
|
{
|
|
/**
|
|
* Contains current guard
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $guard;
|
|
|
|
/**
|
|
* Contains route related configuration
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $_config;
|
|
|
|
/**
|
|
* Controller instance
|
|
*
|
|
* @param Webkul\Customer\Repositories\CustomerRepository $customerRepository
|
|
*/
|
|
public function __construct(CustomerRepository $customerRepository)
|
|
{
|
|
$this->guard = request()->has('token') ? 'api' : 'customer';
|
|
|
|
auth()->setDefaultDriver($this->guard);
|
|
|
|
$this->middleware('auth:' . $this->guard, ['only' => ['get', 'update', 'destroy']]);
|
|
|
|
$this->_config = request('_config');
|
|
|
|
$this->customerRepository = $customerRepository;
|
|
}
|
|
|
|
/**
|
|
* Method to store user's sign up form data to DB.
|
|
*
|
|
* @return Mixed
|
|
*/
|
|
public function create()
|
|
{
|
|
request()->validate([
|
|
'email' => 'required|email',
|
|
'password' => 'required'
|
|
]);
|
|
|
|
$jwtToken = null;
|
|
|
|
if (! $jwtToken = auth()->guard($this->guard)->attempt(request()->only('email', 'password'))) {
|
|
return response()->json([
|
|
'error' => 'Invalid Email or Password',
|
|
], 401);
|
|
}
|
|
|
|
Event::dispatch('customer.after.login', request('email'));
|
|
|
|
$customer = auth($this->guard)->user();
|
|
|
|
return response()->json([
|
|
'token' => $jwtToken,
|
|
'message' => 'Logged in successfully.',
|
|
'data' => new CustomerResource($customer)
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Get details for current logged in customer
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function get()
|
|
{
|
|
$customer = auth($this->guard)->user();
|
|
|
|
return response()->json([
|
|
'data' => new CustomerResource($customer)
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update()
|
|
{
|
|
$customer = auth($this->guard)->user();
|
|
|
|
$this->validate(request(), [
|
|
'first_name' => 'required',
|
|
'last_name' => 'required',
|
|
'gender' => 'required',
|
|
'date_of_birth' => 'nullable|date|before:today',
|
|
'email' => 'email|unique:customers,email,' . $customer->id,
|
|
'password' => 'confirmed|min:6'
|
|
]);
|
|
|
|
$data = request()->all();
|
|
|
|
if (! $data['date_of_birth']) {
|
|
unset($data['date_of_birth']);
|
|
}
|
|
|
|
if (!isset($data['password']) || ! $data['password']) {
|
|
unset($data['password']);
|
|
} else {
|
|
$data['password'] = bcrypt($data['password']);
|
|
}
|
|
|
|
$this->customerRepository->update($data, $customer->id);
|
|
|
|
return response()->json([
|
|
'message' => 'Your account has been created successfully.',
|
|
'data' => new CustomerResource($this->customerRepository->find($customer->id))
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy()
|
|
{
|
|
auth()->guard($this->guard)->logout();
|
|
|
|
return response()->json([
|
|
'message' => 'Logged out successfully.',
|
|
]);
|
|
}
|
|
} |