-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathLibrary.php
125 lines (114 loc) · 2.93 KB
/
Library.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
<?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;
use PagSeguro\Helpers\Validate;
use PagSeguro\Resources\Framework\ContentManagementSystems;
use PagSeguro\Resources\Framework\Language;
use PagSeguro\Resources\Framework\Module;
/**
* Class Library
* @package PagSeguro
*/
class Library
{
/**
*
*/
const VERSION = '6.0.0';
/**
* @var
*/
private static $module;
/**
* @var
*/
private static $cms;
/**
* @throws \Exception
*/
final public static function initialize()
{
//Basic configuration
defined('PS_BASEPATH') or define('PS_BASEPATH', __DIR__);
defined('PS_CONFIG_PATH') or define('PS_CONFIG_PATH', PS_BASEPATH . '/Configuration/');
defined('PS_CONFIG') or define('PS_CONFIG', PS_CONFIG_PATH . 'Properties/Conf.xml');
defined('PS_RESOURCES') or define('PS_RESOURCES', PS_CONFIG_PATH . 'Properties/Resources.xml');
//Validates for cUrl and SimpleXml.
self::validate();
//Garbage Collection
gc_enable();
}
/**
* @return bool
* @throws \Exception
*/
final public static function validate()
{
try {
Validate::cUrl();
Validate::simpleXml();
return true;
} catch (\Exception $exception) {
throw new \Exception(
'PagSeguro Library PHP component exception',
['PSLE'],
$exception
);
}
}
/**
* @return string
*/
final public static function libraryVersion()
{
return self::VERSION;
}
/**
* @return string
*/
final public static function phpVersion()
{
return (new Language)->getRelease();
}
/**
* @return Module
*/
public static function moduleVersion()
{
if (is_null(self::$module)) {
return self::$module = new Module();
}
return self::$module;
}
/**
* @return ContentManagementSystems
*/
public static function cmsVersion()
{
if (is_null(self::$cms)) {
return self::$cms = new ContentManagementSystems();
}
return self::$cms;
}
}