forked from PoolPort/PoolPort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoolport-sample.php
215 lines (191 loc) · 6.53 KB
/
poolport-sample.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<?php
return array(
//-------------------------------
// Timezone for insert dates in database
// If you want PoolPort not set timezone, just leave it empty
//--------------------------------
'timezone' => 'Asia/Tehran',
'configuration' => array(
),
//--------------------------------
// Soap configuration
//--------------------------------
'soap' => array(
'attempts' => 2 // Attempts if soap connection is fail
),
//--------------------------------
// Database configuration
//--------------------------------
'database' => array(
'host' => '127.0.0.1',
'dbname' => '',
'username' => '',
'password' => '',
'create' => true // For first time you must set this to true for create tables in database
),
//--------------------------------
// Zarinpal gateway
//--------------------------------
'zarinpal' => array(
'merchant-id' => 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
'type' => 'zarin-gate', // Types: [zarin-gate || normal]
'callback-url' => 'http://www.example.org/result',
'server' => 'germany', // Servers: [germany || iran]
'user-email' => 'email@gmail.com',
'user-mobile' => '09xxxxxxxxx',
'description' => 'description',
),
//--------------------------------
// Mellat gateway
//--------------------------------
'mellat' => array(
'username' => '',
'password' => '',
'terminalId' => 0000000,
'callback-url' => 'http://www.example.org/result',
'user-mobile' => '989xxxxxxxx'
),
//--------------------------------
// Payline gateway
//--------------------------------
'payline' => array(
'api' => 'xxxxx-xxxxx-xxxxx-xxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'callback-url' => 'http://www.example.org/result'
),
//--------------------------------
// Sadad gateway
//--------------------------------
'sadad' => array(
'merchant' => '',
'transactionKey'=> '',
'terminalId' => 000000000,
'callback-url' => 'http://example.org/result',
'user-mobile' => '09xxxxxxxxx'
),
//--------------------------------
// JahanPay gateway
//--------------------------------
'jahanpay' => array(
'api' => 'xxxxxxxxxxx',
'callback-url' => 'http://example.org/result'
),
//--------------------------------
// Parsian gateway
//--------------------------------
'parsian' => array(
'pin' => 'xxxxxxxxxxxxxxxxxxxx',
'callback-url' => 'http://example.org/result',
'user-mobile' => '09xxxxxxxxx',
),
//--------------------------------
// Pasargad gateway
//--------------------------------
'pasargad' => array(
'merchant-code' => '9999999',
'terminal-code' => '999999',
'certificate' => '',
'callback-url' => 'http://example.org/result'
),
//--------------------------------
// Saderat gateway
//--------------------------------
'saderat' => array(
'merchant-id' => '999999999999999',
'terminal-id' => '99999999',
'public-key' => __DIR__.'/saderat-public-key.pem',
'private-key' => __DIR__.'/saderat-private-key.pem',
'callback-url' => 'http://example.org/result'
),
//--------------------------------
// IranKish gateway
//--------------------------------
'irankish' => array(
'terminal-id' => 'xxxxxxxx',
'acceptor-id' => 'xxxxxxxxxxxxxxx',
'pass-phrase' => 'xxxxxxxxxxxxxxxx',
'public-key' => __DIR__.'/irankish-public-key.pem',
'callback-url' => 'http://example.org/result',
'user-mobile' => '989xxxxxxxxx',
),
//--------------------------------
// Simulator gateway
//--------------------------------
'simulator' => array(
'callback-url' => 'http://example.org/result'
),
//--------------------------------
// Saman gateway
//--------------------------------
'saman' => array(
'terminal-id' => 'xxxxx',
'callback-url' => 'http://example.org/result',
'user-mobile' => '09xxxxxxxxx',
),
// Pay gateway
//--------------------------------
'pay' => array(
'api' => 'xxxxx-xxxxx-xxxxx-xxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'callback-url' => 'http://www.example.org/result'
),
// JiBit gateway
//--------------------------------
'jibit' => array(
'merchant-id' => 'xxxx',
'password' => 'xxxxxxxxxx',
'callback-url' => 'http://www.example.org/result',
'user-mobile' => '09xxxxxxxxx'
),
// AP gateway
//--------------------------------
'ap' => array(
'merchant-config-id' => 'xxxx',
'username' => 'xxxxxxxxxx',
'password' => 'xxxxxxxxxx',
'callback-url' => 'http://www.example.org/result',
'user-mobile' => '09xxxxxxxxx'
),
// BitPay gateway
//--------------------------------
'bitpay' => array(
'api' => 'xxxxx-xxxxx-xxxxx-xxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'callback-url' => 'http://www.example.org/result',
'name' => 'xxxxxxxxxx',
'email' => 'email@gmail.com',
'description' => 'description',
'user-mobile' => '09xxxxxxxx'
),
// IDPay gateway
//--------------------------------
'idpay' => array(
'api' => 'x-x-x-x-x',
'callback-url' => 'http://www.example.org/result',
'sandbox'=> false,
'name' => 'name',
'email' => 'email',
'description' => 'description',
'user-mobile' => '09xxxxxxxx',
),
// PayPing gateway
//--------------------------------
'payping' => array(
'token' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'user-mobile' => '09xxxxxxxx',
'callback-url' => 'http://www.example.org/result',
),
// Vandar gateway
//--------------------------------
'payping' => array(
'api_key' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'user-mobile' => '09xxxxxxxx',
'callback-url' => 'http://www.example.org/result',
),
// PNA (Eghtesad Novin) gateway
//--------------------------------
'pna' => array(
'mid' => 'xxxxxxxxx',
'password' => 'xxxxxx',
'public-key' => __DIR__.'/pna-public-key.pem',
'callback-url' => 'http://exmaple.org/result',
'user-mobile' => '09xxxxxxxx',
),
);