mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-18 11:23:30 -05:00
The data is already provided in the url and is validated by laravel to ensure it matches the token on the database record.
95 lines
3.2 KiB
PHP
95 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author Roardom <roardom@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Group;
|
|
use App\Models\User;
|
|
use App\Services\Unit3dAnnounce;
|
|
use Illuminate\Auth\Events\PasswordReset;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Password;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Support\Timebox;
|
|
use Illuminate\Validation\Rules\Password as RulesPassword;
|
|
|
|
class NewPasswordController extends Controller
|
|
{
|
|
/**
|
|
* Create new password.
|
|
*/
|
|
public function create(Request $request, string $token): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
{
|
|
return view('auth.reset-password', [
|
|
'token' => $token,
|
|
'email' => $request->query('email'),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Store a new password.
|
|
*/
|
|
public function store(Request $request): \Illuminate\Http\RedirectResponse
|
|
{
|
|
$request->validate([
|
|
'token' => 'required',
|
|
'email' => 'required|email',
|
|
'password' => RulesPassword::min(12)->mixedCase()->letters()->numbers()->uncompromised(),
|
|
]);
|
|
|
|
// Use timebox to prevent user enumeration since laravel by default
|
|
// will return early if user doesn't exist or token is invalid.
|
|
$status = new Timebox()->call(function () use ($request) {
|
|
return Password::reset(
|
|
$request->only('email', 'password', 'password_confirmation', 'token'),
|
|
function (User $user, string $password): void {
|
|
$user->forceFill([
|
|
'password' => Hash::make($password)
|
|
])->setRememberToken(Str::random(60));
|
|
|
|
$validatingGroupId = Group::query()->where('slug', '=', 'validating')->soleValue('id');
|
|
|
|
if ($user->group_id === $validatingGroupId) {
|
|
$user->group_id = Group::query()->where('slug', '=', 'user')->soleValue('id');
|
|
|
|
cache()->forget('user:'.$user->passkey);
|
|
|
|
Unit3dAnnounce::addUser($user);
|
|
}
|
|
|
|
if (!$user->hasVerifiedEmail()) {
|
|
$user->markEmailAsVerified();
|
|
}
|
|
|
|
$user->save();
|
|
|
|
$user->passwordResetHistories()->create();
|
|
|
|
event(new PasswordReset($user));
|
|
}
|
|
);
|
|
}, 200000);
|
|
|
|
return $status === Password::PasswordReset
|
|
? redirect()->route('login')->with('status', __('passwords.reset'))
|
|
// Send the "invalid reset token" error instead of the "unknown
|
|
// user" error on failure (Account enumeration).
|
|
: back()->withErrors(['email' => [__('passwords.token')]]);
|
|
}
|
|
}
|