2022-09-20 19:59:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2023-11-01 15:58:10 +00:00
|
|
|
use App\Http\Resources\UserResource;
|
2022-09-20 19:59:52 +00:00
|
|
|
use App\Models\Workspace;
|
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
|
|
use Illuminate\Foundation\Auth\RegistersUsers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Validator;
|
2022-10-19 08:18:07 +00:00
|
|
|
use Illuminate\Validation\Rule;
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
class RegisterController extends Controller
|
|
|
|
{
|
|
|
|
use RegistersUsers;
|
|
|
|
|
2023-11-01 15:58:10 +00:00
|
|
|
private ?bool $appsumoLicense = null;
|
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The user has been registered.
|
|
|
|
*
|
2023-11-01 15:58:10 +00:00
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \App\User $user
|
2022-09-20 19:59:52 +00:00
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
|
|
|
protected function registered(Request $request, User $user)
|
|
|
|
{
|
|
|
|
if ($user instanceof MustVerifyEmail) {
|
|
|
|
return response()->json(['status' => trans('verification.sent')]);
|
|
|
|
}
|
|
|
|
|
2023-11-01 15:58:10 +00:00
|
|
|
return response()->json(array_merge(
|
|
|
|
(new UserResource($user))->toArray($request),
|
|
|
|
[
|
|
|
|
'appsumo_license' => $this->appsumoLicense,
|
|
|
|
]));
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a validator for an incoming registration request.
|
|
|
|
*
|
2023-11-01 15:58:10 +00:00
|
|
|
* @param array $data
|
2022-09-20 19:59:52 +00:00
|
|
|
* @return \Illuminate\Contracts\Validation\Validator
|
|
|
|
*/
|
|
|
|
protected function validator(array $data)
|
|
|
|
{
|
|
|
|
return Validator::make($data, [
|
|
|
|
'name' => 'required|max:255',
|
2023-04-28 09:37:39 +00:00
|
|
|
'email' => 'required|email:filter|max:255|unique:users|indisposable',
|
2022-09-20 19:59:52 +00:00
|
|
|
'password' => 'required|min:6|confirmed',
|
2022-10-19 08:18:07 +00:00
|
|
|
'hear_about_us' => 'required|string',
|
2023-11-01 15:58:10 +00:00
|
|
|
'agree_terms' => ['required', Rule::in([true])],
|
|
|
|
'appsumo_license' => ['nullable'],
|
|
|
|
], [
|
2022-10-19 08:18:07 +00:00
|
|
|
'agree_terms' => 'Please agree with the terms and conditions.'
|
2022-09-20 19:59:52 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new user instance after a valid registration.
|
|
|
|
*
|
2023-11-01 15:58:10 +00:00
|
|
|
* @param array $data
|
2022-09-20 19:59:52 +00:00
|
|
|
* @return \App\User
|
|
|
|
*/
|
|
|
|
protected function create(array $data)
|
|
|
|
{
|
|
|
|
$workspace = Workspace::create([
|
|
|
|
'name' => 'My Workspace',
|
|
|
|
'icon' => '🧪',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user = User::create([
|
|
|
|
'name' => $data['name'],
|
|
|
|
'email' => strtolower($data['email']),
|
|
|
|
'password' => bcrypt($data['password']),
|
|
|
|
'hear_about_us' => $data['hear_about_us']
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Add relation with user
|
|
|
|
$user->workspaces()->sync([
|
|
|
|
$workspace->id => [
|
|
|
|
'role' => 'admin'
|
|
|
|
]
|
|
|
|
], false);
|
|
|
|
|
2023-11-01 15:58:10 +00:00
|
|
|
$this->appsumoLicense = AppSumoAuthController::registerWithLicense($user, $data['appsumo_license'] ?? null);
|
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
}
|