mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-01-21 19:40:47 -06:00
- this pr cleans up the app.js file and pulls all alpine logic into there own component js files making it much more organized and modular. - this pr also converts the livewire post like and dislike buttons to alpinejs. this was done due to nesting components in livewire being bugged.
60 lines
1.6 KiB
PHP
60 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Post;
|
|
use App\Models\Like;
|
|
|
|
class DislikeController extends Controller
|
|
{
|
|
public function store(int $postId)
|
|
{
|
|
$user = auth()->user();
|
|
$post = Post::withCount('dislikes')->findOrFail($postId);
|
|
|
|
if ($user->id === $post->user_id) {
|
|
return response()->json([
|
|
'success' => false,
|
|
'message' => 'You cannot dislike your own post!',
|
|
], 400);
|
|
}
|
|
|
|
$exist = Like::where('user_id', $user->id)->where('post_id', $postId)->first();
|
|
|
|
if ($exist) {
|
|
return response()->json([
|
|
'success' => false,
|
|
'message' => 'You have already liked or disliked this post!',
|
|
], 400);
|
|
}
|
|
|
|
$like = new Like();
|
|
$like->user_id = $user->id;
|
|
$like->post_id = $postId;
|
|
$like->dislike = true;
|
|
$like->save();
|
|
|
|
$post->loadCount('dislikes');
|
|
|
|
return response()->json([
|
|
'success' => true,
|
|
'dislikesCount' => $post->dislikes_count,
|
|
]);
|
|
}
|
|
}
|