PATH:
home
/
lab2454c
/
keebchat.com
/
apps
/
native
/
api
/
like_post
<?php # @*************************************************************************@ # @ @author Mansur Altamirov (Mansur_TL) @ # @ @author_url 1: https://www.instagram.com/mansur_tl @ # @ @author_url 2: http://codecanyon.net/user/mansur_tl @ # @ @author_email: highexpresstore@gmail.com @ # @*************************************************************************@ # @ ColibriSM - The Ultimate Modern Social Media Sharing Platform @ # @ Copyright (c) 21.03.2020 ColibriSM. All rights reserved. @ # @*************************************************************************@ if (empty($cl['is_logged'])) { $data = array( 'code' => 401, 'data' => array(), 'message' => 'Unauthorized Access' ); } else { $post_id = fetch_or_get($_POST['post_id'], 0); $post_data = cl_raw_post_data($post_id); if (not_empty($post_data)) { if (cl_has_liked($me['id'], $post_id) != true) { cl_db_insert(T_LIKES, array( 'pub_id' => $post_id, 'user_id' => $me['id'], 'time' => time() )); $likes_count = ($post_data['likes_count'] += 1); $data['post_likes'] = $likes_count; $data['message'] = ""; $data['code'] = 200; $data['data'] = array("like" => true); cl_update_post_data($post_id, array( 'likes_count' => $likes_count )); if ($post_data['user_id'] != $me['id']) { cl_notify_user(array( 'subject' => 'like', 'user_id' => $post_data['user_id'], 'entry_id' => $post_id )); } } else { $likes_count = ($post_data['likes_count'] -= 1); $data['post_likes'] = $likes_count; $data['message'] = ""; $data['code'] = 200; $data['data'] = array("like" => false); cl_update_post_data($post_id, array( 'likes_count' => $likes_count )); cl_db_delete_item(T_LIKES, array( 'pub_id' => $post_id, 'user_id' => $me['id'] )); cl_db_delete_item(T_NOTIFS, array( 'notifier_id' => $me['id'], 'recipient_id' => $post_data['user_id'], 'subject' => 'like', 'entry_id' => $post_id )); } } else { $data['code'] = 400; $data['message'] = "Post id is missing or invalid"; $data['data'] = array(); } }
[+]
..
[-] content.php
[edit]