/home/desid573/public_html/fc_api
NameSizeModeActions
lib/-0755rm
twilio-php-master/-0755rm
vendor/-0755rm
after_booking_page.php25950644editdlrm
appoff.php47820644editdlrm
booking.php176800644editdlrm
booking_edit_request.php101960644editdlrm
cancel_booking.php60640644editdlrm
check_open.php00644editdlrm
composer.json650644editdlrm
composer.lock23550644editdlrm
confirmsend.php29830644editdlrm
confirm_booking_change.php63050644editdlrm
confirm_booking_change_ajax.php66960644editdlrm
contact_us_mail.php8900644editdlrm
copy_account_to_homekey.php43380644editdlrm
dispatch.php8770644editdlrm
emailConfirmReset.php4860644editdlrm
error_log307610210644editdlrm
family-cab_small.jpg988530644editdlrm
generate_credit.php30980644editdlrm
generate_referall.php27790644editdlrm
getuser_byid.php23410644editdlrm
getuser_bymail.php34190644editdlrm
get_all_booking.php7790644editdlrm
get_booking_bybooking_id.php8130644editdlrm
get_booking_byuser.php10570644editdlrm
get_booking_status.php32460644editdlrm
get_completed_bookings.php7100644editdlrm
get_ETA.php50130644editdlrm
get_lead_message.php6730644editdlrm
get_open_bookings.php15370644editdlrm
get_payment_byuser.php10640644editdlrm
get_price.php410644editdlrm
get_recipes.php63610644editdlrm
get_request_details.php9760644editdlrm
get_TE.php12170644editdlrm
index.php137220644editdlrm
index_backup.php47910644editdlrm
lib_tr.zip1050470644editdlrm
login_api.php86790644editdlrm
noteconfirm.php92280644editdlrm
off.php28540644editdlrm
passwordResetLink.php51700644editdlrm
pay_file.php73020644editdlrm
pay_file_back.php53260644editdlrm
placehold.html21470644editdlrm
reset_email.php17550644editdlrm
reset_phone.php57170644editdlrm
test2.php00644editdlrm
test_222.php8450644editdlrm
update_api.php59100644editdlrm
update_api_on_mail.php47230644editdlrm
validatecode.php10940644editdlrm
validatephone.php10340644editdlrm
Edit: /home/desid573/public_html/fc_api/copy_account_to_homekey.php (4338B)
query($sql); if ($result->num_rows > 0) { while($row = $result->fetch_assoc()) { $customer[] = $row; $sql = "SELECT * FROM `customer_details` where `cid` = '".$row["id"]."'"; $result = $conn->query($sql); if ($result->num_rows > 0) { while($row_details = $result->fetch_assoc()) { $cust_detail[] = $row_details; } } $sql = "SELECT * FROM `customer_tokens` where `cid` = '".$row["id"]."'"; $result = $conn->query($sql); if ($result->num_rows > 0) { while($row_token = $result->fetch_assoc()) { $cust_token[] = $row_token; } } } $dbhost = "localhost"; $dbuser = "desid573_inquiries"; $dbpass = "@G&{)0*&Ts^V"; $dbname = "desid573_new_pro_api"; $conn = new mysqli($dbhost , $dbuser , $dbpass , $dbname ); // Check connection $sql = "SELECT * FROM customers where email = '".$_REQUEST['username']."'"; $result = $conn->query($sql); if ($result->num_rows > 0) { $Res["message"] = "Customer Already Exists"; $Res["staus"] = "error"; } else { // Create connection $conn = new mysqli($dbhost , $dbuser , $dbpass , $dbname ); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $fullname = $customer[0]["name"]; $sql = "INSERT INTO `customers` (`id`, `name`, `mobile`, `email`,`password`, `firebase_token`, `promo_code`, `promo_used`, `is_delete`, `created`, `modified`) VALUES (NULL, '".$fullname."', '".$customer[0]["mobile"]."', '".$_REQUEST["username"]."', '".$customer[0]["password"]."', '', 'COPYFC', '0', '0',NOW() ,NOW() )"; if ($conn->query($sql) === TRUE) { $cid = $conn->insert_id; if($conn->insert_id) { $sql_detail = "INSERT INTO `perthdes_new_pro_api`.`customer_details` (`id`, `cid`, `address`, `addr_lat`, `addr_long`) VALUES (NULL, '".$cid."', '".$cust_detail[0]["address"]."', '".$cust_detail[0]["addr_lat"]."','".$cust_detail[0]["addr_long"]."')"; if ($conn->query($sql_detail) === TRUE) { //$Res["customer_detail_id"] = $conn->insert_id; //$Res["customer_detail_status"] = "OK"; $success[] = "Ok" ; } else { //$Res["customer_detail_status"] = "Error"; $error[] = "Error"; } $sql_token = "INSERT INTO `perthdes_new_pro_api`.`customer_tokens` (`id`, `cid`, `access_token_value`, `status`, `created`, `modified`) VALUES (NULL, '".$cid."', '".$cust_token ."', '1', NOW(), NOW())"; if ($conn->query($sql_token) === TRUE) { //$Res["customer_token_id"] = $conn->insert_id; //$Res["customer_token_status"] = "OK"; $success[] = "Ok" ; } else { //$Res["customer_token_status"] = "Error"; $error[] = "Error"; } } if(!$error) { $Res["message"] = "Details Copied to HomeKey App"; $Res["staus"] = "OK"; $curlObj = curl_init(); curl_setopt($curlObj, CURLOPT_URL, 'https://hooks.slack.com/services/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'); curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curlObj, CURLOPT_HEADER, 0); curl_setopt($curlObj, CURLOPT_HTTPHEADER, array('Content-type:application/json')); curl_setopt($curlObj, CURLOPT_POST, 1); curl_setopt($curlObj, CURLOPT_POSTFIELDS, '{"text": "New Customer '.$fullname.' created from FamCab App"}'); $response = curl_exec($curlObj); curl_close($curlObj); } else { $Res["message"] = "Error Copying Payment Details"; $Res["staus"] = "error"; } } else { $Res["message"] = "Error Copying Customer Details"; $Res["staus"] = "error"; error_log("add to customers error: ".$conn->error); } } } else { $Res["message"] = "Error Accessing Details"; $Res["staus"] = "error"; } echo json_encode(new ArrayObject($Res)); /*echo "
";
print_r($Res);
//print_r($response);
echo "
";*/ $conn->close(); // =============== New customer user api End Here ========================== ?>