Divido.php
4.28 KB
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
<?php
abstract class Divido
{
/**
* @var string The Divido Mercahnt to be used for requests.
*/
public static $merchant;
/**
* @var string The Divido API key to be used for requests.
*/
public static $apiKey;
/**
* @var string The Divido shared secdret to be used for requests.
*/
public static $sharedSecret;
/**
* @var string The Divido API key to be used for requests.
*/
public static $sandboxMode;
/**
* @var string The base URL for the Divido API.
*/
public static $apiBase = 'https://secure.divido.com';
/**
* @var string The base URL for the Divido API.
*/
public static $devApiBase = 'https://platform.api.dev.divido.net';
/**
* @var string The base URL for the Divido API.
*/
public static $sandboxApiBase = 'https://secure.sandbox.divido.com';
/**
* @var string The base URL for the Divido API.
*/
public static $stagingApiBase = 'https://secure.staging.divido.com';
/**
* @var string The base URL for the Divido API.
*/
public static $testingApiBase = 'https://secure.test.divido.com';
/**
* @var string The base URL for the Divido API.
*/
public static $dockerApiBase = 'https://platform.api.dev.divido.net';
/**
* @var string|null The version of the Divido API to use for requests.
*/
public static $apiVersion = null;
/**
* @var boolean Defaults to true.
*/
public static $verifySslCerts = false;
const VERSION = '0.1';
/**
* @return string The API key used for requests.
*/
public static function getMerchant()
{
return self::$apiKey;
}
/**
* Sets the API key to be used for requests.
*
* @param string $merchant
*/
public static function setMerchant($merchant)
{
self::setApiKey($merchant);
}
/**
* @return string The shared secret used for requests.
*/
public static function getSharedSecret()
{
return self::$sharedSecret;
}
/**
* Sets the shared secret to be used for requests.
*
* @param string $sharedSecret
*/
public static function setSharedSecret($sharedSecret)
{
self::$sharedSecret = $sharedSecret;
}
/**
* @return string The sandbox mode used for requests.
*/
public static function getSandboxMode()
{
return self::$sandboxMode;
}
/**
* Sets the sandbox mode to be used for requests.
*
* @param string $merchant
*/
public static function setSandboxMode($sandboxMode)
{
self::$sandboxMode = $sandboxMode;
if ($sandboxMode) {
self::$apiBase = self::$sandboxApiBase;
}
}
/**
* @return string The API key used for requests.
*/
public static function getApiKey()
{
return self::$apiKey;
}
/**
* Sets the API key to be used for requests.
*
* @param string $apiKey
*/
public static function setApiKey($apiKey)
{
self::$apiKey = $apiKey;
if (substr($apiKey, 0, 7) == 'testing') {
self::$apiBase = self::$testingApiBase;
} else if (substr($apiKey, 0, 7) == 'staging') {
self::$apiBase = self::$sandboxApiBase;
} else if (substr($apiKey, 0, 3) == 'dev') {
self::$apiBase = self::$devApiBase;
} else if (substr($apiKey, 0, 7) == 'sandbox') {
self::$apiBase = self::$sandboxApiBase;
} else if (substr($apiKey, 0, 6) == 'docker') {
self::$apiBase = self::$dockerApiBase;
}
}
/**
* @return string The API version used for requests. null if we're using the
* latest version.
*/
public static function getApiVersion()
{
return self::$apiVersion;
}
/**
* @param string $apiVersion The API version to use for requests.
*/
public static function setApiVersion($apiVersion)
{
self::$apiVersion = $apiVersion;
}
/**
* @return boolean
*/
public static function getVerifySslCerts()
{
return self::$verifySslCerts;
}
/**
* @param boolean $verify
*/
public static function setVerifySslCerts($verify)
{
self::$verifySslCerts = $verify;
}
}