PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/outtheboxministry.org/api/v2/endpoints/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : /home/trave494/outtheboxministry.org/api/v2/endpoints/react_story.php

<?php
$reactions_types = array_keys($wo['reactions_types']);
if (!empty($_POST['id']) && is_numeric($_POST['id']) && $_POST['id'] > 0 && !empty($_POST['reaction']) && in_array($_POST['reaction'], $reactions_types)) {
	$story_id = Wo_Secure($_POST['id']);
	$is_reacted = $db->where('user_id',$wo['user']['user_id'])->where('story_id',$message_id)->getValue(T_REACTIONS,'COUNT(*)');
	if ($is_reacted > 0) {
		$db->where('user_id',$wo['user']['user_id'])->where('story_id',$message_id)->delete(T_REACTIONS);
		$response_data = array(
			                    'api_status' => 200,
			                    'message' => 'reaction removed'
			                );
	}
	else{
		$db->insert(T_REACTIONS,array('user_id' => $wo['user']['id'],
	                                   'story_id' => $story_id,
	                                   'reaction' => Wo_Secure($_POST['reaction'])));
		$response_data = array(
			                    'api_status' => 200,
			                    'message' => 'story reacted'
			                );
	}
}
else{
	$error_code    = 5;
    $error_message = 'id , reaction can not be empty.';
}