Files
2026-03-11 15:29:37 +07:00

223 lines
5.3 KiB
PHP
Executable File

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Midtrans
{
/**
* Your merchant's server key
* @static
*/
public static $serverKey;
/**
* true for production
* false for sandbox mode
* @static
*/
public static $isProduction = false;
/**
* Default options for every request
* @static
*/
public static $curlOptions = array();
const SANDBOX_BASE_URL = 'https://app.sandbox.midtrans.com/snap/v1/transactions';
const PRODUCTION_BASE_URL = 'https://app.midtrans.com/snap/v1/transactions';
const SNAP_SANDBOX_BASE_URL = 'https://app.sandbox.midtrans.com/snap/v1';
const SNAP_PRODUCTION_BASE_URL = 'https://app.midtrans.com/snap/v1';
public function config($params)
{
Midtrans::$serverKey = $params['server_key'];
Midtrans::$isProduction = $params['production'];
}
/**
* @return string Veritrans API URL, depends on $isProduction
*/
public static function getBaseUrl()
{
return Midtrans::$isProduction ?
Midtrans::PRODUCTION_BASE_URL : Midtrans::SANDBOX_BASE_URL;
}
/**
* @return string Veritrans API URL, depends on $isProduction
*/
public static function getSnapBaseUrl()
{
return Midtrans::$isProduction ?
Midtrans::SNAP_PRODUCTION_BASE_URL : Midtrans::SNAP_SANDBOX_BASE_URL;
}
/**
* Send GET request
* @param string $url
* @param string $server_key
* @param mixed[] $data_hash
*/
public static function get($url, $server_key, $data_hash)
{
return self::remoteCall($url, $server_key, $data_hash, false);
}
/**
* Send POST request
* @param string $url
* @param string $server_key
* @param mixed[] $data_hash
*/
public static function post($url, $server_key, $data_hash)
{
return self::remoteCall($url, $server_key, $data_hash, true);
}
/**
* Actually send request to API server
* @param string $url
* @param string $server_key
* @param mixed[] $data_hash
* @param bool $post
*/
public static function remoteCall($url, $server_key, $data_hash, $post = true)
{
$ch = curl_init();
$curl_options = array(
CURLOPT_URL => $url,
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Accept: application/json',
'Authorization: Basic ' . base64_encode($server_key . ':')
),
CURLOPT_RETURNTRANSFER => 1,
// CURLOPT_CAINFO => dirname(__FILE__) . "/veritrans/cacert.pem"
);
// merging with Veritrans_Config::$curlOptions
if (count(Midtrans::$curlOptions)) {
// We need to combine headers manually, because it's array and it will no be merged
if (Midtrans::$curlOptions[CURLOPT_HTTPHEADER]) {
$mergedHeders = array_merge($curl_options[CURLOPT_HTTPHEADER], Midtrans::$curlOptions[CURLOPT_HTTPHEADER]);
$headerOptions = array(CURLOPT_HTTPHEADER => $mergedHeders);
} else {
$mergedHeders = array();
}
$curl_options = array_replace_recursive($curl_options, Midtrans::$curlOptions, $headerOptions);
}
if ($post) {
$curl_options[CURLOPT_POST] = 1;
if ($data_hash) {
$body = json_encode($data_hash);
$curl_options[CURLOPT_POSTFIELDS] = $body;
} else {
$curl_options[CURLOPT_POSTFIELDS] = '';
}
}
curl_setopt_array($ch, $curl_options);
$result = curl_exec($ch);
$info = curl_getinfo($ch);
// curl_close($ch);
if ($result === FALSE) {
throw new Exception('CURL Error: ' . curl_error($ch), curl_errno($ch));
} else {
$result_array = json_decode($result);
if ($info['http_code'] != 201 && !in_array($result_array->status_code, array(200, 201, 202, 407))) {
$message = 'Midtrans Error (' . $info['http_code'] . '): '
. implode(',', $result_array->error_messages);
throw new Exception($message, $info['http_code']);
} else {
return $result_array;
}
}
}
public static function getSnapToken($params)
{
$result = Midtrans::post(
Midtrans::getSnapBaseUrl() . '/transactions',
Midtrans::$serverKey,
$params
);
return $result->token;
}
/**
* Retrieve transaction status
* @param string $id Order ID or transaction ID
* @return mixed[]
*/
public static function status($id)
{
return Midtrans::get(
Midtrans::getBaseUrl() . '/' . $id . '/status',
Midtrans::$serverKey,
false
);
}
/**
* Appove challenge transaction
* @param string $id Order ID or transaction ID
* @return string
*/
public static function approve($id)
{
return Midtrans::post(
Midtrans::getBaseUrl() . '/' . $id . '/approve',
Midtrans::$serverKey,
false
)->status_code;
}
/**
* Cancel transaction before it's setteled
* @param string $id Order ID or transaction ID
* @return string
*/
public static function cancel($id)
{
return Midtrans::post(
Midtrans::getBaseUrl() . '/' . $id . '/cancel',
Midtrans::$serverKey,
false
)->status_code;
}
/**
* Expire transaction before it's setteled
* @param string $id Order ID or transaction ID
* @return mixed[]
*/
public static function expire($id)
{
return Midtrans::post(
Midtrans::getBaseUrl() . '/' . $id . '/expire',
Midtrans::$serverKey,
false
);
}
public static function getcharge($params)
{
$result = Midtrans::post(
Midtrans::getBaseUrl() . '/charge',
Midtrans::$serverKey,
$params
);
return $result->token;
}
}