Add news article comments and reactions
This commit is contained in:
100
app/Models/NewsArticleComment.php
Normal file
100
app/Models/NewsArticleComment.php
Normal 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';
|
||||
}
|
||||
}
|
||||
33
app/Models/NewsArticleCommentReaction.php
Normal file
33
app/Models/NewsArticleCommentReaction.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class NewsArticleCommentReaction extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $table = 'news_article_comment_reactions';
|
||||
|
||||
protected $fillable = ['comment_id', 'user_id', 'reaction'];
|
||||
|
||||
protected $casts = [
|
||||
'comment_id' => 'integer',
|
||||
'user_id' => 'integer',
|
||||
'created_at' => 'datetime',
|
||||
];
|
||||
|
||||
public function comment(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(NewsArticleComment::class, 'comment_id');
|
||||
}
|
||||
|
||||
public function user(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user