File "CommentController.php"
Full Path: /var/www/drive/foundation/src/Comments/Controllers/CommentController.php
File size: 4.3 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Common\Comments\Controllers;
use Common\Comments\Comment;
use Common\Comments\CrupdateComment;
use Common\Comments\CrupdateCommentRequest;
use Common\Core\BaseController;
use Common\Database\Datasource\Datasource;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
use Symfony\Component\HttpFoundation\Response;
class CommentController extends BaseController
{
public function __construct(
protected Comment $comment,
protected Request $request,
) {
}
public function index(): Response
{
$userId = $this->request->get('userId');
$this->authorize('index', [Comment::class, $userId]);
$builder = $this->comment->with(['user']);
// will need to specify this outside of filters on edit title comments page
if (request('commentable_id') && request('commentable_type')) {
$commentable = app(
modelTypeToNamespace(request('commentable_type')),
)->findOrFail(request('commentable_id'));
$builder->forCommentable($commentable);
} else {
$builder->where('commentable_id', '>', 0);
}
$dataSource = new Datasource($builder, $this->request->all());
$pagination = $dataSource->paginate();
$pagination->transform(function (Comment $comment) {
if (
$comment->relationLoaded('commentable') &&
$comment->commentable
) {
$normalized = $comment->commentable->toNormalizedArray();
$comment->unsetRelation('commentable');
$comment->setAttribute('commentable', $normalized);
}
return $comment;
});
return $this->success(['pagination' => $pagination]);
}
public function show(Comment $comment): Response
{
$this->authorize('show', $comment);
return $this->success(['comment' => $comment]);
}
public function store(CrupdateCommentRequest $request): Response
{
$this->authorize('store', Comment::class);
$comment = app(CrupdateComment::class)->execute($request->all());
return $this->success(['comment' => $comment]);
}
public function update(
Comment $comment,
CrupdateCommentRequest $request,
): Response {
$this->authorize('store', $comment);
$comment = app(CrupdateComment::class)->execute(
$request->all(),
$comment,
);
return $this->success(['comment' => $comment]);
}
public function destroy(string $ids): Response
{
$commentIds = explode(',', $ids);
$this->authorize('destroy', [Comment::class, $commentIds]);
$allDeleted = [];
$allMarkedAsDeleted = [];
$this->comment
->whereIn('id', $commentIds)
->chunkById(100, function (Collection $comments) use (
&$allDeleted,
&$allMarkedAsDeleted,
) {
$toMarkAsDeleted = [];
$toDelete = [];
foreach ($comments as $comment) {
if ($comment->allChildren()->count() > 1) {
$toMarkAsDeleted[] = $comment->id;
} else {
$toDelete[] = $comment->id;
}
}
if (!empty($toMarkAsDeleted)) {
$this->comment
->whereIn('id', $toMarkAsDeleted)
->update(['deleted' => true]);
}
if (!empty($toDelete)) {
$this->comment->whereIn('id', $toDelete)->delete();
}
$allDeleted = array_merge($allDeleted, $toDelete);
$allMarkedAsDeleted = array_merge(
$allMarkedAsDeleted,
$toMarkAsDeleted,
);
});
return $this->success([
'allDeleted' => $allDeleted,
'allMarkedAsDeleted' => $allMarkedAsDeleted,
]);
}
public function restore()
{
$this->authorize('update', Comment::class);
$commentIds = $this->request->get('commentIds');
$this->comment
->whereIn('id', $commentIds)
->update(['deleted' => false]);
return $this->success();
}
}