forked from pagseguro/pagseguro-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Configure.php
167 lines (152 loc) · 4.5 KB
/
Configure.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
<?php
/**
* 2007-2016 [PagSeguro Internet Ltda.]
*
* NOTICE OF LICENSE
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author PagSeguro Internet Ltda.
* @copyright 2007-2016 PagSeguro Internet Ltda.
* @license http://www.apache.org/licenses/LICENSE-2.0
*
*/
namespace PagSeguro\Configuration;
use PagSeguro\Domains\AccountCredentials;
use PagSeguro\Domains\ApplicationCredentials;
use PagSeguro\Domains\Charset;
use PagSeguro\Domains\Environment;
use PagSeguro\Domains\Log;
use PagSeguro\Resources\Responsibility;
/**
* Class Configure
* @package PagSeguro\Configuration
*/
class Configure
{
private static $accountCredentials;
private static $applicationCredentials;
private static $charset;
private static $environment;
private static $log;
/**
* @return AccountCredentials
*/
public static function getAccountCredentials()
{
if (!isset(self::$accountCredentials)) {
$configuration = Responsibility::configuration();
self::setAccountCredentials(
$configuration['credentials']['email'],
$configuration['credentials']['token']['environment'][$configuration['environment']]
);
}
return self::$accountCredentials;
}
/**
* @param string $email
* @param string $token
*/
public static function setAccountCredentials($email, $token)
{
self::$accountCredentials = new AccountCredentials;
self::$accountCredentials->setEmail($email)
->setToken($token);
}
/**
* @return ApplicationCredentials
*/
public static function getApplicationCredentials()
{
if (!isset(self::$applicationCredentials)) {
$configuration = Responsibility::configuration();
self::setApplicationCredentials(
$configuration['credentials']['appId']['environment'][$configuration['environment']],
$configuration['credentials']['appKey']['environment'][$configuration['environment']]
);
}
return self::$applicationCredentials;
}
/**
* @param string $appId
* @param string $appKey
*/
public static function setApplicationCredentials($appId, $appKey)
{
self::$applicationCredentials = new ApplicationCredentials;
self::$applicationCredentials->setAppId($appId)
->setAppKey($appKey);
}
/**
* @return Environment
*/
public static function getEnvironment()
{
if (!isset(self::$environment)) {
$configuration = Responsibility::configuration();
self::setEnvironment($configuration['environment']);
}
return self::$environment;
}
/**
* @param string $environment
*/
public static function setEnvironment($environment)
{
self::$environment = new Environment;
self::$environment->setEnvironment($environment);
}
/**
* @return Charset
*/
public static function getCharset()
{
if (!isset(self::$charset)) {
$configuration = Responsibility::configuration();
self::setCharset($configuration['charset']);
}
return self::$charset;
}
/**
* @param string $charset
*/
public static function setCharset($charset)
{
self::$charset = new Charset;
self::$charset->setEncoding($charset);
}
/**
* @return Log
*/
public static function getLog()
{
if (!isset(self::$log)) {
$configuration = Responsibility::configuration();
self::setLog(
$configuration['log']['active'] === "false" ? false : true,
$configuration['log']['location']
);
}
return self::$log;
}
/**
* @param boolean $active
* @param string $location
*/
public static function setLog($active, $location)
{
self::$log = new Log;
self::$log->setActive($active)
->setLocation($location);
}
}