mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-22 22:30:05 +01:00
Code refactoring
This commit is contained in:
parent
b113109340
commit
523c857d18
@ -49,7 +49,7 @@ class TwoFAccount extends Model implements Sortable
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $hidden = ['uri', 'secret', 'algorithm'];
|
||||
protected $hidden = ['uri', 'secret', 'algorithm', 'created_at', 'updated_at'];
|
||||
|
||||
|
||||
/**
|
||||
@ -111,156 +111,6 @@ public function scopeOfGroup($query, $groupId)
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* Null empty icon resource has gone
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function getIconAttribute($value)
|
||||
{
|
||||
if (\App::environment('testing') == false) {
|
||||
if( !Storage::exists('public/icons/' . $value) ) {
|
||||
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Prevent setting a missing icon
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function setIconAttribute($value)
|
||||
{
|
||||
if( !Storage::exists('public/icons/' . $value) && \App::environment('testing') == false ) {
|
||||
|
||||
$this->attributes['icon'] = '';
|
||||
}
|
||||
else {
|
||||
|
||||
$this->attributes['icon'] = $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get decyphered uri
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getUriAttribute($value)
|
||||
{
|
||||
if( Options::get('useEncryption') )
|
||||
{
|
||||
try {
|
||||
return Crypt::decryptString($value);
|
||||
}
|
||||
catch (Exception $e) {
|
||||
return '*encrypted*';
|
||||
}
|
||||
}
|
||||
else {
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set uri attribute
|
||||
*
|
||||
* @param string $value
|
||||
* @return void
|
||||
*/
|
||||
public function setUriAttribute($value)
|
||||
{
|
||||
$this->populateFromUri($value);
|
||||
$this->attributes['uri'] = Options::get('useEncryption') ? Crypt::encryptString($value) : $value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get decyphered account
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getAccountAttribute($value)
|
||||
{
|
||||
if( Options::get('useEncryption') )
|
||||
{
|
||||
try {
|
||||
return Crypt::decryptString($value);
|
||||
}
|
||||
catch (Exception $e) {
|
||||
return '*encrypted*';
|
||||
}
|
||||
}
|
||||
else {
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set encrypted account
|
||||
*
|
||||
* @param string $value
|
||||
* @return void
|
||||
*/
|
||||
public function setAccountAttribute($value)
|
||||
{
|
||||
$this->attributes['account'] = Options::get('useEncryption') ? Crypt::encryptString($value) : $value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get IsConsistent attribute
|
||||
*
|
||||
* @return bool
|
||||
*
|
||||
*/
|
||||
public function getIsConsistentAttribute()
|
||||
{
|
||||
return $this->uri === '*encrypted*' || $this->account === '*encrypted*' ? false : true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Populate the OTP sub-object wih the model URI
|
||||
*
|
||||
*/
|
||||
private function populateFromUri($uri)
|
||||
{
|
||||
try {
|
||||
|
||||
$this->otp = Factory::loadFromProvisioningUri($uri);
|
||||
|
||||
// Account and Service values should be already recorded in the db so we set them
|
||||
// only when db has no value
|
||||
if( !$this->service ) { $this->service = $this->otp->getIssuer(); }
|
||||
if( !$this->account ) { $this->account = $this->otp->getLabel(); }
|
||||
|
||||
}
|
||||
catch (\Exception $e) {
|
||||
throw \Illuminate\Validation\ValidationException::withMessages([
|
||||
'qrcode' => __('errors.response.no_valid_otp')
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Populate attributes with direct values
|
||||
* @param Array|array $attrib All attributes to be set
|
||||
@ -327,16 +177,6 @@ public function populate(Array $attrib = [])
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Update the uri attribute using the OTP object
|
||||
* @return void
|
||||
*/
|
||||
private function refreshUri() : void
|
||||
{
|
||||
$this->uri = urldecode($this->otp->getProvisioningUri());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Generate a token which is valid at the current time
|
||||
* @return string The generated token
|
||||
@ -350,7 +190,6 @@ public function generateToken() : string
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Increment the hotp counter by 1
|
||||
* @return string The generated token
|
||||
@ -364,6 +203,174 @@ public function increaseHotpCounter() : void
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Populate the OTP sub-object wih the model URI
|
||||
*
|
||||
*/
|
||||
private function populateFromUri($uri)
|
||||
{
|
||||
try {
|
||||
|
||||
$this->otp = Factory::loadFromProvisioningUri($uri);
|
||||
|
||||
// Account and Service values should be already recorded in the db so we set them
|
||||
// only when db has no value
|
||||
if( !$this->service ) { $this->service = $this->otp->getIssuer(); }
|
||||
if( !$this->account ) { $this->account = $this->otp->getLabel(); }
|
||||
|
||||
}
|
||||
catch (\Exception $e) {
|
||||
throw \Illuminate\Validation\ValidationException::withMessages([
|
||||
'qrcode' => __('errors.response.no_valid_otp')
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Update the uri attribute using the OTP object
|
||||
* @return void
|
||||
*/
|
||||
private function refreshUri() : void
|
||||
{
|
||||
$this->uri = urldecode($this->otp->getProvisioningUri());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get icon attribute
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function getIconAttribute($value)
|
||||
{
|
||||
// Return an empty string if the corresponding resource does not exist on storage
|
||||
if (\App::environment('testing') == false) {
|
||||
if( !Storage::exists('public/icons/' . $value) ) {
|
||||
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Icon attribute setter
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function setIconAttribute($value)
|
||||
{
|
||||
// Prevent setting a missing icon
|
||||
if( !Storage::exists('public/icons/' . $value) && \App::environment('testing') == false ) {
|
||||
|
||||
$this->attributes['icon'] = '';
|
||||
}
|
||||
else {
|
||||
|
||||
$this->attributes['icon'] = $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get uri attribute
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getUriAttribute($value)
|
||||
{
|
||||
// Decipher when needed
|
||||
if( Options::get('useEncryption') )
|
||||
{
|
||||
try {
|
||||
return Crypt::decryptString($value);
|
||||
}
|
||||
catch (Exception $e) {
|
||||
return '*encrypted*';
|
||||
}
|
||||
}
|
||||
else {
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set uri attribute
|
||||
*
|
||||
* @param string $value
|
||||
* @return void
|
||||
*/
|
||||
public function setUriAttribute($value)
|
||||
{
|
||||
// An uri contains all expected data to define an OTP object.
|
||||
// So we populate the model instance at every uri definition
|
||||
$this->populateFromUri($value);
|
||||
|
||||
// Encrypt if needed
|
||||
$this->attributes['uri'] = Options::get('useEncryption') ? Crypt::encryptString($value) : $value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get account attribute
|
||||
*
|
||||
* @param string $value
|
||||
* @return string
|
||||
*/
|
||||
public function getAccountAttribute($value)
|
||||
{
|
||||
// Decipher when needed
|
||||
if( Options::get('useEncryption') )
|
||||
{
|
||||
try {
|
||||
return Crypt::decryptString($value);
|
||||
}
|
||||
catch (Exception $e) {
|
||||
return '*encrypted*';
|
||||
}
|
||||
}
|
||||
else {
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set account account
|
||||
*
|
||||
* @param string $value
|
||||
* @return void
|
||||
*/
|
||||
public function setAccountAttribute($value)
|
||||
{
|
||||
// Encrypt when needed
|
||||
$this->attributes['account'] = Options::get('useEncryption') ? Crypt::encryptString($value) : $value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get IsConsistent attribute
|
||||
*
|
||||
* @return bool
|
||||
*
|
||||
*/
|
||||
public function getIsConsistentAttribute()
|
||||
{
|
||||
return $this->uri === '*encrypted*' || $this->account === '*encrypted*' ? false : true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* get totpTimestamp attribute
|
||||
*
|
||||
@ -387,7 +394,7 @@ public function getTokenAttribute() : string
|
||||
|
||||
|
||||
/**
|
||||
* get OTP Type attribute
|
||||
* get otpType attribute
|
||||
*
|
||||
* @return string
|
||||
*
|
||||
@ -435,7 +442,7 @@ public function getDigitsAttribute()
|
||||
|
||||
|
||||
/**
|
||||
* get TOTP Period attribute
|
||||
* get totpPeriod attribute
|
||||
*
|
||||
* @return string
|
||||
*
|
||||
@ -447,7 +454,7 @@ public function getTotpPeriodAttribute()
|
||||
|
||||
|
||||
/**
|
||||
* get HOTP counter attribute
|
||||
* get HotpCounter attribute
|
||||
*
|
||||
* @return string
|
||||
*
|
||||
@ -459,7 +466,7 @@ public function getHotpCounterAttribute()
|
||||
|
||||
|
||||
/**
|
||||
* set HOTP counter attribute
|
||||
* set HotpCounter attribute
|
||||
*
|
||||
* @return string
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user