forked from mirror/pixelfed
79 lines
1.8 KiB
PHP
79 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Jobs\LikePipeline\LikePipeline;
|
|
use App\Jobs\LikePipeline\UnlikePipeline;
|
|
use App\Like;
|
|
use App\Status;
|
|
use App\User;
|
|
use Auth;
|
|
use Cache;
|
|
use Illuminate\Http\Request;
|
|
use App\Services\StatusService;
|
|
|
|
class LikeController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
public function store(Request $request)
|
|
{
|
|
$this->validate($request, [
|
|
'item' => 'required|integer|min:1',
|
|
]);
|
|
|
|
// API deprecated
|
|
return;
|
|
|
|
$user = Auth::user();
|
|
$profile = $user->profile;
|
|
$status = Status::findOrFail($request->input('item'));
|
|
|
|
if (Like::whereStatusId($status->id)->whereProfileId($profile->id)->exists()) {
|
|
$like = Like::whereProfileId($profile->id)->whereStatusId($status->id)->firstOrFail();
|
|
UnlikePipeline::dispatch($like);
|
|
} else {
|
|
abort_if(
|
|
Like::whereProfileId($user->profile_id)
|
|
->where('created_at', '>', now()->subDay())
|
|
->count() >= Like::MAX_PER_DAY,
|
|
429
|
|
);
|
|
$count = $status->likes_count > 4 ? $status->likes_count : $status->likes()->count();
|
|
$like = Like::firstOrCreate([
|
|
'profile_id' => $user->profile_id,
|
|
'status_id' => $status->id
|
|
]);
|
|
if($like->wasRecentlyCreated == true) {
|
|
$count++;
|
|
$status->likes_count = $count;
|
|
$like->status_profile_id = $status->profile_id;
|
|
$like->is_comment = in_array($status->type, [
|
|
'photo',
|
|
'photo:album',
|
|
'video',
|
|
'video:album',
|
|
'photo:video:album'
|
|
]) == false;
|
|
$like->save();
|
|
$status->save();
|
|
LikePipeline::dispatch($like);
|
|
}
|
|
}
|
|
|
|
Cache::forget('status:'.$status->id.':likedby:userid:'.$user->id);
|
|
StatusService::refresh($status->id);
|
|
|
|
if ($request->ajax()) {
|
|
$response = ['code' => 200, 'msg' => 'Like saved', 'count' => 0];
|
|
} else {
|
|
$response = redirect($status->url());
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
}
|