/
home
/
desid573
/
public_html
/
fc_api
/
/home/desid573/public_html/fc_api
mkdir
upload
Name
Size
Mode
Actions
lib/
-
0755
rm
twilio-php-master/
-
0755
rm
vendor/
-
0755
rm
after_booking_page.php
2595
0644
edit
dl
rm
appoff.php
4782
0644
edit
dl
rm
booking.php
17680
0644
edit
dl
rm
booking_edit_request.php
10196
0644
edit
dl
rm
cancel_booking.php
6064
0644
edit
dl
rm
check_open.php
0
0644
edit
dl
rm
composer.json
65
0644
edit
dl
rm
composer.lock
2355
0644
edit
dl
rm
confirmsend.php
2983
0644
edit
dl
rm
confirm_booking_change.php
6305
0644
edit
dl
rm
confirm_booking_change_ajax.php
6696
0644
edit
dl
rm
contact_us_mail.php
890
0644
edit
dl
rm
copy_account_to_homekey.php
4338
0644
edit
dl
rm
dispatch.php
877
0644
edit
dl
rm
emailConfirmReset.php
486
0644
edit
dl
rm
error_log
30761021
0644
edit
dl
rm
family-cab_small.jpg
98853
0644
edit
dl
rm
generate_credit.php
3098
0644
edit
dl
rm
generate_referall.php
2779
0644
edit
dl
rm
getuser_byid.php
2341
0644
edit
dl
rm
getuser_bymail.php
3419
0644
edit
dl
rm
get_all_booking.php
779
0644
edit
dl
rm
get_booking_bybooking_id.php
813
0644
edit
dl
rm
get_booking_byuser.php
1057
0644
edit
dl
rm
get_booking_status.php
3246
0644
edit
dl
rm
get_completed_bookings.php
710
0644
edit
dl
rm
get_ETA.php
5013
0644
edit
dl
rm
get_lead_message.php
673
0644
edit
dl
rm
get_open_bookings.php
1537
0644
edit
dl
rm
get_payment_byuser.php
1064
0644
edit
dl
rm
get_price.php
41
0644
edit
dl
rm
get_recipes.php
6361
0644
edit
dl
rm
get_request_details.php
976
0644
edit
dl
rm
get_TE.php
1217
0644
edit
dl
rm
index.php
13722
0644
edit
dl
rm
index_backup.php
4791
0644
edit
dl
rm
lib_tr.zip
105047
0644
edit
dl
rm
login_api.php
8679
0644
edit
dl
rm
noteconfirm.php
9228
0644
edit
dl
rm
off.php
2854
0644
edit
dl
rm
passwordResetLink.php
5170
0644
edit
dl
rm
pay_file.php
7302
0644
edit
dl
rm
pay_file_back.php
5326
0644
edit
dl
rm
placehold.html
2147
0644
edit
dl
rm
reset_email.php
1755
0644
edit
dl
rm
reset_phone.php
5717
0644
edit
dl
rm
test2.php
0
0644
edit
dl
rm
test_222.php
845
0644
edit
dl
rm
update_api.php
5910
0644
edit
dl
rm
update_api_on_mail.php
4723
0644
edit
dl
rm
validatecode.php
1094
0644
edit
dl
rm
validatephone.php
1034
0644
edit
dl
rm
Edit:
/home/desid573/public_html/fc_api/pay_file_back.php
(5326B)
<?php require("lib/config.php"); require_once 'vendor/eway/eway-rapid-php/include_eway.php'; $data = $_REQUEST; $sql = "SELECT * FROM customers where email = '".$_REQUEST['username']."'"; $result = $conn->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; } } } } $name = $customer[0]["name"]; $name_split = explode(" ",$name); $fname = $name_split[0]; $lname = $name_split[1]; $cus = $customer[0]["name"]; $Res["data"]["id"] = $customer[0]["id"]; $Res["data"]["name"] = $customer[0]["name"]; $Res["data"]["mobile"] = $customer[0]["mobile"]; $Res["data"]["email"] = $customer[0]["email"]; $Res["data"]["address"] = $cust_detail[0]["address"]; $Res["data"]["addr_lat"] = $cust_detail[0]["addr_lat"]; $Res["data"]["addr_long"] = $cust_detail[0]["addr_long"]; $Res["data"]["card_number"] = $cust_detail[0]["card_number"]; $card_expire = $cust_detail[0]["ExpiryMonth"]."/".$cust_detail[0]["Expiryyear"]; $Res["data"]["card_expire"] = $card_expire; $Res["data"]["cvv"] = $cust_detail[0]["cvv"]; $Res["data"]["card_zipcode"] = $cust_detail[0]["card_zipcode"]; $Res["data"]["card_holder_name"] = $cust_detail[0]["card_holder_name"]; $apiKey = '60CF3Ce97nRS1Z1Wp5m9kMmzHHEh8Rkuj31QCtVxjPWGYA9FymyqsK0Enm1P6mHJf0THbR'; $apiPassword = 'API-P4ss'; $apiEndpoint = \Eway\Rapid\Client::MODE_SANDBOX; // Use \Eway\Rapid\Client::MODE_PRODUCTION when you go live $client = \Eway\Rapid::createClient($apiKey, $apiPassword, $apiEndpoint); $customer = [ 'Title' => $_REQUEST['title'], 'FirstName' => $fname, 'LastName' => $lname, 'Country' => $_REQUEST['country'], 'CardDetails' => [ 'Name' => $cus, 'Number' => $cust_detail[0]["card_number"], 'ExpiryMonth' => $cust_detail[0]["ExpiryMonth"], 'ExpiryYear' => $cust_detail[0]["Expiryyear"], 'CVN' => $cust_detail[0]["cvv"], ] ]; $response = $client->createCustomer(\Eway\Rapid\Enum\ApiMethod::DIRECT, $customer); $tokencustomerid = $response->Customer->TokenCustomerID; $tokencustomerid; $transaction = [ 'Customer' => [ 'TokenCustomerID' => $tokencustomerid, 'Reference' => $cus, 'FirstName' => $fname, 'LastName' => $lname, 'PostalCode' => $cust_detail[0]["card_zipcode"], 'Country' => $_REQUEST['country'], 'Phone' => $customer[0]["mobile"], 'Email' => $customer[0]["email"], 'CardDetails' => [ 'Name' => $cus, 'Number' => $cust_detail[0]["card_number"], 'ExpiryMonth' => $cust_detail[0]["ExpiryMonth"], 'ExpiryYear' => $cust_detail[0]["Expiryyear"], 'CVN' => $cust_detail[0]["cvv"], ] ], 'Payment' => [ 'TotalAmount' => $_REQUEST['price'], ], 'TransactionType' => \Eway\Rapid\Enum\TransactionType::PURCHASE, ]; $response = $client->createTransaction(\Eway\Rapid\Enum\ApiMethod::DIRECT, $transaction); $tokencustomerid = $response->Customer->TokenCustomerID; if (isset($response->TransactionStatus) && $response->TransactionStatus) { $Res["transaction"]["transactionid"] = $response->TransactionID; $TransactionID = $response->TransactionID; $Res["transaction"]["AuthorisationCode"] = $response->AuthorisationCode; $authorisation_code = $response->AuthorisationCode; $Res["transaction"]["tokencustomerid"] = $response->Customer->TokenCustomerID; $tokencustomerid = $response->Customer->TokenCustomerID; $sql = "INSERT INTO `perthdes_new_pro_api`.`payments` (`id`, `transaction_id`, `authorisation_code`, `customer_name`, `customer_email`, `amount`, `token_id`, `created`, `modified`) VALUES (NULL, '".$TransactionID."', '".$authorisation_code."', '".$cus."', '".$_REQUEST['username']."', '".$_REQUEST['price']."', '".$tokencustomerid."' , NOW(), NOW())"; if ($conn->query($sql) === TRUE) { $Res['payment']["payment_id"] = $conn->insert_id; $Res["message"]["success"] = "payment success" ; } } else { $error = true; if ($response->getErrors()) { foreach ($response->getErrors() as $error) { $errormessage.= "Error: $error (".\Eway\Rapid::getMessage($error).")<br>\n"; } } else { $errormessage.= "Sorry, your payment was declined"; } $Res["message"]["errormessage"] = $errormessage; } //echo "<pre>"; //print_r($Res); //echo "</pre>"; echo json_encode(new ArrayObject($Res)); /*function send_mail($to, $from, $title, $message) { $headers = "MIME-Version: 1.0 \r\n"; $headers .= "From: $from \n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html;charset=ISO-8859-1 \r\n"; $headers .= "X-Priority: 3\r\n"; $headers .= "X-Mailer: smail-PHP " . phpversion() . "\r\n"; return mail($to, $title, $message, $headers); }*/ ?>
Save
cmd:
run