-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmms.class.php
397 lines (349 loc) · 8.39 KB
/
smms.class.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<?php
class Smms {
const VERSION = '2.0';
const API_URL_1 = 'https://sm.ms/api/v2'; // 国外
const API_URL_2 = 'https://smms.app/api/v2'; // 国内
const CONTENT_TYPE = 'multipart/form-data'; // multipart/form-data
private $_token;
private $_username;
private $_password;
private $_timeout = 30;
private $_endpoint;
/**
* 初始化 Smms 存储接口
* @param $token 凭证
* @param $username 用户名
* @param $password 密码
*
* @return object
*/
public function __construct($token, $endpoint, $username = NULL, $password = NULL, $timeout = 30) {
$this->_token = $token;
$this->_username = $username;
$this->_password = $password;
$this->_endpoint = $endpoint;
$this->_timeout = $timeout;
}
/**
* 获取当前接口版本号
*/
public function version() {
return self::VERSION;
}
/**
* 删除文件
* @param string $hash 文件hash
*
* @return boolean
* @throws Exception
*/
public function delete($hash) {
$res = $this->_do_request('GET', '/delete/' . $hash);
if($res["success"]){
return true;
}
throw new Exception('upload failed');
}
/**
* 上传文件
* @param $curl_file
* @param string $format 返回信息格式, json或xml
* @return mixed
* @throws Exception
*/
public function upload($curl_file, $format = 'json') {
$opts['smfile'] = $curl_file;
$opts['format'] = $format;
$res = $this->_do_request('POST','/upload',NULL, $opts);
if ($res['success']){
return $res['data'];
}
throw new Exception('upload failed');
}
/**
* 获取目录文件列表
*
* @param string $path 查询路径
*
* @return mixed
*/
// public function getList($path = '/') {
// $rsp = $this->_do_request('GET', $path);
//
// $list = array();
// if ($rsp) {
// $rsp = explode("\n", $rsp);
// foreach($rsp as $item) {
// @list($name, $type, $size, $time) = explode("\t", trim($item));
// if (!empty($time)) {
// $type = $type == 'N' ? 'file' : 'folder';
// }
//
// $item = array(
// 'name' => $name,
// 'type' => $type,
// 'size' => intval($size),
// 'time' => intval($time),
// );
// array_push($list, $item);
// }
// }
//
// return $list;
// }
public function getUserProfile() {
$res = $this->_do_request('POST', '/profile');
if ($res["success"]) {
return $res['data'];
} else {
throw new Exception($res['message']);
}
}
/**
* HTTP REQUEST 封装
* @param string $method HTTP REQUEST方法,包括PUT、POST、GET、OPTIONS、DELETE
* @param string $path 请求方法路径
* @param array $headers 请求需要的特殊HTTP HEADERS
* @param array $body 需要发送的数据
* @param null $file_handle
* @return mixed
* @throws Exception
*/
protected function _do_request($method, $path, $headers = NULL, $body= NULL, $file_handle= NULL) {
$ch = curl_init("{$this->_endpoint}{$path}");
$_headers = array();
if (!empty($headers)){
foreach($headers as $k => $v) {
array_push($_headers, "{$k}: {$v}");
}
} else {
array_push($_headers, "Authorization: {$this->_token}");
}
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $_headers);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->_timeout);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
if($method == 'POST'){
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
}
$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($http_code == 0) throw new Exception('Connection Failed', $http_code);
curl_close($ch);
$response = json_decode($response, true);
if($http_code == 200) {
return $response;
} else {
throw new Exception($response);
}
}
/**
* 获取返回的错误信息
*
* @param string $header_string
*
* @return mixed
*/
private function _getErrorMessage($header_string) {
list($status, $stash) = explode("\r\n", $header_string, 2);
list($v, $code, $message) = explode(" ", $status, 3);
return $message;
}
}
class SmmsImg {
private $file_id;
private $width;
private $height;
private $filename;
private $storename;
private $size;
private $path;
private $hash;
private $url;
private $delete;
private $page;
/**
* @param $file_id
* @param $width
* @param $height
* @param $filename
* @param $storename
* @param $size
* @param $path
* @param $hash
* @param $url
* @param $delete
* @param $page
*/
public function __construct($file_id, $width, $height, $filename, $storename, $size, $path, $hash, $url, $delete, $page)
{
$this->file_id = $file_id;
$this->width = $width;
$this->height = $height;
$this->filename = $filename;
$this->storename = $storename;
$this->size = $size;
$this->path = $path;
$this->hash = $hash;
$this->url = $url;
$this->delete = $delete;
$this->page = $page;
}
/**
* @return mixed
*/
public function getFileId()
{
return $this->file_id;
}
/**
* @param mixed $file_id
*/
public function setFileId($file_id): void
{
$this->file_id = $file_id;
}
/**
* @return mixed
*/
public function getWidth()
{
return $this->width;
}
/**
* @param mixed $width
*/
public function setWidth($width): void
{
$this->width = $width;
}
/**
* @return mixed
*/
public function getHeight()
{
return $this->height;
}
/**
* @param mixed $height
*/
public function setHeight($height): void
{
$this->height = $height;
}
/**
* @return mixed
*/
public function getFilename()
{
return $this->filename;
}
/**
* @param mixed $filename
*/
public function setFilename($filename): void
{
$this->filename = $filename;
}
/**
* @return mixed
*/
public function getStorename()
{
return $this->storename;
}
/**
* @param mixed $storename
*/
public function setStorename($storename): void
{
$this->storename = $storename;
}
/**
* @return mixed
*/
public function getSize()
{
return $this->size;
}
/**
* @param mixed $size
*/
public function setSize($size): void
{
$this->size = $size;
}
/**
* @return mixed
*/
public function getPath()
{
return $this->path;
}
/**
* @param mixed $path
*/
public function setPath($path): void
{
$this->path = $path;
}
/**
* @return mixed
*/
public function getHash()
{
return $this->hash;
}
/**
* @param mixed $hash
*/
public function setHash($hash): void
{
$this->hash = $hash;
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* @param mixed $url
*/
public function setUrl($url): void
{
$this->url = $url;
}
/**
* @return mixed
*/
public function getDelete()
{
return $this->delete;
}
/**
* @param mixed $delete
*/
public function setDelete($delete): void
{
$this->delete = $delete;
}
/**
* @return mixed
*/
public function getPage()
{
return $this->page;
}
/**
* @param mixed $page
*/
public function setPage($page): void
{
$this->page = $page;
}
}