mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update LikeController
This commit is contained in:
parent
e52f81fc2a
commit
095b23ac78
1 changed files with 28 additions and 1 deletions
|
@ -3,8 +3,35 @@
|
|||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Auth, Hashids;
|
||||
use App\{Like, Profile, Status, User};
|
||||
|
||||
class LikeController extends Controller
|
||||
{
|
||||
//
|
||||
public function store(Request $request)
|
||||
{
|
||||
if(Auth::check() === false) { abort(403); }
|
||||
$this->validate($request, [
|
||||
'item' => 'required|integer',
|
||||
]);
|
||||
|
||||
$statusId = $request->item;
|
||||
|
||||
$user = Auth::user();
|
||||
$profile = $user->profile;
|
||||
$status = Status::findOrFail($statusId);
|
||||
|
||||
if($status->likes()->whereProfileId($profile->id)->count() !== 0) {
|
||||
$like = Like::whereProfileId($profile->id)->whereStatusId($status->id)->firstOrFail();
|
||||
$like->delete();
|
||||
return redirect()->back();
|
||||
}
|
||||
|
||||
$like = new Like;
|
||||
$like->profile_id = $profile->id;
|
||||
$like->status_id = $status->id;
|
||||
$like->save();
|
||||
|
||||
return redirect($status->url());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue