2019-05-20 07:37:41 +02:00
|
|
|
<?php
|
|
|
|
|
2021-12-02 13:15:53 +01:00
|
|
|
namespace App\Models;
|
2019-05-20 07:37:41 +02:00
|
|
|
|
2020-11-05 22:54:06 +01:00
|
|
|
use Exception;
|
2022-07-19 17:27:23 +02:00
|
|
|
use App\Services\LogoService;
|
2022-07-30 17:51:02 +02:00
|
|
|
use App\Facades\Settings;
|
2022-07-05 10:10:24 +02:00
|
|
|
use App\Models\Dto\TotpDto;
|
|
|
|
use App\Models\Dto\HotpDto;
|
2021-11-30 17:34:35 +01:00
|
|
|
use App\Events\TwoFAccountDeleted;
|
2022-07-05 10:10:24 +02:00
|
|
|
use App\Exceptions\InvalidSecretException;
|
|
|
|
use App\Exceptions\InvalidOtpParameterException;
|
|
|
|
use App\Exceptions\UnsupportedOtpTypeException;
|
|
|
|
use App\Exceptions\UndecipherableException;
|
|
|
|
use Illuminate\Validation\ValidationException;
|
2020-03-25 21:58:05 +01:00
|
|
|
use Spatie\EloquentSortable\Sortable;
|
|
|
|
use Spatie\EloquentSortable\SortableTrait;
|
2022-07-05 10:10:24 +02:00
|
|
|
use OTPHP\TOTP;
|
|
|
|
use OTPHP\HOTP;
|
|
|
|
use OTPHP\Factory;
|
|
|
|
use SteamTotp\SteamTotp;
|
2019-05-20 07:37:41 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2022-07-05 10:10:24 +02:00
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use Illuminate\Support\Arr;
|
2020-10-31 01:16:15 +01:00
|
|
|
use Illuminate\Support\Facades\Crypt;
|
2021-10-15 23:46:21 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2022-07-05 10:10:24 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2021-12-02 13:15:53 +01:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2022-07-05 10:10:24 +02:00
|
|
|
use ParagonIE\ConstantTime\Base32;
|
2022-07-19 17:27:23 +02:00
|
|
|
use Illuminate\Support\Facades\App;
|
2022-07-19 18:27:09 +02:00
|
|
|
use Illuminate\Support\Facades\Http;
|
2019-05-20 07:37:41 +02:00
|
|
|
|
2020-03-25 21:58:05 +01:00
|
|
|
class TwoFAccount extends Model implements Sortable
|
2019-05-20 07:37:41 +02:00
|
|
|
{
|
2020-03-25 21:58:05 +01:00
|
|
|
|
2021-12-02 13:15:53 +01:00
|
|
|
use SortableTrait, HasFactory;
|
2020-03-25 21:58:05 +01:00
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
const TOTP = 'totp';
|
|
|
|
const HOTP = 'hotp';
|
|
|
|
const STEAM_TOTP = 'steamtotp';
|
|
|
|
|
|
|
|
const SHA1 = 'sha1';
|
|
|
|
const MD5 = 'md5';
|
|
|
|
const SHA256 = 'sha256';
|
|
|
|
const SHA512 = 'sha512';
|
|
|
|
|
|
|
|
const DEFAULT_PERIOD = 30;
|
|
|
|
const DEFAULT_COUNTER = 0;
|
|
|
|
const DEFAULT_DIGITS = 6;
|
|
|
|
const DEFAULT_ALGORITHM = self::SHA1;
|
|
|
|
|
|
|
|
private const IMAGELINK_STORAGE_PATH = 'imagesLink/';
|
|
|
|
private const ICON_STORAGE_PATH = 'public/icons/';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of OTP types supported by 2FAuth
|
|
|
|
*/
|
|
|
|
private array $generatorClassMap = [
|
|
|
|
'OTPHP\TOTP' => self::TOTP,
|
|
|
|
'OTPHP\HOTP' => self::HOTP,
|
|
|
|
];
|
2020-03-25 21:58:05 +01:00
|
|
|
|
2020-01-10 13:43:36 +01:00
|
|
|
/**
|
|
|
|
* model's array form.
|
|
|
|
*
|
2022-08-26 15:57:18 +02:00
|
|
|
* @var string[]
|
2020-01-10 13:43:36 +01:00
|
|
|
*/
|
2022-07-05 10:10:24 +02:00
|
|
|
protected $fillable = [
|
|
|
|
// 'service',
|
|
|
|
// 'account',
|
|
|
|
// 'otp_type',
|
|
|
|
// 'digits',
|
|
|
|
// 'secret',
|
|
|
|
// 'algorithm',
|
|
|
|
// 'counter',
|
|
|
|
// 'period',
|
|
|
|
// 'icon'
|
|
|
|
];
|
2019-05-24 14:44:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'twofaccounts';
|
2020-01-08 17:03:41 +01:00
|
|
|
|
|
|
|
|
2020-01-24 12:56:38 +01:00
|
|
|
/**
|
|
|
|
* The accessors to append to the model's array form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
public $appends = [];
|
2022-07-05 10:10:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The model's default values for attributes.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $attributes = [
|
|
|
|
'digits' => 6,
|
|
|
|
'algorithm' => self::SHA1,
|
|
|
|
];
|
2020-01-24 12:56:38 +01:00
|
|
|
|
|
|
|
|
2020-11-06 15:51:52 +01:00
|
|
|
/**
|
|
|
|
* The attributes that should be hidden for arrays.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
protected $hidden = [];
|
2020-11-12 00:09:33 +01:00
|
|
|
|
|
|
|
|
2020-11-23 12:54:06 +01:00
|
|
|
/**
|
|
|
|
* The attributes that should be cast.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
protected $casts = [];
|
2020-11-06 15:51:52 +01:00
|
|
|
|
|
|
|
|
2021-11-30 17:34:35 +01:00
|
|
|
/**
|
|
|
|
* The event map for the model.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dispatchesEvents = [
|
|
|
|
'deleted' => TwoFAccountDeleted::class,
|
|
|
|
];
|
|
|
|
|
|
|
|
|
2020-01-31 23:05:06 +01:00
|
|
|
/**
|
|
|
|
* Override The "booting" method of the model
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected static function boot()
|
|
|
|
{
|
|
|
|
parent::boot();
|
2021-11-30 17:34:35 +01:00
|
|
|
|
2022-08-26 15:57:18 +02:00
|
|
|
static::saving(function (TwoFAccount $twofaccount) {
|
2022-07-05 10:10:24 +02:00
|
|
|
if (!$twofaccount->legacy_uri) $twofaccount->legacy_uri = $twofaccount->getURI();
|
|
|
|
if ($twofaccount->otp_type == TwoFAccount::TOTP && !$twofaccount->period) $twofaccount->period = TwoFAccount::DEFAULT_PERIOD;
|
|
|
|
if ($twofaccount->otp_type == TwoFAccount::HOTP && !$twofaccount->counter) $twofaccount->counter = TwoFAccount::DEFAULT_COUNTER;
|
|
|
|
});
|
|
|
|
|
2021-11-30 17:34:35 +01:00
|
|
|
// static::deleted(function ($model) {
|
|
|
|
// Log::info(sprintf('TwoFAccount #%d deleted', $model->id));
|
|
|
|
// });
|
2020-01-31 23:05:06 +01:00
|
|
|
}
|
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
/**
|
|
|
|
* Fill the model with an array of attributes.
|
|
|
|
*
|
|
|
|
* @param array $attributes
|
|
|
|
* @return $this
|
|
|
|
*
|
|
|
|
* @throws \Illuminate\Database\Eloquent\MassAssignmentException
|
|
|
|
*/
|
|
|
|
// public function fill(array $attributes)
|
|
|
|
// {
|
|
|
|
// parent::fill($attributes);
|
|
|
|
|
|
|
|
// if ($this->otp_type == self::TOTP && !$this->period) $this->period = self::DEFAULT_PERIOD;
|
|
|
|
// if ($this->otp_type == self::HOTP && !$this->counter) $this->counter = self::DEFAULT_COUNTER;
|
|
|
|
|
|
|
|
// return $this;
|
|
|
|
// }
|
|
|
|
|
2020-01-31 23:05:06 +01:00
|
|
|
|
2020-03-25 21:58:05 +01:00
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Settings for @spatie/eloquent-sortable package
|
2020-03-25 21:58:05 +01:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $sortable = [
|
|
|
|
'order_column_name' => 'order_column',
|
|
|
|
'sort_when_creating' => true,
|
|
|
|
];
|
|
|
|
|
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
/**
|
|
|
|
* The OTP generator.
|
|
|
|
* Instanciated as null to keep the model light
|
|
|
|
*
|
2022-08-26 15:57:18 +02:00
|
|
|
* @var \OTPHP\OTPInterface|null
|
2022-07-05 10:10:24 +02:00
|
|
|
*/
|
|
|
|
protected $generator = null;
|
|
|
|
|
|
|
|
|
2020-01-24 12:56:38 +01:00
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Get legacy_uri attribute
|
2020-11-12 00:09:33 +01:00
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return string
|
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
public function getLegacyUriAttribute($value)
|
2020-01-24 12:56:38 +01:00
|
|
|
{
|
2021-09-17 23:55:09 +02:00
|
|
|
|
|
|
|
return $this->decryptOrReturn($value);
|
2020-01-24 12:56:38 +01:00
|
|
|
}
|
2020-01-21 21:31:28 +01:00
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Set legacy_uri attribute
|
2020-01-21 21:31:28 +01:00
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return void
|
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
public function setLegacyUriAttribute($value)
|
2020-10-31 01:16:15 +01:00
|
|
|
{
|
2020-11-18 01:13:00 +01:00
|
|
|
// Encrypt if needed
|
2021-09-17 23:55:09 +02:00
|
|
|
$this->attributes['legacy_uri'] = $this->encryptOrReturn($value);
|
2020-10-31 01:16:15 +01:00
|
|
|
}
|
2020-01-21 21:31:28 +01:00
|
|
|
|
2020-11-12 00:09:33 +01:00
|
|
|
|
2020-01-21 21:31:28 +01:00
|
|
|
/**
|
2020-11-18 01:13:00 +01:00
|
|
|
* Get account attribute
|
2020-01-21 21:31:28 +01:00
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return string
|
|
|
|
*/
|
2020-11-12 00:09:33 +01:00
|
|
|
public function getAccountAttribute($value)
|
2020-10-31 01:16:15 +01:00
|
|
|
{
|
2021-09-17 23:55:09 +02:00
|
|
|
|
|
|
|
return $this->decryptOrReturn($value);
|
2020-10-31 01:16:15 +01:00
|
|
|
}
|
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Set account attribute
|
2020-10-31 01:16:15 +01:00
|
|
|
*
|
2021-09-17 23:55:09 +02:00
|
|
|
* @param string $value
|
2020-10-31 01:16:15 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setAccountAttribute($value)
|
|
|
|
{
|
2020-11-18 01:13:00 +01:00
|
|
|
// Encrypt when needed
|
2021-09-17 23:55:09 +02:00
|
|
|
$this->attributes['account'] = $this->encryptOrReturn($value);
|
2020-10-31 01:16:15 +01:00
|
|
|
}
|
2020-01-21 21:31:28 +01:00
|
|
|
|
2020-11-12 00:09:33 +01:00
|
|
|
|
2020-10-31 01:16:15 +01:00
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Get secret attribute
|
2020-10-31 01:16:15 +01:00
|
|
|
*
|
2021-09-17 23:55:09 +02:00
|
|
|
* @param string $value
|
|
|
|
* @return string
|
2020-10-31 01:16:15 +01:00
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
public function getSecretAttribute($value)
|
2020-10-31 01:16:15 +01:00
|
|
|
{
|
2020-11-12 00:09:33 +01:00
|
|
|
|
2021-09-17 23:55:09 +02:00
|
|
|
return $this->decryptOrReturn($value);
|
2020-11-14 18:55:10 +01:00
|
|
|
}
|
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Set secret attribute
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return void
|
2020-11-14 18:55:10 +01:00
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
public function setSecretAttribute($value)
|
2020-11-14 18:55:10 +01:00
|
|
|
{
|
2021-09-17 23:55:09 +02:00
|
|
|
// Encrypt when needed
|
|
|
|
$this->attributes['secret'] = $this->encryptOrReturn($value);
|
2020-11-14 18:55:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
/**
|
|
|
|
* Set digits attribute
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setDigitsAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['digits'] = !$value ? 6 : $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set algorithm attribute
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setAlgorithmAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['algorithm'] = !$value ? self::SHA1 : $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set period attribute
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setPeriodAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['period'] = !$value && $this->otp_type === self::TOTP ? self::DEFAULT_PERIOD : $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set counter attribute
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setCounterAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['counter'] = is_null($value) && $this->otp_type === self::HOTP ? self::DEFAULT_COUNTER : $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a One-Time Password with its parameters
|
|
|
|
*
|
|
|
|
* @throws InvalidSecretException The secret is not a valid base32 encoded string
|
|
|
|
* @throws UndecipherableException The secret cannot be deciphered
|
2022-07-13 11:02:09 +02:00
|
|
|
* @return TotpDto|HotpDto
|
2022-07-05 10:10:24 +02:00
|
|
|
*/
|
2022-07-13 11:02:09 +02:00
|
|
|
public function getOTP()
|
2022-07-05 10:10:24 +02:00
|
|
|
{
|
2022-07-20 13:31:51 +02:00
|
|
|
Log::info(sprintf('OTP requested for TwoFAccount (%s)', $this->id ? 'id:'.$this->id: 'preview'));
|
2022-07-05 10:10:24 +02:00
|
|
|
|
|
|
|
// Early exit if the model has an undecipherable secret
|
|
|
|
if (strtolower($this->secret) === __('errors.indecipherable')) {
|
|
|
|
Log::error('Secret cannot be deciphered, OTP generation aborted');
|
|
|
|
|
|
|
|
throw new UndecipherableException();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->initGenerator();
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ( $this->otp_type === self::TOTP || $this->otp_type === self::STEAM_TOTP ) {
|
|
|
|
|
|
|
|
$OtpDto = new TotpDto();
|
|
|
|
$OtpDto->otp_type = $this->otp_type;
|
|
|
|
$OtpDto->generated_at = time();
|
|
|
|
$OtpDto->password = $this->otp_type === self::TOTP
|
|
|
|
? $this->generator->at($OtpDto->generated_at)
|
|
|
|
: SteamTotp::getAuthCode(base64_encode(Base32::decodeUpper($this->secret)));
|
|
|
|
$OtpDto->period = $this->period;
|
|
|
|
}
|
|
|
|
else if ( $this->otp_type === self::HOTP ) {
|
|
|
|
|
|
|
|
$OtpDto = new HotpDto();
|
|
|
|
$OtpDto->otp_type = $this->otp_type;
|
|
|
|
$counter = $this->generator->getCounter();
|
|
|
|
$OtpDto->password = $this->generator->at($counter);
|
|
|
|
$OtpDto->counter = $this->counter = $counter + 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-07-20 13:31:51 +02:00
|
|
|
Log::info(sprintf('New OTP generated for TwoFAccount (%s)', $this->id ? 'id:'.$this->id: 'preview'));
|
2022-07-05 10:10:24 +02:00
|
|
|
|
|
|
|
return $OtpDto;
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (\Exception|\Throwable $ex) {
|
|
|
|
Log::error('An error occured, OTP generation aborted');
|
|
|
|
// Currently a secret issue is the only possible exception thrown by OTPHP for this stack
|
|
|
|
// so it is Ok to send the corresponding 2FAuth exception.
|
|
|
|
// If the generator package change it could be necessary to throw a more generic exception.
|
|
|
|
throw new InvalidSecretException($ex->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill the model using an array of OTP parameters.
|
|
|
|
* Missing parameters will be set with default values
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
2022-07-26 22:35:04 +02:00
|
|
|
public function fillWithOtpParameters(array $parameters, bool $skipIconFetching = false)
|
2022-07-05 10:10:24 +02:00
|
|
|
{
|
|
|
|
$this->otp_type = Arr::get($parameters, 'otp_type');
|
|
|
|
$this->account = Arr::get($parameters, 'account');
|
|
|
|
$this->service = Arr::get($parameters, 'service');
|
|
|
|
$this->icon = Arr::get($parameters, 'icon');
|
|
|
|
$this->secret = Arr::get($parameters, 'secret');
|
|
|
|
$this->algorithm = Arr::get($parameters, 'algorithm', self::SHA1);
|
|
|
|
$this->digits = Arr::get($parameters, 'digits', self::DEFAULT_DIGITS);
|
|
|
|
$this->period = Arr::get($parameters, 'period', $this->otp_type == self::TOTP ? self::DEFAULT_PERIOD : null);
|
|
|
|
$this->counter = Arr::get($parameters, 'counter', $this->otp_type == self::HOTP ? self::DEFAULT_COUNTER : null);
|
|
|
|
|
|
|
|
$this->initGenerator();
|
|
|
|
|
2022-07-07 11:43:23 +02:00
|
|
|
if ($this->otp_type === self::STEAM_TOTP || strtolower($this->service) === 'steam') {
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->enforceAsSteam();
|
|
|
|
}
|
|
|
|
|
2022-07-26 22:35:04 +02:00
|
|
|
if (!$this->icon && $skipIconFetching) {
|
|
|
|
$this->icon = $this->getDefaultIcon();
|
2022-07-29 18:34:27 +02:00
|
|
|
}
|
|
|
|
|
2022-07-30 17:51:02 +02:00
|
|
|
if (!$this->icon && Settings::get('getOfficialIcons') && !$skipIconFetching) {
|
2022-07-26 22:35:04 +02:00
|
|
|
$this->icon = $this->getDefaultIcon();
|
|
|
|
}
|
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
Log::info(sprintf('TwoFAccount filled with OTP parameters'));
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill the model by parsing an otpauth URI
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
2022-07-26 22:35:04 +02:00
|
|
|
public function fillWithURI(string $uri, bool $isSteamTotp = false, bool $skipIconFetching = false)
|
2022-07-05 10:10:24 +02:00
|
|
|
{
|
|
|
|
// First we instanciate the OTP generator
|
|
|
|
try {
|
|
|
|
$this->generator = Factory::loadFromProvisioningUri($uri);
|
|
|
|
}
|
|
|
|
catch (\Assert\AssertionFailedException|\Assert\InvalidArgumentException|\Exception|\Throwable $ex) {
|
|
|
|
throw ValidationException::withMessages([
|
|
|
|
'uri' => __('validation.custom.uri.regex', ['attribute' => 'uri'])
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// As loadFromProvisioningUri() accept URI without label (nor account nor service) we check
|
|
|
|
// that the account is set
|
|
|
|
if ( ! $this->generator->getLabel() ) {
|
|
|
|
Log::error('URI passed to fillWithURI() must contain a label');
|
|
|
|
|
|
|
|
throw ValidationException::withMessages([
|
|
|
|
'label' => __('validation.custom.label.required')
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->otp_type = $this->getGeneratorOtpType();
|
|
|
|
$this->account = $this->generator->getLabel();
|
|
|
|
$this->secret = $this->generator->getSecret();
|
|
|
|
$this->service = $this->generator->getIssuer();
|
|
|
|
$this->algorithm = $this->generator->getDigest();
|
|
|
|
$this->digits = $this->generator->getDigits();
|
|
|
|
$this->period = $this->generator->hasParameter('period') ? $this->generator->getParameter('period') : null;
|
|
|
|
$this->counter = $this->generator->hasParameter('counter') ? $this->generator->getParameter('counter') : null;
|
|
|
|
$this->legacy_uri = $uri;
|
|
|
|
|
2022-07-07 11:43:23 +02:00
|
|
|
if ($isSteamTotp || strtolower($this->service) === 'steam') {
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->enforceAsSteam();
|
|
|
|
}
|
2022-07-19 17:27:23 +02:00
|
|
|
if ($this->generator->hasParameter('image')) {
|
2022-07-07 11:43:23 +02:00
|
|
|
$this->icon = $this->storeImageAsIcon($this->generator->getParameter('image'));
|
2022-07-19 17:27:23 +02:00
|
|
|
}
|
2022-07-29 18:34:27 +02:00
|
|
|
|
2022-07-30 17:51:02 +02:00
|
|
|
if (!$this->icon && Settings::get('getOfficialIcons') && !$skipIconFetching) {
|
2022-07-20 13:31:51 +02:00
|
|
|
$this->icon = $this->getDefaultIcon();
|
2022-07-19 17:27:23 +02:00
|
|
|
}
|
2022-07-05 10:10:24 +02:00
|
|
|
|
|
|
|
Log::info(sprintf('TwoFAccount filled with an URI'));
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets model attributes to STEAM values
|
|
|
|
*/
|
2022-08-26 15:57:18 +02:00
|
|
|
private function enforceAsSteam() : void
|
2022-07-05 10:10:24 +02:00
|
|
|
{
|
|
|
|
$this->otp_type = self::STEAM_TOTP;
|
|
|
|
$this->digits = 5;
|
|
|
|
$this->algorithm = self::SHA1;
|
|
|
|
$this->period = 30;
|
2022-07-14 18:05:19 +02:00
|
|
|
|
|
|
|
Log::info(sprintf('TwoFAccount configured as Steam account'));
|
2022-07-05 10:10:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the OTP type of the instanciated OTP generator
|
|
|
|
*/
|
|
|
|
private function getGeneratorOtpType()
|
|
|
|
{
|
2022-07-13 11:02:09 +02:00
|
|
|
return Arr::get($this->generatorClassMap, get_class($this->generator));
|
2022-07-05 10:10:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an otpauth URI built with model attribute values
|
|
|
|
*/
|
|
|
|
public function getURI() : string
|
|
|
|
{
|
|
|
|
$this->initGenerator();
|
|
|
|
|
|
|
|
return $this->generator->getProvisioningUri();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instanciates the OTP generator with model attribute values
|
|
|
|
*/
|
2022-08-26 15:57:18 +02:00
|
|
|
private function initGenerator() : void
|
2022-07-05 10:10:24 +02:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
switch ($this->otp_type) {
|
|
|
|
case self::TOTP:
|
|
|
|
$this->generator = TOTP::create(
|
|
|
|
$this->secret,
|
|
|
|
$this->period ?: self::DEFAULT_PERIOD,
|
|
|
|
$this->algorithm ?: self::DEFAULT_ALGORITHM,
|
|
|
|
$this->digits ?: self::DEFAULT_DIGITS
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::STEAM_TOTP:
|
|
|
|
$this->generator = TOTP::create($this->secret, 30, self::SHA1, 5);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::HOTP:
|
|
|
|
$this->generator = HOTP::create(
|
|
|
|
$this->secret,
|
|
|
|
$this->counter ?: self::DEFAULT_COUNTER,
|
|
|
|
$this->algorithm ?: self::DEFAULT_ALGORITHM,
|
|
|
|
$this->digits ?: self::DEFAULT_DIGITS
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw new UnsupportedOtpTypeException();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->service) $this->generator->setIssuer($this->service);
|
|
|
|
if ($this->account) $this->generator->setLabel($this->account);
|
|
|
|
}
|
|
|
|
catch (UnsupportedOtpTypeException $exception) {
|
|
|
|
Log::error(sprintf('%s is not an OTP type supported by the current generator', $this->otp_type));
|
|
|
|
throw $exception;
|
|
|
|
}
|
|
|
|
catch (\Exception|\Throwable $exception) {
|
|
|
|
throw new InvalidOtpParameterException($exception->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-07-07 11:43:23 +02:00
|
|
|
* Gets the image resource pointed by the image url and store it as an icon
|
2022-07-05 10:10:24 +02:00
|
|
|
*
|
|
|
|
* @return string|null The filename of the stored icon or null if the operation fails
|
|
|
|
*/
|
2022-07-07 11:43:23 +02:00
|
|
|
private function storeImageAsIcon(string $url)
|
2022-07-05 10:10:24 +02:00
|
|
|
{
|
|
|
|
try {
|
2022-07-19 18:27:09 +02:00
|
|
|
$path_parts = pathinfo($url);
|
|
|
|
$newFilename = Str::random(40).'.'.$path_parts['extension'];
|
2022-07-05 10:10:24 +02:00
|
|
|
$imageFile = self::IMAGELINK_STORAGE_PATH . $newFilename;
|
|
|
|
|
2022-07-19 18:27:09 +02:00
|
|
|
try {
|
|
|
|
$response = Http::retry(3, 100)->get($url);
|
|
|
|
|
|
|
|
if ($response->successful()) {
|
|
|
|
Storage::disk('imagesLink')->put($newFilename, $response->body());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (\Exception $exception) {
|
|
|
|
Log::error(sprintf('Cannot fetch imageLink at "%s"', $url));
|
|
|
|
}
|
2022-07-05 10:10:24 +02:00
|
|
|
|
|
|
|
if ( in_array(Storage::mimeType($imageFile), ['image/png', 'image/jpeg', 'image/webp', 'image/bmp'])
|
|
|
|
&& getimagesize(storage_path() . '/app/' . $imageFile) )
|
|
|
|
{
|
2022-07-19 18:27:09 +02:00
|
|
|
// Should be a valid image, we move it to the icons disk
|
|
|
|
if (Storage::disk('icons')->put($newFilename, Storage::disk('imagesLink')->get($newFilename))) {
|
|
|
|
Storage::disk('imagesLink')->delete($newFilename);
|
|
|
|
}
|
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
Log::info(sprintf('Icon file %s stored', $newFilename));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// @codeCoverageIgnoreStart
|
2022-07-19 18:27:09 +02:00
|
|
|
Storage::disk('imagesLink')->delete($newFilename);
|
2022-07-14 18:05:19 +02:00
|
|
|
throw new \Exception('Unsupported mimeType or missing image on storage');
|
2022-07-05 10:10:24 +02:00
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
}
|
|
|
|
|
|
|
|
return $newFilename;
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreStart
|
2022-07-19 18:27:09 +02:00
|
|
|
catch (\Exception|\Throwable $ex) {
|
2022-07-14 18:05:19 +02:00
|
|
|
Log::error(sprintf('Icon storage failed: %s', $ex->getMessage()));
|
2022-07-05 10:10:24 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-19 17:27:23 +02:00
|
|
|
/**
|
|
|
|
* Fetch a logo in the tfa directory and store it as a new stand alone icon
|
|
|
|
*
|
|
|
|
* @return string|null The icon
|
|
|
|
*/
|
2022-07-20 13:31:51 +02:00
|
|
|
private function getDefaultIcon()
|
2022-07-19 17:27:23 +02:00
|
|
|
{
|
|
|
|
$logoService = App::make(LogoService::class);
|
|
|
|
|
2022-07-30 17:51:02 +02:00
|
|
|
return Settings::get('getOfficialIcons') ? $logoService->getIcon($this->service) : null;
|
2022-07-19 17:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 00:09:33 +01:00
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Returns an acceptable value
|
2020-11-06 21:49:43 +01:00
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
private function decryptOrReturn($value)
|
2020-11-06 21:49:43 +01:00
|
|
|
{
|
2021-09-17 23:55:09 +02:00
|
|
|
// Decipher when needed
|
2022-08-01 08:24:49 +02:00
|
|
|
if ( Settings::get('useEncryption') && $value )
|
2021-09-17 23:55:09 +02:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
return Crypt::decryptString($value);
|
|
|
|
}
|
2021-10-15 23:46:21 +02:00
|
|
|
catch (Exception $ex) {
|
2021-10-11 23:11:52 +02:00
|
|
|
return __('errors.indecipherable');
|
2021-09-17 23:55:09 +02:00
|
|
|
}
|
2020-11-22 11:00:55 +01:00
|
|
|
}
|
|
|
|
else {
|
2021-09-17 23:55:09 +02:00
|
|
|
return $value;
|
2020-11-22 11:00:55 +01:00
|
|
|
}
|
2020-11-12 00:09:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-09-17 23:55:09 +02:00
|
|
|
* Encrypt a value
|
2020-11-12 00:09:33 +01:00
|
|
|
*/
|
2021-09-17 23:55:09 +02:00
|
|
|
private function encryptOrReturn($value)
|
2020-11-12 00:09:33 +01:00
|
|
|
{
|
2021-09-17 23:55:09 +02:00
|
|
|
// should be replaced by laravel 8 attribute encryption casting
|
2022-07-30 17:51:02 +02:00
|
|
|
return Settings::get('useEncryption') ? Crypt::encryptString($value) : $value;
|
2020-11-06 21:49:43 +01:00
|
|
|
}
|
|
|
|
|
2020-11-12 00:09:33 +01:00
|
|
|
}
|