You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
urlhub/app/Models/User.php

80 lines
1.9 KiB

<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use App\Models\Traits\Hashidable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Facades\DB;
use Laravel\Sanctum\HasApiTokens;
use Spatie\Permission\Traits\HasRoles;
class User extends Authenticatable
{
use HasApiTokens, HasFactory, Notifiable;
use Hashidable;
use HasRoles;
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'name', 'email', 'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var list<string>
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
/*
|--------------------------------------------------------------------------
| Eloquent: Relationships
|--------------------------------------------------------------------------
*/
/**
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function urls()
{
return $this->hasMany(Url::class);
}
/*
|--------------------------------------------------------------------------
| General Functions
|--------------------------------------------------------------------------
*/
/*
* Count the number of guests (URL without user id) by IP address, then
* grouped by IP address.
*/
public function totalGuestUsers(): int
{
$url = Url::select('ip', DB::raw('count(*) as total'))
->byGuests()->groupBy('ip')
->get();
return $url->count();
}
}