forked from ipara/ipara-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper.php
154 lines (136 loc) · 5.83 KB
/
helper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
class Helper {
/*
* Doğru formatta tarih döndüren yardımcı sınıftır. Isteklerde tarih istenen noktalarda bu fonksiyon sonucu kullanılır.
* Servis çağrılarında kullanılacak istek zamanı için istenen tarih formatında bu fonksiyon kullanılmalıdır.
* Bu fonksiyon verdiğimiz tarih değerini iPara'nın bizden beklemiş olduğu tarih formatına değiştirmektedir.
*/
public static function GetTransactionDateString() {
return date ( "Y-m-d H:i:s" ); // "2017-03-21 16:26:54
}
/*
* Çağrılarda kullanılacak Tokenları oluşturan yardımcı metotdur.
* İstek güvenlik bilgisi kullanılacak tüm çağrılarda token oluşturmamız gerekmektedir.
* Token oluştururken hash bilgisi ve public key alanlarının parametre olarak gönderilmesi gerekmektedir.
* hashstring alanı servise ait birden fazla alanın birleşmesi sonucu oluşan verileri ve public key mağaza açık anahtarını
* kullanarak bizlere token üretmemizi sağlar.
*/
public static function CreateToken($publicKey, $hashString) {
return $publicKey . ":" . base64_encode ( sha1 ( $hashString, true ) );
}
/*
* 3D akışının ilk adımında yapılan işlemin ardından gelen cevabın doğrulanması adına kullanılacak
* fonksiyondur.
*/
public static function Validate3DReturn(ThreeDPaymentInitResponse $paymentResponse, Settings $settings) {
if (! isset ( $paymentResponse->Hash ) || trim ( $paymentResponse->Hash ) === '') {
$error = "Ödeme cevabı hash bilgisi boş. [result : " . $paymentResponse->Result . ",error_code : " . $paymentResponse->ErrorCode . ",error_message : " . $paymentResponse->ErrorMessage . "]";
throw new Exception ( $error );
return false;
}
$hashText = $paymentResponse->OrderId . $paymentResponse->Result . $paymentResponse->Amount . $paymentResponse->Mode . $paymentResponse->ErrorCode . $paymentResponse->ErrorMessage . $paymentResponse->TransactionDate . $settings->PublicKey . $settings->PrivateKey;
$hashedText = base64_encode ( sha1 ( $hashText, true ) );
if ($hashedText != $paymentResponse->Hash) {
$error = "Ödeme cevabı hash doğrulaması hatalı. [result : " . $paymentResponse->Result . ",error_code : " . $paymentResponse->ErrorCode . ",error_message : " . $paymentResponse->ErrorMessage . "]";
throw new Exception ( $error );
return false;
}
return true;
}
//Bir çok çağrıda kullanılan HTTP Header bilgilerini otomatik olarak ekleyen fonksiyondur.
public static function GetHttpHeaders(Settings $settings, $acceptType) {
$header = array (
"Accept:" . $acceptType,
"Content-type:" . $acceptType,
"version:" . $settings->Version,
"token:" . Helper::CreateToken ( $settings->PublicKey, $settings->HashString ),
"transactionDate:" . $settings->transactionDate
);
return $header;
}
//Guid oluşturmak için kullanılan metottur.
public static function GUID() {
if (function_exists ( 'com_create_guid' ) === true) {
return trim ( com_create_guid (), '{}' );
}
return sprintf ( '%04X%04X-%04X-%04X-%04X-%04X%04X%04X', mt_rand ( 0, 65535 ), mt_rand ( 0, 65535 ), mt_rand ( 0, 65535 ), mt_rand ( 16384, 20479 ), mt_rand ( 32768, 49151 ), mt_rand ( 0, 65535 ), mt_rand ( 0, 65535 ), mt_rand ( 0, 65535 ) );
}
//Client ipsine ulaşmamızı sağlayan kısımdır.
public static function get_client_ip() {
if (getenv ( 'HTTP_CLIENT_IP' ))
$ipaddress = getenv ( 'HTTP_CLIENT_IP' );
else if (getenv ( 'HTTP_X_FORWARDED_FOR' ))
$ipaddress = getenv ( 'HTTP_X_FORWARDED_FOR' );
else if (getenv ( 'HTTP_X_FORWARDED' ))
$ipaddress = getenv ( 'HTTP_X_FORWARDED' );
else if (getenv ( 'HTTP_FORWARDED_FOR' ))
$ipaddress = getenv ( 'HTTP_FORWARDED_FOR' );
else if (getenv ( 'HTTP_FORWARDED' ))
$ipaddress = getenv ( 'HTTP_FORWARDED' );
else if (getenv ( 'REMOTE_ADDR' ))
$ipaddress = getenv ( 'REMOTE_ADDR' );
else
$ipaddress = '127.0.0.1';
return $ipaddress;
}
/**
* Geçerli url yolunu üretir.
* @method "request scheme" + "://" + "server name" + "server port"
* @return string
*/
public static function getCurrentUrl() {
return $_SERVER ['REQUEST_SCHEME'] . '://' . $_SERVER ['SERVER_NAME'] . ":" . $_SERVER ['SERVER_PORT'];
}
/**
* Xml çıktısı oluşturmamıza olanak sağlayan metod
*/
public static function formattoXMLOutput($input_xml) {
$doc = new DOMDocument ();
$doc->loadXML ( $input_xml );
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$output = $doc->saveXML ();
return $output;
}
/**
* Okunabilir düz bir JSON dizesini oluşturur.
*/
public static function formattoJSONOutput($input_json) {
$result = '';
$pos = 0;
$strLen = strlen ( $input_json );
$indentStr = "\t";
$newLine = "\n";
for($i = 0; $i < $strLen; $i ++) {
// Grab the next character in the string.
$char = $input_json [$i];
// Are we inside a quoted string?
if ($char == '"') {
// search for the end of the string (keeping in mind of the escape sequences)
if (! preg_match ( '`"(\\\\\\\\|\\\\"|.)*?"`s', $input_json, $m, null, $i ))
return $input_json;
// add extracted string to the result and move ahead
$result .= $m [0];
$i += strLen ( $m [0] ) - 1;
continue;
} else if ($char == '}' || $char == ']') {
$result .= $newLine;
$pos --;
$result .= str_repeat ( $indentStr, $pos );
}
// Add the character to the result string.
$result .= $char;
// If the last character was the beginning of an element,
// output a new line and indent the next line.
if ($char == ',' || $char == '{' || $char == '[') {
$result .= $newLine;
if ($char == '{' || $char == '[') {
$pos ++;
}
$result .= str_repeat ( $indentStr, $pos );
}
}
return $result;
}
}
?>