1 | <?php |
||
13 | final class Security implements Common |
||
14 | { |
||
15 | const TEST_TOKEN = '7c0c2193d27108a509abd8ea84a8750c82b3a520'; |
||
16 | |||
17 | const PROD_API_HOST = 'https://openapi.e.lanbook.com'; |
||
18 | const TEST_API_HOST = 'http://openapi.landev.ru'; |
||
19 | const DEV_API_HOST = 'http://eop.local'; |
||
20 | |||
21 | const PROD_EBS_HOST = 'https://e.lanbook.com'; |
||
22 | const TEST_EBS_HOST = 'http://ebs.landev.ru'; |
||
23 | const DEV_EBS_HOST = 'http://ebs.local'; |
||
24 | |||
25 | private $client; |
||
26 | |||
27 | /** |
||
28 | * Security constructor. |
||
29 | * |
||
30 | * @param Client $client |
||
31 | * @throws Exception |
||
32 | */ |
||
33 | 2 | public function __construct(Client $client) |
|
41 | |||
42 | /** |
||
43 | * @param $method |
||
44 | * @param array $params |
||
45 | * @return array |
||
46 | * @throws Exception |
||
47 | */ |
||
48 | 2 | public function getUrl($method, array $params = []) |
|
67 | |||
68 | /** |
||
69 | * @param $type |
||
70 | * @param $id |
||
71 | * @return mixed |
||
72 | * @throws Exception |
||
73 | */ |
||
74 | 1 | public function getDemoUrl($type, $id) |
|
78 | |||
79 | /** |
||
80 | * @param $uid |
||
81 | * @param null $fio |
||
82 | * @param null $email |
||
83 | * @param null $redirect |
||
84 | * @return mixed |
||
85 | * @throws Exception |
||
86 | */ |
||
87 | 1 | public function getAutologinUrl($uid, $fio = null, $email = null, $redirect = null) { |
|
99 | |||
100 | 16 | public static function getApiHost() |
|
104 | |||
105 | public static function getEbsHost() |
||
109 | } |
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: