mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-14 09:00:07 -05:00
We never plan to extend a model, and value composition over inheritance. We need to add the AllowDynamicProperties warning to prevent PHPStan errors that arise with pivot relations (https://www.github.com/larastan/larastan/issues/2256).
143 lines
3.8 KiB
PHP
143 lines
3.8 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 HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Traits\Auditable;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
|
use AllowDynamicProperties;
|
|
|
|
/**
|
|
* App\Models\Ticket.
|
|
*
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property int $category_id
|
|
* @property int $priority_id
|
|
* @property int|null $staff_id
|
|
* @property bool $user_read
|
|
* @property bool $staff_read
|
|
* @property string $subject
|
|
* @property string $body
|
|
* @property \Illuminate\Support\Carbon|null $closed_at
|
|
* @property \Illuminate\Support\Carbon|null $reminded_at
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @property string|null $deleted_at
|
|
*/
|
|
#[AllowDynamicProperties]
|
|
final class Ticket extends Model
|
|
{
|
|
use Auditable;
|
|
|
|
/** @use HasFactory<\Database\Factories\TicketFactory> */
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array{user_read: 'bool', staff_read: 'bool', closed_at: 'datetime', reminded_at: 'datetime'}
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'user_read' => 'bool',
|
|
'staff_read' => 'bool',
|
|
'closed_at' => 'datetime',
|
|
'reminded_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the user who created the ticket.
|
|
*
|
|
* @return BelongsTo<User, $this>
|
|
*/
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class)->withDefault([
|
|
'username' => 'System',
|
|
'id' => User::SYSTEM_USER_ID,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Get the staff user that was assigned the ticket.
|
|
*
|
|
* @return BelongsTo<User, $this>
|
|
*/
|
|
public function staff(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'staff_id');
|
|
}
|
|
|
|
/**
|
|
* Get the priority associated with the ticket.
|
|
*
|
|
* @return BelongsTo<TicketPriority, $this>
|
|
*/
|
|
public function priority(): BelongsTo
|
|
{
|
|
return $this->belongsTo(TicketPriority::class);
|
|
}
|
|
|
|
/**
|
|
* Get the category associated with the ticket.
|
|
*
|
|
* @return BelongsTo<TicketCategory, $this>
|
|
*/
|
|
public function category(): BelongsTo
|
|
{
|
|
return $this->belongsTo(TicketCategory::class);
|
|
}
|
|
|
|
/**
|
|
* Get all attachments for the ticket.
|
|
*
|
|
* @return HasMany<TicketAttachment, $this>
|
|
*/
|
|
public function attachments(): HasMany
|
|
{
|
|
return $this->hasMany(TicketAttachment::class);
|
|
}
|
|
|
|
/**
|
|
* Get the comments for the ticket.
|
|
*
|
|
* @return MorphMany<Comment, $this>
|
|
*/
|
|
public function comments(): MorphMany
|
|
{
|
|
return $this->morphMany(Comment::class, 'commentable');
|
|
}
|
|
|
|
/**
|
|
* Get the notes for the ticket.
|
|
*
|
|
* @return HasMany<TicketNote, $this>
|
|
*/
|
|
public function notes(): HasMany
|
|
{
|
|
return $this->hasMany(TicketNote::class);
|
|
}
|
|
}
|