YunpianClient.php
2.0 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
<?php
namespace Yunpian\Sdk;
/**
*
* @author dzh
* @since 1.0
*/
class YunpianClient implements Constant\YunpianConstant {
use YunpianGuzzle;
/**
*
* @var ApiFactory
*/
private $api;
/**
*
* @var YunpianConf
*/
private $conf;
function __construct() {
$this->api = new Api\ApiFactory($this);
$this->conf = new YunpianConf();
}
/**
* Initialize/Create YunpianClient
*
* @param string $apikey
* @param array $conf
* @return \Yunpian\SDK\YunpianClient
*/
static function create($apikey, array $conf = []) {
$clnt = new YunpianClient();
$clnt->conf->init()->with($apikey, $conf);
$clnt->initHttp($clnt->conf); // YunpianGuzzle->initHttp
return $clnt;
}
/**
*
* @param string $name
* @return \Yunpian\Sdk\Api\YunpianApi
*/
private function api($name) {
return $this->api->api($name);
}
/**
*
* @return SmsApi
*/
function sms() {
return $this->api(Api\SmsApi::NAME);
}
/**
*
* @return UserApi
*/
function user() {
return $this->api(Api\UserApi::NAME);
}
/**
*
* @return VoiceApi
*/
function voice() {
return $this->api(Api\VoiceApi::NAME);
}
/**
*
* @return SignApi
*/
function sign() {
return $this->api(Api\SignApi::NAME);
}
/**
*
* @return TplApi
*/
function tpl() {
return $this->api(Api\TplApi::NAME);
}
/**
*
* @return FlowApi
*/
function flow() {
return $this->api(Api\FlowApi::NAME);
}
function conf($key = null) {
return is_null($key) ? $this->conf : $this->conf->conf($key);
}
function apikey() {
return $this->conf->apikey();
}
function __destruct() {
// print "Destroying $this\n";
}
function __toString() {
return "YunpianClient-{$this->apikey()}";
}
}