Add news article comments and reactions

This commit is contained in:
2026-05-01 11:43:49 +02:00
parent 874f8feb9c
commit 28e7e46e13
22 changed files with 20083 additions and 26 deletions

View File

@@ -0,0 +1,100 @@
<?php
declare(strict_types=1);
namespace App\Models;
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\SoftDeletes;
use App\Services\ContentSanitizer;
use cPad\Plugins\News\Models\NewsArticle;
class NewsArticleComment extends Model
{
use HasFactory;
use SoftDeletes;
protected $fillable = [
'legacy_id',
'article_id',
'user_id',
'parent_id',
'legacy_user_id',
'author_name',
'body',
'rendered_body',
'status',
'legacy_posted_at',
];
protected $casts = [
'legacy_id' => 'integer',
'article_id' => 'integer',
'user_id' => 'integer',
'parent_id' => 'integer',
'legacy_user_id' => 'integer',
'legacy_posted_at' => 'datetime',
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
];
public function article(): BelongsTo
{
return $this->belongsTo(NewsArticle::class, 'article_id');
}
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
public function replies(): HasMany
{
return $this->hasMany(self::class, 'parent_id')->orderBy('created_at')->orderBy('id');
}
public function visibleReplies(): HasMany
{
return $this->hasMany(self::class, 'parent_id')
->where('status', 'visible')
->orderBy('created_at')
->orderBy('id')
->with(['user.profile', 'visibleReplies']);
}
public function reactions(): HasMany
{
return $this->hasMany(NewsArticleCommentReaction::class, 'comment_id');
}
public function getDisplayHtml(): string
{
$rendered = is_string($this->rendered_body) ? trim($this->rendered_body) : '';
$body = (string) ($this->body ?? '');
if ($rendered === '') {
$rendered = $body !== ''
? ContentSanitizer::render($body)
: nl2br(e($body));
}
return ContentSanitizer::sanitizeRenderedHtml($rendered, $this->authorCanPublishLinks());
}
private function authorCanPublishLinks(): bool
{
$level = (int) ($this->user?->level ?? 1);
$rank = strtolower((string) ($this->user?->rank ?? 'newbie'));
return $level > 1 && $rank !== 'newbie';
}
}