[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Instamojo.php
<?php namespace App\Library; use App\Models\Gateway; use Illuminate\Support\Facades\Http; use Illuminate\Support\Facades\Session; class Instamojo { public static function redirect_if_payment_success() { if (Session::has('fund_callback')) { return url(Session::get('fund_callback')['success_url']); } else { return url('payment/success'); } } public static function redirect_if_payment_faild() { if (Session::has('fund_callback')) { return url(Session::get('fund_callback')['cancel_url']); } else { return url('payment/failed'); } } public static function fallback() { if (Session::get('without_auth')) { return url('payment/instamojo'); } return url('payment/instamojo'); } public static function make_payment($array) { //Checking Minimum/Maximum amount $gateway = Gateway::findOrFail($array['gateway_id']); $amount = $array['pay_amount']; $regex = "/^(0|91|\+91)?[789]\d{9}$/"; if ($array['phone'] == "") { return redirect()->back()->with('warning', 'Phone Number not given!')->with('type', 'alert-danger'); } if (!preg_match($regex, $array['phone'])) { return redirect()->back()->with('warning', 'Phone Number not valid!')->with('type', 'alert-danger'); } $currency = $array['currency']; $email = $array['email']; $amount = $array['pay_amount']; $name = $array['name']; $billName = $array['billName']; $mode = $array['mode']; $data['mode'] = $mode; $data['x_auth_token'] = $array['x_auth_token']; $data['x_api_key'] = $array['x_api_key']; $data['payment_mode'] = 'instamojo'; $data['amount'] = $amount; $data['charge'] = $array['charge']; $data['phone'] = $array['phone']; $data['gateway_id'] = $array['gateway_id']; $data['main_amount'] = $array['amount']; $data['billName'] = $billName; $data['name'] = $name; $data['email'] = $email; $data['currency'] = $currency; if ($mode == 0) { $data['env'] = false; $mode = false; } else { $data['env'] = true; $mode = true; } Session::put('instamojo_credentials', $data); if ($mode == true) { $url = 'https://test.instamojo.com/api/1.1/payment-requests/'; } else { $url = 'https://www.instamojo.com/api/1.1/payment-requests/'; } try { $params = [ 'purpose' => $data['billName'], 'amount' => $amount, 'phone' => $data['phone'], 'buyer_name' => $name, 'redirect_url' => Instamojo::fallback(), 'send_email' => true, 'send_sms' => true, 'email' => $email, 'allow_repeated_payments' => false, ]; $response = Http::asForm()->withHeaders([ 'X-Api-Key' => $data['x_api_key'], 'X-Auth-Token' => $data['x_auth_token'], ])->post($url, $params); if (isset($response['payment_request'])) { $url = $response['payment_request']['longurl']; return redirect($url); } else { Session::flash('error', $response->reason()); Session::forget('instamojo_credentials'); return redirect(Instamojo::redirect_if_payment_faild()); } } catch (\Throwable $th) { Session::flash('error', $th->getMessage()); Session::forget('instamojo_credentials'); return redirect(Instamojo::redirect_if_payment_faild()); } } public function status() { if (!Session::has('instamojo_credentials')) { return abort(404); } $response = Request()->all(); $payment_id = $response['payment_id']; $info = Session::get('instamojo_credentials'); if ($response['payment_status'] == 'Credit') { $data['payment_id'] = $payment_id; $data['payment_method'] = "instamojo"; $data['gateway_id'] = $info['gateway_id']; $data['amount'] = $info['main_amount']; $data['charge'] = $info['charge']; $data['status'] = 1; $data['payment_status'] = 1; Session::forget('instamojo_credentials'); Session::put('payment_info', $data); return redirect(Instamojo::redirect_if_payment_success()); } else { $data['payment_status'] = 0; Session::put('payment_info', $data); Session::forget('instamojo_credentials'); return redirect(Instamojo::redirect_if_payment_faild()); } } public static function isfraud($creds) { $payment_id = $creds['payment_id']; $api = $creds['x_api_key']; $is_test = $creds['is_test']; $auth_token = $creds['x_auth_token']; if ($is_test == 1) { $url = 'https://test.instamojo.com/api/1.1/payments/' . $payment_id . '/'; } else { $url = 'https://www.instamojo.com/api/1.1/payments/' . $payment_id . '/'; } try { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array( "Content-Type: application/json", "X-Api-Key:" . $api, "X-Auth-Token:" . $auth_token)); $response = curl_exec($ch); curl_close($ch); $arr = json_decode($response, true); return $arr['success'] === true ? 1 : 0; } catch (\Throwable $th) { return 0; } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.89 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002