2FAuth/database/factories/TwoFAccountFactory.php

34 lines
917 B
PHP
Raw Permalink Normal View History

2019-06-06 13:40:06 +02:00
<?php
2021-12-02 13:15:53 +01:00
namespace Database\Factories;
2019-06-06 13:40:06 +02:00
2020-11-17 21:27:44 +01:00
use ParagonIE\ConstantTime\Base32;
2021-12-02 13:15:53 +01:00
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
2019-06-06 13:40:06 +02:00
2021-12-02 13:15:53 +01:00
class TwoFAccountFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
$account = $this->faker->safeEmail();
$service = $this->faker->unique()->domainName();
$secret = Base32::encodeUpper($this->faker->regexify('[A-Z0-9]{8}'));
return [
'otp_type' => 'totp',
'account' => $account,
'service' => $service,
'secret' => $secret,
'algorithm' => 'sha1',
'digits' => 6,
'period' => 30,
'legacy_uri' => 'otpauth://hotp/' . $service . ':' . $account . '?secret=' . $secret . '&issuer=' . $service,
'icon' => '',
];
}
}