pixelfed/app/Http/Controllers/CommentController.php

99 wiersze
3.0 KiB
PHP
Czysty Zwykły widok Historia

<?php
namespace App\Http\Controllers;
2018-06-04 08:16:33 +00:00
use App\Jobs\CommentPipeline\CommentPipeline;
use App\Jobs\StatusPipeline\NewStatusPipeline;
2024-03-10 10:19:44 +00:00
use App\Services\StatusService;
2018-08-28 03:07:36 +00:00
use App\Status;
2024-03-10 10:19:44 +00:00
use App\Transformer\Api\StatusTransformer;
2019-07-21 02:09:46 +00:00
use App\UserFilter;
2024-03-10 10:19:44 +00:00
use App\Util\Lexer\Autolink;
use Auth;
use DB;
use Illuminate\Http\Request;
use League\Fractal;
use League\Fractal\Serializer\ArraySerializer;
class CommentController extends Controller
{
public function showAll(Request $request, $username, int $id)
{
2020-02-18 07:19:18 +00:00
abort(404);
}
public function store(Request $request)
{
2018-08-28 03:07:36 +00:00
if (Auth::check() === false) {
abort(403);
}
$this->validate($request, [
2024-03-10 10:19:44 +00:00
'item' => 'required|integer|min:1',
'comment' => 'required|string|max:'.config_cache('pixelfed.max_caption_length'),
'sensitive' => 'nullable|boolean',
2018-12-21 19:51:52 +00:00
]);
2018-08-28 03:07:36 +00:00
$comment = $request->input('comment');
2020-05-23 07:38:23 +00:00
$statusId = $request->input('item');
$nsfw = $request->input('sensitive', false);
2018-08-28 03:07:36 +00:00
$user = Auth::user();
$profile = $user->profile;
$status = Status::findOrFail($statusId);
2024-03-10 10:19:44 +00:00
if ($status->comments_disabled == true) {
2019-04-03 06:08:32 +00:00
return;
}
2019-07-21 02:09:46 +00:00
$filtered = UserFilter::whereUserId($status->profile_id)
->whereFilterableType('App\Profile')
->whereIn('filter_type', ['block'])
2019-07-21 02:09:46 +00:00
->whereFilterableId($profile->id)
->exists();
2024-03-10 10:19:44 +00:00
if ($filtered == true) {
2019-07-21 02:09:46 +00:00
return;
}
2024-03-10 10:19:44 +00:00
$reply = DB::transaction(function () use ($comment, $status, $profile, $nsfw) {
$scope = $profile->is_private == true ? 'private' : 'public';
$autolink = Autolink::create()->autolink($comment);
$reply = new Status();
$reply->profile_id = $profile->id;
2020-05-23 07:38:23 +00:00
$reply->is_nsfw = $nsfw;
$reply->caption = e($comment);
$reply->rendered = $autolink;
$reply->in_reply_to_id = $status->id;
$reply->in_reply_to_profile_id = $status->profile_id;
$reply->scope = $scope;
$reply->visibility = $scope;
$reply->save();
return $reply;
});
2018-08-28 03:07:36 +00:00
StatusService::del($status->id);
NewStatusPipeline::dispatch($reply);
2018-08-28 03:07:36 +00:00
CommentPipeline::dispatch($status, $reply);
if ($request->ajax()) {
$fractal = new Fractal\Manager();
$fractal->setSerializer(new ArraySerializer());
$entity = new Fractal\Resource\Item($reply, new StatusTransformer());
$entity = $fractal->createData($entity)->toArray();
$response = [
'code' => 200,
'msg' => 'Comment saved',
'username' => $profile->username,
'url' => $reply->url(),
'profile' => $profile->url(),
'comment' => $reply->caption,
'entity' => $entity,
];
2018-08-28 03:07:36 +00:00
} else {
$response = redirect($status->url());
}
return $response;
}
}