33 lines
996 B
PHP
33 lines
996 B
PHP
<?php namespace Backend\Database\Seeds;
|
|
|
|
use Str;
|
|
use Seeder;
|
|
use Eloquent;
|
|
use Backend\Database\Seeds\SeedSetupAdmin;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function run()
|
|
{
|
|
$shouldRandomizePassword = SeedSetupAdmin::$password === 'admin';
|
|
$adminPassword = $shouldRandomizePassword ? Str::random(22) : SeedSetupAdmin::$password;
|
|
|
|
Eloquent::unguarded(function () use ($adminPassword) {
|
|
// Generate a random password for the seeded admin account
|
|
$adminSeeder = new \Backend\Database\Seeds\SeedSetupAdmin;
|
|
$adminSeeder->setDefaults([
|
|
'password' => $adminPassword
|
|
]);
|
|
$this->call($adminSeeder);
|
|
});
|
|
|
|
return $shouldRandomizePassword ? 'The following password has been automatically generated for the "admin" account: '
|
|
. "<fg=yellow;options=bold>${adminPassword}</>" : '';
|
|
}
|
|
}
|