2018-10-24 12:24:09 +02:00
|
|
|
<?php
|
2020-05-19 14:59:44 +02:00
|
|
|
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-24 12:24:09 +02:00
|
|
|
|
|
|
|
namespace App\Http\Controllers\Traits;
|
|
|
|
|
|
|
|
use App\Models\User;
|
2018-11-03 02:01:40 +01:00
|
|
|
use App\Utils\Traits\UserSessionAttributes;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Http\RedirectResponse;
|
2020-06-26 14:20:45 +02:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2018-10-24 12:24:09 +02:00
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class VerifiesUserEmail.
|
2019-01-27 00:22:57 +01:00
|
|
|
*/
|
2018-10-24 12:24:09 +02:00
|
|
|
trait VerifiesUserEmail
|
|
|
|
{
|
2018-11-03 02:01:40 +01:00
|
|
|
use UserSessionAttributes;
|
2018-10-24 12:24:09 +02:00
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return RedirectResponse
|
2019-01-27 00:22:57 +01:00
|
|
|
*/
|
2020-03-11 00:40:10 +01:00
|
|
|
public function confirm()
|
2018-10-24 12:24:09 +02:00
|
|
|
{
|
2020-06-26 14:20:45 +02:00
|
|
|
$user = User::where('confirmation_code', request()->confirmation_code)->first();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-06-26 14:20:45 +02:00
|
|
|
// if ($user = User::whereRaw("BINARY `confirmation_code`= ?", request()->input('confirmation_code'))->first()) {
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $user) {
|
2020-06-26 14:20:45 +02:00
|
|
|
return $this->render('auth.confirmed', ['root' => 'themes', 'message' => ctrans('texts.wrong_confirmation')]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null($user->password) || empty($user->password)) {
|
|
|
|
return $this->render('auth.confirmation_with_password', ['root' => 'themes']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$user->email_verified_at = now();
|
|
|
|
$user->confirmation_code = null;
|
|
|
|
$user->save();
|
|
|
|
|
|
|
|
return $this->render('auth.confirmed', [
|
|
|
|
'root' => 'themes',
|
|
|
|
'message' => ctrans('texts.security_confirmation'),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function confirmWithPassword()
|
|
|
|
{
|
|
|
|
$user = User::where('confirmation_code', request()->confirmation_code)->first();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $user) {
|
2020-06-26 14:20:45 +02:00
|
|
|
return $this->render('auth.confirmed', ['root' => 'themes', 'message' => ctrans('texts.wrong_confirmation')]);
|
2018-10-24 12:24:09 +02:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-06-26 14:20:45 +02:00
|
|
|
request()->validate([
|
|
|
|
'password' => ['required', 'min:6', 'confirmed'],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user->password = Hash::make(request()->password);
|
|
|
|
|
|
|
|
$user->email_verified_at = now();
|
|
|
|
$user->confirmation_code = null;
|
|
|
|
$user->save();
|
2018-10-24 12:24:09 +02:00
|
|
|
|
2020-05-19 14:59:44 +02:00
|
|
|
return $this->render('auth.confirmed', [
|
|
|
|
'root' => 'themes',
|
2020-06-26 14:20:45 +02:00
|
|
|
'message' => ctrans('texts.security_confirmation'),
|
2020-05-19 14:59:44 +02:00
|
|
|
]);
|
2018-10-24 12:24:09 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|