mirror of
https://github.com/flarum/core.git
synced 2025-10-17 17:56:14 +02:00
59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Install;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Hashing\BcryptHasher;
|
|
|
|
class AdminUser
|
|
{
|
|
private $username;
|
|
private $password;
|
|
private $email;
|
|
|
|
public function __construct($username, $password, $email)
|
|
{
|
|
$this->username = $username;
|
|
$this->password = $password;
|
|
$this->email = $email;
|
|
|
|
$this->validate();
|
|
}
|
|
|
|
public function getUsername()
|
|
{
|
|
return $this->username;
|
|
}
|
|
|
|
public function getAttributes(): array
|
|
{
|
|
return [
|
|
'username' => $this->username,
|
|
'email' => $this->email,
|
|
'password' => (new BcryptHasher)->make($this->password),
|
|
'joined_at' => Carbon::now(),
|
|
'is_email_confirmed' => 1,
|
|
];
|
|
}
|
|
|
|
private function validate()
|
|
{
|
|
if (! filter_var($this->email, FILTER_VALIDATE_EMAIL)) {
|
|
throw new ValidationFailed('You must enter a valid email.');
|
|
}
|
|
|
|
if (! $this->username || preg_match('/[^a-z0-9_-]/i', $this->username)) {
|
|
throw new ValidationFailed('Username can only contain letters, numbers, underscores, and dashes.');
|
|
}
|
|
}
|
|
}
|