PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/productjuly1video/champdoms.click/app_api/v1.0/platform/mobile/ |
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 |
Dir : //home/trave494/productjuly1video/champdoms.click/app_api/v1.0/platform/mobile/fetch_articles.php |
<?php if (!IS_LOGGED) { $response_data = array( 'api_status' => '400', 'api_version' => $api_version, 'errors' => array( 'error_id' => '1', 'error_text' => 'Not logged in' ) ); } else{ $limit = (!empty($_POST['limit']) && is_numeric($_POST['limit']) && $_POST['limit'] > 0 && $_POST['limit'] <= 50) ? PT_Secure($_POST['limit']) : 20; $offset = (!empty($_POST['offset']) && is_numeric($_POST['offset']) && $_POST['offset'] > 0) ? PT_Secure($_POST['offset']) : 0; if ($offset > 0) { $db->where('id',$offset,'<'); } if (!empty($_POST['category_id'])) { $db->where('category',PT_Secure($_POST['category_id'])); } if (!empty($_POST['keyword'])) { $keyword = PT_Secure($_POST['keyword']); $db->where("(`title` LIKE '%$keyword%' OR `description` LIKE '%$keyword%' OR `tags` LIKE '%$keyword%')"); } $posts = $db->orderBy('id', 'DESC')->get(T_POSTS,$limit); foreach ($posts as $key => $post) { $post->orginal_text = $post->text; $post->text = strip_tags(htmlspecialchars_decode($post->text)); $post->views = number_format($post->views); $post->image = PT_GetMedia($post->image); $post->url = PT_Link('articles/read/' . PT_URLSlug($post->title,$post->id)); $post->time_format = date('d-F-Y',$post->time); $post->text_time = PT_Time_Elapsed_String($post->time); $post->user_data = PT_UserData($post->user_id); unset($post->user_data->password); $post->comments_count = $db->where('post_id', $post->id)->getValue(T_COMMENTS,'COUNT(*)'); $post->likes = $db->where('post_id', $post->id)->where('type', 1)->getValue(T_DIS_LIKES, "count(*)"); $post->dislikes = $db->where('post_id', $post->id)->where('type', 2)->getValue(T_DIS_LIKES, "count(*)"); $u_like = $db->where('post_id', $post->id)->where('user_id', $user->id)->where('type', 1)->getValue(T_DIS_LIKES, "count(*)"); $post->liked = ($u_like > 0) ? 1 : 0; $u_dislike = $db->where('post_id', $post->id)->where('user_id', $user->id)->where('type', 2)->getValue(T_DIS_LIKES, "count(*)"); $post->disliked = ($u_dislike > 0) ? 1 : 0; } $response_data = array( 'api_status' => '200', 'api_version' => $api_version, 'success_type' => 'fetch_articles', 'data' => $posts ); }