PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/productjuly1video/clapupclapback.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/clapupclapback.click/app_api/v1.0/platform/mobile/logout.php |
<?php // +------------------------------------------------------------------------+ // | @author Deen Doughouz (DoughouzForest) // | @author_url 1: http://www.playtubescript.com // | @author_url 2: http://codecanyon.net/user/doughouzforest // | @author_email: wowondersocial@gmail.com // +------------------------------------------------------------------------+ // | PlayTube - The Ultimate Video Sharing Platform // | Copyright (c) 2017 PlayTube. All rights reserved. // +------------------------------------------------------------------------+ if (empty($_POST['user_id']) || empty($_POST['s'])) { $response_data = array( 'api_status' => '400', 'api_version' => $api_version, 'errors' => array( 'error_id' => '1', 'error_text' => 'Bad Request, Invalid or missing parameter' ) ); } else { $s = PT_Secure($_POST['s']); $user_id = PT_Secure($_POST['user_id']); # Check if user session exists in DB $db->where('user_id',$user_id)->where('session_id',$s); $__session__ = $db->getValue(T_SESSIONS,'count(`id`)'); if (empty($__session__)) { $response_data = array( 'api_status' => '400', 'api_version' => $api_version, 'errors' => array( 'error_id' => '2', 'error_text' => 'Error 400 - Session does not exist' ) ); } else { # Delete user session from DB $db->where('user_id',$user_id)->where('session_id',$s)->delete(T_SESSIONS); $response_data = array( 'api_status' => '200', 'api_version' => $api_version, 'data' => array( 'message' => 'Successfully logged out', ) ); } }