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

Dir : /home/trave494/outtheboxministry.org/api/windows_app/
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/windows_app/insert_new_message.php

<?php
// +------------------------------------------------------------------------+
// | @author Deen Doughouz (DoughouzForest)
// | @author_url 1: http://www.wowonder.com
// | @author_url 2: http://codecanyon.net/user/doughouzforest
// | @author_email: wowondersocial@gmail.com   
// +------------------------------------------------------------------------+
// | WoWonder - The Ultimate Social Networking Platform
// | Copyright (c) 2016 WoWonder. All rights reserved.
// +------------------------------------------------------------------------+
$json_error_data     = array();
$json_success_data   = array();
$json_success_data_2 = array();
$type                = Wo_Secure($_GET['type'], 0);
if ($type == 'insert_new_message' || $type == 'new_message') {
    if (empty($_POST['user_id'])) {
        $json_error_data = array(
            'api_status' => '400',
            'api_text' => 'failed',
            'api_version' => $api_version,
            'errors' => array(
                'error_id' => '3',
                'error_text' => 'No user id sent.'
            )
        );
    } else if (empty($_POST['recipient_id'])) {
        $json_error_data = array(
            'api_status' => '400',
            'api_text' => 'failed',
            'api_version' => $api_version,
            'errors' => array(
                'error_id' => '5',
                'error_text' => 'No recipient id sent.'
            )
        );
    } else if (empty($_POST['send_time'])) {
        $json_error_data = array(
            'api_status' => '400',
            'api_text' => 'failed',
            'api_version' => $api_version,
            'errors' => array(
                'error_id' => '5',
                'error_text' => 'No send_time sent.'
            )
        );
    }
    if (empty($json_error_data)) {
        $user_id         = $_POST['user_id'];
        $s               = Wo_Secure($_POST['access_token']);
        $user_login_data = Wo_UserData($user_id);
        $wo['lang'] = Wo_LangsFromDB($user_login_data['language']);
        if (empty($user_login_data)) {
            $json_error_data = array(
                'api_status' => '400',
                'api_text' => 'failed',
                'api_version' => $api_version,
                'errors' => array(
                    'error_id' => '6',
                    'error_text' => 'Username is not exists.'
                )
            );
            header("Content-type: application/json");
            echo json_encode($json_error_data, JSON_PRETTY_PRINT);
            exit();
        } else if ($wo['loggedin'] == false) {
            $json_error_data = array(
                'api_status' => '400',
                'api_text' => 'failed',
                'api_version' => $api_version,
                'errors' => array(
                    'error_id' => '6',
                    'error_text' => 'Session id is wrong.'
                )
            );
            header("Content-type: application/json");
            echo json_encode($json_error_data, JSON_PRETTY_PRINT);
            exit();
        } else {

            $recipient_id     = $_POST['recipient_id'];
            $user_login_data2 = Wo_UserData($recipient_id);
            if (empty($user_login_data2)) {
                $json_error_data = array(
                    'api_status' => '400',
                    'api_text' => 'failed',
                    'api_version' => $api_version,
                    'errors' => array(
                        'error_id' => '6',
                        'error_text' => 'User Profile is not exists.'
                    )
                );
                header("Content-type: application/json");
                echo json_encode($json_error_data, JSON_PRETTY_PRINT);
                exit();
            }
            else {
                if (empty($_POST['product_id'])) {

                    $mediaFilename = '';
                    $mediaName     = '';
                    if (isset($_FILES['file']['name'])) {
                        $fileInfo      = array(
                            'file' => $_FILES["file"]["tmp_name"],
                            'name' => $_FILES['file']['name'],
                            'size' => $_FILES["file"]["size"],
                            'type' => $_FILES["file"]["type"]
                        );
                        $media         = Wo_ShareFile($fileInfo);
                        $mediaFilename = $media['filename'];
                        $mediaName     = $_FILES['file']['name'];
                    }
                    if (!empty($_POST['image_url'])) {
                        $fileend = '_url_image';
                        if (!empty($_POST['sticker_id'])) {
                            $fileend =  '_sticker_' . Wo_Secure($_POST['sticker_id']);
                        }
                        $mediaFilename = Wo_ImportImageFromUrl($_POST['image_url'], $fileend);
                    }
                    $gif = '';
                    if (!empty($_POST['gif'])) {
                        if (strpos($_POST['gif'], '.gif') !== false) {
                            $gif = Wo_Secure($_POST['gif']);
                        }
                    }
                    $lng = 0;
                    $lat = 0;
                    if (!empty($_POST['lng']) && !empty($_POST['lat'])) {
                        $lng = Wo_Secure($_POST['lng']);
                        $lat = Wo_Secure($_POST['lat']);
                    }
                    $message_data = array(
                        'from_id' => Wo_Secure($wo['user']['user_id']),
                        'to_id' => Wo_Secure($recipient_id),
                        'media' => Wo_Secure($mediaFilename),
                        'mediaFileName' => Wo_Secure($mediaName),
                        'time' => time(),
                        'type_two' => (!empty($_POST['contact'])) ? 'contact' : '',
                        'text' => '',
                        'stickers' => $gif,
                        'lng' => $lng,
                        'lat' => $lat,
                    );
                    if (!empty($_POST['text']) || (isset($_POST['text']) && $_POST['text'] === '0') ) {
                        $message_data['text'] = Wo_Secure($_POST['text']);
                    }
                    else{
                        if (empty($lng) && empty($lat) && empty($_FILES['file']['name']) && empty($_POST['image_url']) && empty($_POST['gif'])) {

                            $json_error_data = array(
                                'api_status' => '400',
                                'api_text' => 'failed',
                                'api_version' => $api_version,
                                'errors' => array(
                                    'error_id' => '7',
                                    'error_text' => 'Please check your details.'
                                )
                            );
                            header("Content-type: application/json");
                            echo json_encode($json_error_data, JSON_PRETTY_PRINT);
                            exit();
                        }
                    }
                    $last_id      = Wo_RegisterMessage($message_data);
                }
                else{
                    $last_id = Wo_RegisterMessage(array(
                                    'from_id' => Wo_Secure($wo['user']['user_id']),
                                    'to_id' => $recipient_id,
                                    'time' => time(),
                                    'stickers' => '',
                                    'product_id' => Wo_Secure($_POST['product_id'])
                                ));
                }
                if (!empty($last_id)) {
                    $message_info = array(
                        'user_id' => $recipient_id,
                        'message_id' => $last_id
                    );
                    $message_info = Wo_GetMessages($message_info);
                    foreach ($non_allowed as $key => $value) {
                       unset($message_info[0]['messageUser'][$value]);
                    }
                    if (empty($wo['user']['timezone'])) {
                        $wo['user']['timezone'] = 'UTC';
                    }
                    $timezone = new DateTimeZone($wo['user']['timezone']);
                    $messages = array();
                    foreach ($message_info as $key => $message) {
                        $message['text'] = Wo_Markup($message['or_text']);
                        $message['time_text'] = Wo_Time_Elapsed_String($message['time']);
                        $message_po           = 'left';
                        if ($message['from_id'] == $wo['user']['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';
                        }
                        if (!empty($message['lng']) && !empty($message['lat'])) {
                            $message['type']   = 'map';
                        }
                        $message['type']     = $message_po . '_' . $message['type'];
                        $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');
                            }
                        }
                        $message['message_hash_id'] = $_POST['message_hash_id'];
                        array_push($messages, $message);
                    }
                    if (!empty($messages)) {
                        $json_success_data22 = array(
                            'api_status' => '200',
                            'api_text' => 'success',
                            'api_version' => $api_version,
                            'messages' => $messages
                        );
                        header("Content-type: application/json");
                        echo json_encode($json_success_data22);
                        exit();
                    }
                }
                else{
                    $json_error_data = array(
                        'api_status' => '400',
                        'api_text' => 'failed',
                        'api_version' => $api_version,
                        'errors' => array(
                            'error_id' => '8',
                            'error_text' => 'something went wrong.'
                        )
                    );
                    header("Content-type: application/json");
                    echo json_encode($json_error_data, JSON_PRETTY_PRINT);
                    exit();
                }
            }





            // if (empty($_POST['text'])) {
            //     if (empty($_FILES['message_file']['name']) && empty($_POST['gif']) && empty($_POST['image_url'])) {
            //         $json_error_data = array(
            //         'api_status' => '400',
            //         'api_text' => 'failed',
            //         'api_version' => $api_version,
            //         'errors' => array(
            //             'error_id' => '10',
            //             'error_text' => 'Empty message text.'
            //         )
            //        );
            //        header("Content-type: application/json");
            //        echo json_encode($json_error_data, JSON_PRETTY_PRINT);
            //        exit();
            //     }
            // }
            // $mediaFilename = '';
            // $mediaName     = '';
            // if (isset($_FILES['message_file']['name'])) {
            //     $fileInfo      = array(
            //         'file' => $_FILES["message_file"]["tmp_name"],
            //         'name' => $_FILES['message_file']['name'],
            //         'size' => $_FILES["message_file"]["size"],
            //         'type' => $_FILES["message_file"]["type"]
            //     );
            //     $media         = Wo_ShareFile($fileInfo);
            //     $mediaFilename = $media['filename'];
            //     $mediaName     = $media['name'];
            // }
            // if (!empty($_POST['image_url'])) {
            //     $mediaFilename = Wo_ImportImageFromUrl($_POST['image_url'], '_' . $_POST['sticker_id']); //_sticker1
            // }
            // $gif = '';
            // if (!empty($_POST['gif'])) {
            //     if (strpos($_POST['gif'], '.mp4') !== false) {
            //         $gif = Wo_Secure($_POST['gif']);
            //     }
            // }
            // $message_id    = Wo_RegisterMessage(array(
            //     'from_id' => Wo_Secure($user_id),
            //     'to_id' => Wo_Secure($recipient_id),
            //     'text' => Wo_Secure($_POST['text']),
            //     'media' => Wo_Secure($mediaFilename),
            //     'mediaFileName' => Wo_Secure($mediaName),
            //     'stickers' => $gif,
            //     'time' => time()
            // ), $s);
            // if (!empty($message_id)) {
            //     $message_info = array(
            //         'user_id' => $user_id,
            //         'recipient_id' => $recipient_id,
            //         'message_id' => $message_id
            //     );
            //     $message_info = Wo_GetMessagesAPP($message_info);
            // } else {
            //     $json_error_data = array(
            //         'api_status' => '400',
            //         'api_text' => 'failed',
            //         'api_version' => $api_version,
            //         'errors' => array(
            //             'error_id' => '11',
            //             'error_text' => 'failed to send message, please try again.'
            //         )
            //     );
            //     header("Content-type: application/json");
            //     echo json_encode($json_error_data, JSON_PRETTY_PRINT);
            //     exit();
            // }
            // if (empty($user_login_data['timezone'])) {
            //     $user_login_data['timezone'] = 'UTC';
            // }
            // $timezone = new DateTimeZone($user_login_data['timezone']);
            // foreach ($message_info as $message) {
            //     $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'])) {
            //         $message['type']   = 'gif';
            //     }
            //     if ($message['type_two'] == 'contact') {
            //         $message['type']   = 'contact';
            //     }
            //     $message['type']     = $message_po . '_' . $message['type'];
            //     $message['file_size'] = 0;
            //     if (!empty($message['media'])) {
            //         if (file_exists($message['media'])) {
            //             $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');
            //         }
            //         $message['send_time'] = $_POST['send_time'];
            //     }
            //     array_push($json_success_data, $message);
            // }
        }
    } else {
        header("Content-type: application/json");
        echo json_encode($json_error_data, JSON_PRETTY_PRINT);
        exit();
    }
}
$json_success_data22 = array(
    'api_status' => '200',
    'api_text' => 'success',
    'api_version' => $api_version,
    'messages' => $json_success_data
);
header("Content-type: application/json");
echo json_encode($json_success_data22);
exit();
?>