* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Models; use App\Events\TicketWentStale; use App\Helpers\Bbcode; use App\Helpers\Linkify; use App\Traits\Auditable; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Comment extends Model { use Auditable; use HasFactory; /** * The attributes that are mass assignable. */ protected $fillable = [ 'content', 'user_id', 'anon', ]; /** * Belongs To A User. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(User::class)->withDefault([ 'username' => 'System', 'id' => '1', ]); } /** * @return \Illuminate\Database\Eloquent\Relations\MorphTo */ public function commentable(): \Illuminate\Database\Eloquent\Relations\MorphTo { return $this->morphTo(); } /** * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function children(): \Illuminate\Database\Eloquent\Relations\HasMany { return $this->hasMany(__CLASS__, 'parent_id')->oldest(); } public function isParent(): bool { return null === $this->parent_id; } public function isChild(): bool { return null !== $this->parent_id; } /** * @param Builder $builder */ public function scopeParent(Builder $builder): void { $builder->whereNull('parent_id'); } /** * Parse Content And Return Valid HTML. */ public function getContentHtml(): string { $bbcode = new Bbcode(); return (new Linkify())->linky($bbcode->parse($this->content)); } /** * Nootify Staff There Is Stale Tickets. */ public static function checkForStale(Ticket $ticket): void { if (empty($ticket->reminded_at) || strtotime($ticket->reminded_at) < strtotime('+ 3 days')) { $last_comment = $ticket->comments()->latest('id')->first(); if (property_exists($last_comment, 'id') && $last_comment->id !== null && ! $last_comment->user->group->is_modo && strtotime($last_comment->created_at) < strtotime('- 3 days')) { event(new TicketWentStale($last_comment->commentable)); } } } }