[FIX] User creation command referral code (#668)

This commit is contained in:
Dennis 2023-01-29 21:49:48 +01:00 committed by GitHub
commit fd8dbb10a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@ use App\Models\User;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Validator;
use Illuminate\Support\Str;
class MakeUserCommand extends Command
{
@ -37,6 +38,19 @@ class MakeUserCommand extends Command
$this->pterodactyl = $pterodactyl;
}
/**
* @param $userid
* @return string
*/
public function generateCode(){
$random = STR::random(8);
if (User::where('referral_code', '=', $random)->doesntExist()) {
return $random;
} else {
$this->generateCode();
}
}
/**
* Execute the console command.
*
@ -78,12 +92,12 @@ class MakeUserCommand extends Command
return 0;
}
$user = User::create([
'name' => $response['first_name'],
'email' => $response['email'],
'role' => 'admin',
'password' => Hash::make($password),
'referral_code' => $this->generateCode(),
'pterodactyl_id' => $response['id'],
]);
@ -93,6 +107,7 @@ class MakeUserCommand extends Command
['Username', $user->name],
['Ptero-ID', $user->pterodactyl_id],
['Admin', $user->role],
['Referral code', $user->referral_code],
]);
return 1;