Files
anonaddy/app/Console/Commands/ListUsers.php
2022-11-29 12:27:39 +00:00

156 lines
3.6 KiB
PHP

<?php
namespace App\Console\Commands;
use App\Models\User;
use Illuminate\Console\Command;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
class ListUsers extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'anonaddy:list-users
{--username= : The Username of the user}
{--json : Output as JSON}
{--sort= : The column to sort by}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Display the list of current users';
/**
* The table headers for the command.
*
* @var array
*/
protected $headers = ['ID', 'Username', 'Bandwidth', 'Created_At', 'Updated_At'];
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return void
*/
public function handle()
{
$users = $this->getUsers();
if (empty($users)) {
return $this->error("Your application doesn't have any matching users.");
}
$this->displayUsers($users);
}
/**
* Compile the users into a displayable format.
*
* @return array
*/
protected function getUsers()
{
$users = User::with('defaultUsername:id,user_id,username')
->select(['id', 'default_username_id', 'bandwidth', 'created_at', 'updated_at']);
if ($username = $this->option('username')) {
$users->whereHas('usernames', function ($query) use ($username) {
$query->where('username', $username);
});
}
$users = $users->get()->map(function ($user) {
return [
'id' => $user->id,
'username' => $user->defaultUsername->username,
'bandwidth' => $user->bandwidth,
'created_at' => $user->created_at,
'updated_at' => $user->updated_at,
];
});
if ($sort = $this->option('sort')) {
$users = $users->sortBy($sort);
}
return $users->toArray();
}
/**
* Display the user information on the console.
*
* @param array $users
* @return void
*/
protected function displayUsers(array $users)
{
if ($this->option('json')) {
$this->line(json_encode(array_values($users)));
return;
}
$this->table($this->getHeaders(), $users);
}
/**
* Get the table headers for the visible columns.
*
* @return array
*/
protected function getHeaders()
{
return Arr::only($this->headers, array_keys($this->getColumns()));
}
/**
* Get the column names to show (lowercase table headers).
*
* @return array
*/
protected function getColumns()
{
$availableColumns = collect($this->headers)
->map(fn ($header) => strtolower($header))->toArray();
return $availableColumns;
}
/**
* Parse the column list.
*
* @param array $columns
* @return array
*/
protected function parseColumns(array $columns)
{
$results = [];
foreach ($columns as $i => $column) {
if (Str::contains($column, ',')) {
$results = array_merge($results, explode(',', $column));
} else {
$results[] = $column;
}
}
return array_map('strtolower', $results);
}
}