mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 12:01:33 +00:00
365 lines
13 KiB
PHP
365 lines
13 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Requests\Disable2faPasswordSecurityRequest;
|
|
use App\Models\PasswordSecurity;
|
|
use App\Models\TrustedDevice;
|
|
use App\Models\User;
|
|
use Illuminate\Auth\Events\OtherDeviceLogout;
|
|
use Illuminate\Contracts\View\Factory;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Routing\Redirector;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Str;
|
|
use PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException;
|
|
use PragmaRX\Google2FA\Exceptions\InvalidCharactersException;
|
|
use PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException;
|
|
use PragmaRX\Google2FALaravel\Facade as Google2FA;
|
|
|
|
class PasswordSecurityController extends Controller
|
|
{
|
|
public function show2faForm(Request $request): Application|View|Factory|\Illuminate\Contracts\Foundation\Application|RedirectResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
$google2fa_url = '';
|
|
if ($user->passwordSecurity()->exists()) {
|
|
$google2fa_url = Google2FA::getQRCodeInline(
|
|
config('app.name'),
|
|
$user->email,
|
|
$user->passwordSecurity->google2fa_secret
|
|
);
|
|
}
|
|
$data = [
|
|
'user' => $user,
|
|
'google2fa_url' => $google2fa_url,
|
|
];
|
|
|
|
return view('auth.2fa')->with('data', $data);
|
|
}
|
|
|
|
/**
|
|
* @throws IncompatibleWithGoogleAuthenticatorException
|
|
* @throws InvalidCharactersException
|
|
* @throws SecretKeyTooShortException
|
|
*/
|
|
public function generate2faSecret(Request $request): RedirectResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
// Add the secret key to the registration data
|
|
PasswordSecurity::create(
|
|
[
|
|
'user_id' => $user->id,
|
|
'google2fa_enable' => 0,
|
|
'google2fa_secret' => Google2FA::generateSecretKey(),
|
|
]
|
|
);
|
|
|
|
// Check if request is from profile page
|
|
if ($request->has('from_profile') || $request->headers->get('referer') && str_contains($request->headers->get('referer'), 'profileedit')) {
|
|
return redirect()->to('profileedit#security')->with('success_2fa', 'Secret Key is generated, Please scan the QR code and verify to Enable 2FA');
|
|
}
|
|
|
|
return redirect()->to('2fa')->with('success', 'Secret Key is generated, Please verify Code to Enable 2FA');
|
|
}
|
|
|
|
/**
|
|
* @throws IncompatibleWithGoogleAuthenticatorException
|
|
* @throws InvalidCharactersException
|
|
* @throws SecretKeyTooShortException
|
|
*/
|
|
public function enable2fa(Request $request): RedirectResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
$secret = $request->input('verify-code');
|
|
$valid = Google2FA::verifyKey($user->passwordSecurity->google2fa_secret, $secret);
|
|
if ($valid) {
|
|
$user->passwordSecurity->google2fa_enable = 1;
|
|
$user->passwordSecurity->save();
|
|
|
|
// Always redirect to profile page after enabling 2FA
|
|
return redirect()->to('profileedit#security')->with('success_2fa', '2FA is Enabled Successfully.');
|
|
}
|
|
|
|
// Always redirect to profile page on failure as well
|
|
return redirect()->to('profileedit#security')->with('error_2fa', 'Invalid Verification Code, Please try again.');
|
|
}
|
|
|
|
public function cancelSetup(Request $request): RedirectResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
// Only allow canceling if 2FA is not yet enabled
|
|
if ($user->passwordSecurity()->exists() && ! $user->passwordSecurity->google2fa_enable) {
|
|
$user->passwordSecurity()->delete();
|
|
|
|
return redirect()->to('profileedit#security')->with('success_2fa', '2FA setup has been cancelled.');
|
|
}
|
|
|
|
return redirect()->to('profileedit#security')->with('error_2fa', 'Unable to cancel 2FA setup.');
|
|
}
|
|
|
|
public function disable2fa(Disable2faPasswordSecurityRequest $request): Redirector|RedirectResponse|\Illuminate\Contracts\Foundation\Application
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
if (! (Hash::check($request->get('current-password'), $user->password))) {
|
|
// Password doesn't match - always redirect to profile page with error
|
|
return redirect()->to('profileedit#security')->with('error_2fa', 'Your password does not match with your account password. Please try again.');
|
|
}
|
|
|
|
$validatedData = $request->validated();
|
|
|
|
// Delete the password security record entirely to fully disable 2FA
|
|
if ($user->passwordSecurity) {
|
|
$user->passwordSecurity->delete();
|
|
}
|
|
|
|
// Always redirect to profile page after disabling 2FA
|
|
return redirect()->to('profileedit#security')->with('success_2fa', '2FA is now Disabled.');
|
|
}
|
|
|
|
/**
|
|
* Verify the 2FA code provided by the user.
|
|
*/
|
|
public function verify2fa(Request $request): RedirectResponse
|
|
{
|
|
$request->validate([
|
|
'one_time_password' => 'required|numeric',
|
|
'trust_device' => 'nullable|boolean',
|
|
]);
|
|
|
|
// Get the user ID from session
|
|
if (! $request->session()->has('2fa:user:id')) {
|
|
return $this->redirectToLoginWithError('The two-factor authentication session has expired. Please login again.');
|
|
}
|
|
|
|
$userId = $request->session()->get('2fa:user:id');
|
|
$user = User::find($userId);
|
|
|
|
if (! $user || ! $user->passwordSecurity) {
|
|
$request->session()->forget('2fa:user:id');
|
|
|
|
return $this->redirectToLoginWithError('User not found or 2FA not configured. Please login again.');
|
|
}
|
|
|
|
// Verify the OTP code
|
|
$valid = Google2FA::verifyKey(
|
|
$user->passwordSecurity->google2fa_secret,
|
|
$request->input('one_time_password')
|
|
);
|
|
|
|
if (! $valid) {
|
|
return redirect()->route('2fa.verify')
|
|
->with('error', 'Invalid authentication code. Please try again.');
|
|
}
|
|
|
|
// Get the remember me preference from session (defaults to false if not set)
|
|
$rememberMe = $request->session()->get('2fa:remember', false);
|
|
|
|
// Log the user back in with the remember me preference
|
|
Auth::login($user, $rememberMe);
|
|
|
|
// Mark the user as having passed 2FA
|
|
session([config('google2fa.session_var') => true]);
|
|
|
|
// Store the timestamp for determining how long the 2FA session is valid
|
|
session([config('google2fa.session_var').'.auth.passed_at' => time()]);
|
|
|
|
$passwordBreached = (bool) $request->session()->get('2fa:password_breached', false);
|
|
|
|
$newSessionToken = Str::random(60);
|
|
$user->forceFill([
|
|
'session_token' => $newSessionToken,
|
|
])->save();
|
|
$request->session()->put('session_token_web', $newSessionToken);
|
|
event(new OtherDeviceLogout(Auth::getDefaultDriver(), $user));
|
|
|
|
$request->session()->forget(['2fa:user:id', '2fa:remember', '2fa:password_breached']);
|
|
|
|
// Determine where to redirect after successful verification
|
|
$redirectUrl = $request->session()->pull('url.intended', '/');
|
|
|
|
// Create the redirect response
|
|
$redirect = redirect()->to($redirectUrl)
|
|
->with('success', 'Two-factor authentication verified successfully.');
|
|
|
|
if ($passwordBreached) {
|
|
$redirect = $redirect->with('warning', 'Security Alert: Your password has been found in a data breach. We strongly recommend changing it immediately in your account settings.');
|
|
}
|
|
|
|
// If the user has checked "trust this device", create a trust token
|
|
if ($request->has('trust_device') && $request->input('trust_device') == 1) {
|
|
$trustedDevice = TrustedDevice::issueForUser($user, $request->ip(), $request->userAgent());
|
|
$expiresAt = $trustedDevice['device']->expires_at->getTimestamp();
|
|
|
|
$cookieData = [
|
|
'user_id' => $user->id,
|
|
'token' => $trustedDevice['plain'],
|
|
'expires_at' => $expiresAt,
|
|
];
|
|
|
|
$cookieValue = json_encode($cookieData, JSON_UNESCAPED_SLASHES);
|
|
if ($cookieValue !== false) {
|
|
$redirect->withCookie(cookie(
|
|
'2fa_trusted_device',
|
|
$cookieValue,
|
|
60 * 24 * 30,
|
|
'/',
|
|
config('session.domain'),
|
|
config('session.secure'),
|
|
true,
|
|
false,
|
|
config('session.same_site', 'lax')
|
|
));
|
|
}
|
|
}
|
|
|
|
return $redirect;
|
|
}
|
|
|
|
/**
|
|
* Display the 2FA verification form for a user who has already authenticated with username/password
|
|
* but needs to enter their 2FA code.
|
|
*/
|
|
public function getVerify2fa(Request $request): mixed
|
|
{
|
|
// Check if user ID is stored in the session
|
|
if (! $request->session()->has('2fa:user:id')) {
|
|
return $this->redirectToLoginWithError('The two-factor authentication session has expired. Please login again.');
|
|
}
|
|
|
|
// Get the user ID from session
|
|
$userId = $request->session()->get('2fa:user:id');
|
|
|
|
// Get the user
|
|
$user = User::find($userId);
|
|
if (! $user) {
|
|
$request->session()->forget('2fa:user:id');
|
|
|
|
return $this->redirectToLoginWithError('User not found. Please login again.');
|
|
}
|
|
|
|
return view('auth.2fa_verify', compact('user'));
|
|
}
|
|
|
|
/**
|
|
* Handle disabling 2FA directly from profile page to avoid form conflicts.
|
|
* This route is specifically for the profile page 2FA section.
|
|
*/
|
|
public function profileDisable2fa(Request $request): RedirectResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
$request->validate([
|
|
'current-password' => 'required',
|
|
]);
|
|
|
|
if (! (Hash::check($request->get('current-password'), $user->password))) {
|
|
return redirect()->to('profileedit#security')->with('error_2fa', 'Your password does not match with your account password. Please try again.');
|
|
}
|
|
|
|
if ($user->passwordSecurity) {
|
|
$user->passwordSecurity->google2fa_enable = 0;
|
|
$user->passwordSecurity->save();
|
|
}
|
|
|
|
return redirect()->to('profileedit#security')->with('success_2fa', '2FA is now Disabled.');
|
|
}
|
|
|
|
/**
|
|
* Show the 2FA enable form on a dedicated page
|
|
*/
|
|
public function showEnable2faForm(Request $request): Application|View|Factory|\Illuminate\Contracts\Foundation\Application|RedirectResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
$google2fa_url = '';
|
|
if ($user->passwordSecurity()->exists()) {
|
|
$google2fa_url = Google2FA::getQRCodeInline(
|
|
config('app.name'),
|
|
$user->email,
|
|
$user->passwordSecurity->google2fa_secret
|
|
);
|
|
}
|
|
|
|
$data = [
|
|
'user' => $user,
|
|
'google2fa_url' => $google2fa_url,
|
|
];
|
|
|
|
return view('auth.2fa')->with('data', $data);
|
|
}
|
|
|
|
/**
|
|
* Show the 2FA disable form on a dedicated page
|
|
*/
|
|
public function showDisable2faForm(Request $request): Application|View|Factory|\Illuminate\Contracts\Foundation\Application|RedirectResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (! $user) {
|
|
return $this->redirectToLoginWithError('Please log in to access 2FA settings.');
|
|
}
|
|
|
|
$google2fa_url = '';
|
|
if ($user->passwordSecurity()->exists()) {
|
|
$google2fa_url = Google2FA::getQRCodeInline(
|
|
config('app.name'),
|
|
$user->email,
|
|
$user->passwordSecurity->google2fa_secret
|
|
);
|
|
}
|
|
|
|
$data = [
|
|
'user' => $user,
|
|
'google2fa_url' => $google2fa_url,
|
|
];
|
|
|
|
return view('auth.2fa')->with('data', $data);
|
|
}
|
|
|
|
private function redirectToLoginWithError(string $message): RedirectResponse
|
|
{
|
|
return redirect()->route('login')->with('error', $message);
|
|
}
|
|
}
|