| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/search.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) 2018 WoWonder. All rights reserved.
// +------------------------------------------------------------------------+
$users = array();
$pages = array();
$groups = array();
$channels = array();
$options['limit'] = (!empty($_POST['limit'])) ? (int) $_POST['limit'] : 35;
$options['query'] = (!empty($_POST['search_key'])) ? Wo_Secure($_POST['search_key']) : '';
$options['gender'] = (!empty($_POST['gender'])) ? Wo_Secure($_POST['gender']) : '';
$options['status'] = (!empty($_POST['status'])) ? Wo_Secure($_POST['status']) : '';
$options['image'] = (!empty($_POST['image'])) ? Wo_Secure($_POST['image']) : '';
$options['country'] = (!empty($_POST['country'])) ? Wo_Secure($_POST['country']) : '';
$options['verified'] = (!empty($_POST['verified'])) ? Wo_Secure($_POST['verified']) : '';
$options['filterbyage'] = (!empty($_POST['filterbyage'])) ? Wo_Secure($_POST['filterbyage']) : '';
$options['age_from'] = (!empty($_POST['age_from'])) ? Wo_Secure($_POST['age_from']) : '';
$options['age_to'] = (!empty($_POST['age_to'])) ? Wo_Secure($_POST['age_to']) : '';
$user_offset = (!empty($_POST['user_offset'])) ? (int) $_POST['user_offset'] : 0;
$page_offset = (!empty($_POST['page_offset'])) ? (int) $_POST['page_offset'] : 0;
$group_offset = (!empty($_POST['group_offset'])) ? (int) $_POST['group_offset'] : 0;
$channels_offset = (!empty($_POST['channels_offset'])) ? (int) $_POST['channels_offset'] : 0;
$get_users = Wo_GetSearchFilter($options, $options['limit'], $user_offset);
foreach ($get_users as $key => $user) {
foreach ($non_allowed as $key => $value) {
unset($user[$value]);
}
$user['is_following'] = (Wo_IsFollowing($user['user_id'], $wo['user']['user_id'])) ? 1 : 0;
$users[] = $user;
}
$search_query = Wo_GetSearchAdv($options['query'], 'pages', $page_offset);
if (count($search_query) > 0) {
foreach ($search_query as $wo['result']) {
$wo['result']['is_liked'] = (Wo_IsPageLiked($wo['result']['id'], $wo['user']['user_id'])) ? 'yes' : 'no';
$pages[] = $wo['result'];
}
}
$search_query2 = Wo_GetSearchAdv($options['query'], 'groups', $group_offset);
if (count($search_query2) > 0) {
foreach ($search_query2 as $wo['result']) {
$wo['result']['is_joined'] = (Wo_IsGroupJoined($wo['result']['id'], $wo['user']['user_id'])) ? 'yes' : 'no';
$groups[] = $wo['result'];
}
}
$search_query3 = Wo_GetSearchAdv($options['query'], 'channels', $channels_offset);
if (count($search_query3) > 0) {
foreach ($search_query3 as $wo['result']) {
$channels[] = $wo['result'];
}
}
$response_data = array(
'api_status' => 200,
'users' => $users,
'pages' => $pages,
'groups' => $groups,
'channels' => $channels
);