invoiceninja/app/Http/Controllers/TwoFactorController.php

83 lines
2.3 KiB
PHP
Raw Normal View History

2021-02-20 11:45:20 +11:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2021-02-20 11:45:20 +11:00
*/
namespace App\Http\Controllers;
use PragmaRX\Google2FA\Google2FA;
use Crypt;
class TwoFactorController extends BaseController
{
public function setupTwoFactor()
{
$user = auth()->user();
if ($user->google_2fa_secret)
return response()->json(['message' => '2FA already enabled'], 400);
elseif(! $user->phone)
return response()->json(['message' => ctrans('texts.set_phone_for_two_factor')], 400);
2021-03-08 07:49:33 +11:00
elseif(! $user->isVerified())
2021-02-20 11:45:20 +11:00
return response()->json(['message' => 'Please confirm your account first'], 400);
$google2fa = new Google2FA();
$secret = $google2fa->generateSecretKey();
2021-03-09 07:46:30 +11:00
$qr_code = $google2fa->getQRCodeUrl(
2021-02-24 10:00:51 +11:00
config('ninja.app_name'),
2021-02-20 11:45:20 +11:00
$user->email,
$secret
);
$data = [
'secret' => $secret,
2021-03-09 21:53:25 +11:00
'qrCode' => $qr_code,
2021-02-20 11:45:20 +11:00
];
return response()->json(['data' => $data], 200);
}
public function enableTwoFactor()
{
2021-03-15 08:40:07 +11:00
$google2fa = new Google2FA();
2021-02-20 11:45:20 +11:00
$user = auth()->user();
$secret = request()->input('secret');
$oneTimePassword = request()->input('one_time_password');
2021-03-16 22:47:14 +11:00
if($google2fa->verifyKey($secret, $oneTimePassword) && $user->phone && $user->email_verified_at){
2021-03-16 09:33:55 +11:00
2021-02-20 11:45:20 +11:00
$user->google_2fa_secret = encrypt($secret);
2021-03-18 22:46:58 +11:00
2021-02-20 11:45:20 +11:00
$user->save();
2021-03-16 09:33:55 +11:00
return response()->json(['message' => ctrans('texts.enabled_two_factor')], 200);
} elseif (! $secret || ! $google2fa->verifyKey($secret, $oneTimePassword)) {
2021-02-20 11:45:20 +11:00
2021-03-17 00:40:58 +11:00
return response()->json(['message' => ctrans('texts.invalid_one_time_password')], 400);
2021-03-16 09:33:55 +11:00
}
2021-03-17 00:40:58 +11:00
return response()->json(['message' => 'No phone record or user is not confirmed'], 400);
2021-03-16 09:33:55 +11:00
2021-02-20 11:45:20 +11:00
}
2021-03-16 09:33:55 +11:00
2021-06-06 19:21:05 +10:00
public function disableTwoFactor()
{
$user = auth()->user();
$user->google_2fa_secret = null;
$user->save();
return $this->itemResponse($user);
}
2021-02-20 11:45:20 +11:00
}