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
|
|
|
|
2021-11-30 17:34:35 +01:00
|
|
|
use App\Events\GroupDeleting;
|
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
|
|
|
|
2022-09-07 17:54:27 +02:00
|
|
|
/**
|
|
|
|
* @property int $twofaccounts_count
|
|
|
|
*/
|
2020-10-25 23:50:13 +01:00
|
|
|
class Group extends Model
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
use HasFactory;
|
|
|
|
|
2020-10-25 23:50:13 +01:00
|
|
|
/**
|
|
|
|
* model's array form.
|
|
|
|
*
|
2022-08-26 15:57:18 +02:00
|
|
|
* @var string[]
|
2020-10-25 23:50:13 +01:00
|
|
|
*/
|
|
|
|
protected $fillable = ['name'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The accessors to append to the model's array form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2021-09-21 22:43:39 +02:00
|
|
|
protected $appends = [];
|
2020-10-25 23:50:13 +01:00
|
|
|
|
2020-11-21 21:50:33 +01:00
|
|
|
/**
|
|
|
|
* The attributes that should be hidden for arrays.
|
|
|
|
*
|
2022-11-17 16:46:29 +01:00
|
|
|
* @var array<int, string>
|
2020-11-21 21:50:33 +01:00
|
|
|
*/
|
|
|
|
protected $hidden = ['created_at', 'updated_at'];
|
|
|
|
|
2020-11-23 12:54:06 +01:00
|
|
|
/**
|
|
|
|
* The attributes that should be cast.
|
|
|
|
*
|
2022-11-17 16:46:29 +01:00
|
|
|
* @var array<string, string>
|
2020-11-23 12:54:06 +01:00
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'twofaccounts_count' => 'integer',
|
|
|
|
];
|
|
|
|
|
2021-11-30 17:34:35 +01:00
|
|
|
/**
|
|
|
|
* The event map for the model.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dispatchesEvents = [
|
|
|
|
'deleting' => GroupDeleting::class,
|
|
|
|
];
|
|
|
|
|
2021-10-03 21:49:48 +02:00
|
|
|
/**
|
|
|
|
* Override The "booting" method of the model
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected static function boot()
|
|
|
|
{
|
|
|
|
parent::boot();
|
2021-10-15 23:46:21 +02:00
|
|
|
|
2022-08-26 15:57:18 +02:00
|
|
|
static::deleted(function (object $model) {
|
2021-11-30 17:39:33 +01:00
|
|
|
// @codeCoverageIgnoreStart
|
2023-02-27 00:33:42 +01:00
|
|
|
Log::info(sprintf('Group "%s" deleted', var_export($model->name, true)));
|
2021-11-30 17:39:33 +01:00
|
|
|
// @codeCoverageIgnoreEnd
|
2021-10-15 23:46:21 +02:00
|
|
|
});
|
2021-10-03 21:49:48 +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()
|
|
|
|
{
|
2022-08-26 15:57:18 +02:00
|
|
|
return $this->hasMany(\App\Models\TwoFAccount::class);
|
2020-10-25 23:50:13 +01:00
|
|
|
}
|
2023-02-27 00:32:49 +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);
|
|
|
|
}
|
2020-10-25 23:50:13 +01:00
|
|
|
}
|