primo upload

This commit is contained in:
claus75a
2024-03-16 20:37:32 +01:00
commit e43b9b4b28
3019 changed files with 406000 additions and 0 deletions
@@ -0,0 +1,11 @@
<?php
namespace Vanguard\Http\Requests\TwoFactor;
use Vanguard\Http\Requests\Request;
use Vanguard\Repositories\User\UserRepository;
use Vanguard\User;
class DisableTwoFactorRequest extends TwoFactorRequest
{
}
@@ -0,0 +1,19 @@
<?php
namespace Vanguard\Http\Requests\TwoFactor;
class EnableTwoFactorRequest extends TwoFactorRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'country_code' => 'required|numeric|integer',
'phone_number' => 'required|numeric',
];
}
}
@@ -0,0 +1,7 @@
<?php
namespace Vanguard\Http\Requests\TwoFactor;
class ReSendTwoFactorTokenRequest extends TwoFactorRequest
{
}
@@ -0,0 +1,48 @@
<?php
namespace Vanguard\Http\Requests\TwoFactor;
use Vanguard\Http\Requests\Request;
use Vanguard\Repositories\User\UserRepository;
abstract class TwoFactorRequest extends Request
{
/**
* Authorize the request.
*
* @return bool
*/
public function authorize()
{
if ($userId = $this->get('user')) {
// Only users with "users.manage" permission can enable 2FA for other users.
return $this->user()->hasPermission('users.manage') || $this->user()->id == $userId;
}
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [];
}
/**
* Get the user for which we should enable the 2FA.
*
* @return mixed
*/
public function theUser()
{
if ($userId = $this->get('user')) {
return app(UserRepository::class)->find($userId);
}
return $this->user();
}
}
@@ -0,0 +1,18 @@
<?php
namespace Vanguard\Http\Requests\TwoFactor;
class VerifyTwoFactorTokenRequest extends TwoFactorRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'token' => 'required'
];
}
}