mirror of
https://github.com/BillyOutlast/UNIT3D.git
synced 2026-02-06 04:01:20 +01:00
114 lines
3.6 KiB
PHP
114 lines
3.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author Roardom <roardom@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Livewire\Stats;
|
|
|
|
use App\Models\User;
|
|
use Livewire\Attributes\Lazy;
|
|
use Livewire\Component;
|
|
|
|
#[Lazy(isolate: true)]
|
|
class UserStats extends Component
|
|
{
|
|
final protected int $allUsers {
|
|
get => (int) cache()->remember(
|
|
'user-stats:all-users',
|
|
10 * 60,
|
|
fn () => User::query()->withTrashed()->count(),
|
|
);
|
|
}
|
|
|
|
final protected int $activeUsers {
|
|
get => (int) cache()->remember(
|
|
'user-stats:active-users',
|
|
10 * 60,
|
|
fn () => User::query()->whereHas('group', fn ($query) => $query->whereNotIn('slug', ['banned', 'validating', 'disabled', 'pruned']))->count(),
|
|
);
|
|
}
|
|
|
|
final protected int $disableUsers {
|
|
get => (int) cache()->remember(
|
|
'user-stats:disable-users',
|
|
10 * 60,
|
|
fn () => User::query()->whereRelation('group', 'slug', '=', 'disabled')->count(),
|
|
);
|
|
}
|
|
|
|
final protected int $prunedUsers {
|
|
get => (int) cache()->remember(
|
|
'user-stats:pruned-users',
|
|
10 * 60,
|
|
fn () => User::query()->onlyTrashed()->whereRelation('group', 'slug', '=', 'pruned')->count(),
|
|
);
|
|
}
|
|
|
|
final protected int $bannedUsers {
|
|
get => (int) cache()->remember(
|
|
'user-stats:banned-users',
|
|
10 * 60,
|
|
fn () => User::query()->whereRelation('group', 'slug', '=', 'banned')->count(),
|
|
);
|
|
}
|
|
|
|
final protected int $usersActiveToday {
|
|
get => (int) cache()->remember(
|
|
'user-stats:users-active-today',
|
|
10 * 60,
|
|
fn () => User::query()->where('last_action', '>', now()->subDay())->count(),
|
|
);
|
|
}
|
|
|
|
final protected int $usersActiveThisWeek {
|
|
get => (int) cache()->remember(
|
|
'user-stats:users-active-this-week',
|
|
10 * 60,
|
|
fn () => User::query()->where('last_action', '>', now()->subWeek())->count(),
|
|
);
|
|
}
|
|
|
|
final protected int $usersActiveThisMonth {
|
|
get => (int) cache()->remember(
|
|
'user-stats:users-active-this-month',
|
|
10 * 60,
|
|
fn () => User::query()->where('last_action', '>', now()->subMonth())->count(),
|
|
);
|
|
}
|
|
|
|
final public function placeholder(): string
|
|
{
|
|
return <<<'HTML'
|
|
<section class="panelV2">
|
|
<h2 class="panel__heading">{{ __('common.users') }}</h2>
|
|
<div class="panel__body">Loading...</div>
|
|
</section>
|
|
HTML;
|
|
}
|
|
|
|
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
|
|
{
|
|
return view('livewire.stats.user-stats', [
|
|
'all_user' => $this->allUsers,
|
|
'active_user' => $this->activeUsers,
|
|
'disabled_user' => $this->disableUsers,
|
|
'pruned_user' => $this->prunedUsers,
|
|
'banned_user' => $this->bannedUsers,
|
|
'users_active_today' => $this->usersActiveToday,
|
|
'users_active_this_week' => $this->usersActiveThisWeek,
|
|
'users_active_this_month' => $this->usersActiveThisMonth,
|
|
]);
|
|
}
|
|
}
|