2FAuth/app/Models/Group.php

135 lines
3.8 KiB
PHP
Raw Normal View History

2020-10-25 23:50:13 +01:00
<?php
2021-12-02 13:15:53 +01:00
namespace App\Models;
2020-10-25 23:50:13 +01:00
use App\Events\GroupDeleted;
use App\Events\GroupDeleting;
2024-09-26 23:17:00 +02:00
use Database\Factories\GroupFactory;
2022-11-22 15:15:52 +01:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
2020-10-25 23:50:13 +01:00
use Illuminate\Database\Eloquent\Model;
2021-10-15 23:46:21 +02:00
use Illuminate\Support\Facades\Log;
2020-10-25 23:50:13 +01:00
/**
2023-03-02 15:24:57 +01:00
* App\Models\Group
*
* @property int $twofaccounts_count
2023-03-02 15:24:57 +01:00
* @property int $id
* @property string $name
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property int|null $user_id
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\TwoFAccount[] $twofaccounts
* @property-read \App\Models\User|null $user
2024-09-26 23:17:00 +02:00
*
2024-07-05 16:34:25 +02:00
* @method static \Database\Factories\GroupFactory factory(...$parameters)
* @method static \Illuminate\Database\Eloquent\Builder|Group newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Group newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Group query()
* @method static \Illuminate\Database\Eloquent\Builder|Group whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Group whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Group whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Group whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Group whereUserId($value)
2024-09-26 23:17:00 +02:00
*
2024-06-26 13:53:23 +02:00
* @mixin \Eloquent
*/
2020-10-25 23:50:13 +01:00
class Group extends Model
{
2024-09-26 23:17:00 +02:00
/**
* @use HasFactory<GroupFactory>
*/
2021-12-02 13:15:53 +01:00
use HasFactory;
2020-10-25 23:50:13 +01:00
/**
* model's array form.
*
2024-04-20 19:03:44 +02:00
* @var array<int, string>
2020-10-25 23:50:13 +01:00
*/
protected $fillable = ['name'];
/**
* The accessors to append to the model's array form.
*
2024-04-20 19:03:44 +02:00
* @var array<int, string>
2020-10-25 23:50:13 +01:00
*/
protected $appends = [];
2020-10-25 23:50:13 +01:00
/**
* The attributes that should be hidden for arrays.
*
* @var array<int, string>
*/
protected $hidden = ['created_at', 'updated_at'];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'twofaccounts_count' => 'integer',
'user_id' => 'integer',
];
/**
* The event map for the model.
*
* @var array
*/
protected $dispatchesEvents = [
'deleting' => GroupDeleting::class,
'deleted' => GroupDeleted::class,
];
/**
* Override The "booting" method of the model
*
* @return void
*/
protected static function boot()
{
parent::boot();
2021-10-15 23:46:21 +02:00
static::created(function (object $model) {
Log::info(sprintf('Group %s (id #%d) created for user ID #%s', var_export($model->name, true), $model->id, $model->user_id));
});
static::updated(function (object $model) {
Log::info(sprintf('Group %s (id #%d) updated by user ID #%s', var_export($model->name, true), $model->id, $model->user_id));
});
static::deleted(function (object $model) {
Log::info(sprintf('Group %s (id #%d) deleted ', var_export($model->name, true), $model->id));
2021-10-15 23:46:21 +02:00
});
}
2020-10-25 23:50:13 +01:00
/**
* Get the TwoFAccounts of the group.
2022-11-22 15:15:52 +01:00
*
2022-11-21 11:16:43 +01:00
* @return \Illuminate\Database\Eloquent\Relations\HasMany<TwoFAccount>
2020-10-25 23:50:13 +01:00
*/
public function twofaccounts()
{
return $this->hasMany(\App\Models\TwoFAccount::class);
2020-10-25 23:50:13 +01:00
}
2023-12-20 16:55:58 +01:00
/**
* Get the user that owns the group.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\User, \App\Models\Group>
*/
public function user()
{
return $this->belongsTo(\App\Models\User::class);
}
2023-12-20 16:55:58 +01:00
/**
* Scope a query to only include orphan (userless) groups.
*
* @param \Illuminate\Database\Eloquent\Builder<User> $query
* @return \Illuminate\Database\Eloquent\Builder<User>
*/
public function scopeOrphans($query)
{
return $query->where('user_id', null);
}
2020-10-25 23:50:13 +01:00
}