| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/get_fav_messages.php |
<?php
if (!empty($_POST['chat_id']) && is_numeric($_POST['chat_id']) && $_POST['chat_id'] > 0) {
$chats = $db->where('user_id',$wo['user']['id'])->where('chat_id',Wo_Secure($_POST['chat_id']))->where('fav','yes')->where('message_id',0,'>')->get(T_MUTE);
$array = array();
if (!empty($chats)) {
foreach ($chats as $key => $value) {
$message = GetMessageById($value->message_id);
if (!empty($message)) {
foreach ($non_allowed as $key5 => $value5) {
if (!empty($message['messageUser'])) {
unset($message['messageUser'][$value5]);
}
}
if ($not_include_status == true) {
foreach ($not_include_array as $value) {
if (!empty($value)) {
$value = Wo_Secure($value);
unset($message[$value]);
}
}
}
if (empty($message['stickers'])) {
$message['stickers'] = '';
}
$message['time_text'] = Wo_Time_Elapsed_String($message['time']);
$message_po = 'left';
if ($message['from_id'] == $user_id) {
$message_po = 'right';
}
$message['position'] = $message_po;
$message['type'] = Wo_GetFilePosition($message['media']);
if (!empty($message['stickers']) && strpos($message['stickers'], '.gif') !== false) {
$message['type'] = 'gif';
}
if ($message['type_two'] == 'contact') {
$message['type'] = 'contact';
}
$message['type'] = $message_po . '_' . $message['type'];
$message['product'] = null;
if (!empty($message['product_id'])) {
$message['type'] = $message_po . '_product';
$message['product'] = Wo_GetProduct($message['product_id']);
}
$message['file_size'] = 0;
if (!empty($message['media'])) {
$message['file_size'] = '0MB';
if (file_exists($message['file_size'])) {
$message['file_size'] = Wo_SizeFormat(filesize($message['media']));
}
$message['media'] = Wo_GetMedia($message['media']);
}
if (!empty($message['time'])) {
$time_today = time() - 86400;
if ($message['time'] < $time_today) {
$message['time_text'] = date('m.d.y', $message['time']);
} else {
$time = new DateTime('now', $timezone);
$time->setTimestamp($message['time']);
$message['time_text'] = $time->format('H:i');
}
}
if (!empty($message['reply'])) {
if (empty($message['reply']['stickers'])) {
$message['reply']['stickers'] = '';
}
$message['reply']['time_text'] = Wo_Time_Elapsed_String($message['reply']['time']);
$message_po = 'left';
if ($message['reply']['from_id'] == $user_id) {
$message_po = 'right';
}
$message['reply']['position'] = $message_po;
$message['reply']['type'] = Wo_GetFilePosition($message['reply']['media']);
if (!empty($message['reply']['stickers']) && strpos($message['reply']['stickers'], '.gif') !== false) {
$message['reply']['type'] = 'gif';
}
if ($message['reply']['type_two'] == 'contact') {
$message['reply']['type'] = 'contact';
}
$message['reply']['type'] = $message_po . '_' . $message['reply']['type'];
$message['reply']['product'] = null;
if (!empty($message['reply']['product_id'])) {
$message['reply']['type'] = $message_po . '_product';
$message['reply']['product'] = Wo_GetProduct($message['reply']['product_id']);
}
$message['reply']['file_size'] = 0;
if (!empty($message['reply']['media'])) {
$message['reply']['file_size'] = '0MB';
if (file_exists($message['reply']['file_size'])) {
$message['reply']['file_size'] = Wo_SizeFormat(filesize($message['reply']['media']));
}
$message['reply']['media'] = Wo_GetMedia($message['reply']['media']);
}
if (!empty($message['reply']['time'])) {
$time_today = time() - 86400;
if ($message['reply']['time'] < $time_today) {
$message['reply']['time_text'] = date('m.d.y', $message['reply']['time']);
} else {
$time = new DateTime('now', $timezone);
$time->setTimestamp($message['reply']['time']);
$message['reply']['time_text'] = $time->format('H:i');
}
}
}
if (!empty($message['story'])) {
foreach ($non_allowed as $key => $value) {
unset($message['story']['user_data'][$value]);
}
if (!empty($message['story']['thumb']['filename'])) {
$message['story']['thumbnail'] = $message['story']['thumb']['filename'];
unset($message['story']['thumb']);
} else {
$message['story']['thumbnail'] = $message['story']['user_data']['avatar'];
}
$message['story']['time_text'] = Wo_Time_Elapsed_String($message['story']['posted']);
$message['story']['view_count'] = $db->where('story_id',$message['story']['id'])->where('user_id',$message['story']['user_id'],'!=')->getValue(T_STORY_SEEN,'COUNT(*)');
}
$array[] = $message;
}
}
}
$response_data = array(
'api_status' => 200,
'data' => $array
);
}
else{
$error_code = 5;
$error_message = 'chat_id can not be empty';
}