2015-12-06 13:58:49 -05:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2024-03-12 22:39:16 -04:00
|
|
|
namespace App\Models;
|
2015-12-06 13:58:49 -05:00
|
|
|
|
2025-01-30 16:39:00 -05:00
|
|
|
use App\Contracts\Validatable;
|
|
|
|
|
use App\Traits\HasValidation;
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-02-17 19:23:27 -05:00
|
|
|
use Illuminate\Notifications\Notifiable;
|
2022-10-14 10:59:20 -06:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2015-12-06 13:58:49 -05:00
|
|
|
|
2019-11-03 12:20:11 -08:00
|
|
|
/**
|
2021-01-27 20:52:11 -08:00
|
|
|
* @property int $id
|
|
|
|
|
* @property int $user_id
|
|
|
|
|
* @property int $server_id
|
2025-03-03 14:41:19 -05:00
|
|
|
* @property string[] $permissions
|
2021-01-27 20:52:11 -08:00
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
2024-03-12 22:39:16 -04:00
|
|
|
* @property \App\Models\User $user
|
|
|
|
|
* @property \App\Models\Server $server
|
2019-11-03 12:20:11 -08:00
|
|
|
*/
|
2025-01-30 16:39:00 -05:00
|
|
|
class Subuser extends Model implements Validatable
|
2015-12-06 13:58:49 -05:00
|
|
|
{
|
2025-01-30 16:39:00 -05:00
|
|
|
use HasFactory;
|
|
|
|
|
use HasValidation;
|
2019-09-04 21:00:34 -07:00
|
|
|
use Notifiable;
|
2017-02-17 19:23:27 -05:00
|
|
|
|
2018-01-25 21:26:06 -06:00
|
|
|
/**
|
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
|
* API representation using fractal.
|
|
|
|
|
*/
|
2021-01-23 12:33:34 -08:00
|
|
|
public const RESOURCE_NAME = 'server_subuser';
|
2018-01-25 21:26:06 -06:00
|
|
|
|
2016-01-18 19:57:10 -05:00
|
|
|
/**
|
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
|
*/
|
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
|
|
2025-03-08 19:56:06 -05:00
|
|
|
/** @var array<array-key, string[]> */
|
2022-10-14 10:59:20 -06:00
|
|
|
public static array $validationRules = [
|
2025-03-08 19:56:06 -05:00
|
|
|
'user_id' => ['required', 'numeric', 'exists:users,id'],
|
|
|
|
|
'server_id' => ['required', 'numeric', 'exists:servers,id'],
|
|
|
|
|
'permissions' => ['nullable', 'array'],
|
|
|
|
|
'permissions.*' => ['string'],
|
2017-08-23 21:34:11 -05:00
|
|
|
];
|
|
|
|
|
|
2024-03-19 21:08:49 -04:00
|
|
|
protected function casts(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'user_id' => 'int',
|
|
|
|
|
'server_id' => 'int',
|
|
|
|
|
'permissions' => 'array',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-09 17:43:54 -05:00
|
|
|
/**
|
|
|
|
|
* Gets the server associated with a subuser.
|
|
|
|
|
*/
|
2022-10-14 10:59:20 -06:00
|
|
|
public function server(): BelongsTo
|
2017-02-09 17:43:54 -05:00
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Server::class);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the user associated with a subuser.
|
|
|
|
|
*/
|
2022-10-14 10:59:20 -06:00
|
|
|
public function user(): BelongsTo
|
2017-02-09 17:43:54 -05:00
|
|
|
{
|
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
|
}
|
2017-02-09 18:44:07 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the permissions associated with a subuser.
|
|
|
|
|
*/
|
2022-10-14 10:59:20 -06:00
|
|
|
public function permissions(): HasMany
|
2017-02-09 18:44:07 -05:00
|
|
|
{
|
2017-02-09 19:38:54 -05:00
|
|
|
return $this->hasMany(Permission::class);
|
2017-02-09 18:44:07 -05:00
|
|
|
}
|
2015-12-06 13:58:49 -05:00
|
|
|
}
|