Completed
Pull Request — master (#319)
by
unknown
20:56
created

BucketManager::putBucketEvent()   C

Complexity

Conditions 10
Paths 256

Size

Total Lines 43

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 110

Importance

Changes 0
Metric Value
cc 10
nc 256
nop 8
dl 0
loc 43
ccs 0
cts 32
cp 0
crap 110
rs 6.1333
c 0
b 0
f 0

How to fix   Complexity    Many Parameters   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

Many Parameters

Methods with many parameters are not only hard to understand, but their parameters also often become inconsistent when you need more, or different data.

There are several approaches to avoid long parameter lists:

1
<?php
2
namespace Qiniu\Storage;
3
4
use Qiniu\Auth;
5
use Qiniu\Config;
6
use Qiniu\Zone;
7
use Qiniu\Http\Client;
8
use Qiniu\Http\Error;
9
10
/**
11
 * 主要涉及了空间资源管理及批量操作接口的实现,具体的接口规格可以参考
12
 *
13
 * @link https://developer.qiniu.com/kodo/api/1274/rs
14
 */
15
final class BucketManager
16
{
17
    private $auth;
18
    private $config;
19
20 42
    public function __construct(Auth $auth, Config $config = null)
21
    {
22 42
        $this->auth = $auth;
23 42
        if ($config == null) {
24 42
            $this->config = new Config();
25 42
        } else {
26
            $this->config = $config;
27
        }
28 42
    }
29
30
    /**
31
     * 获取指定账号下所有的空间名。
32
     *
33
     * @return string[] 包含所有空间名
34
     */
35 3
    public function buckets($shared = true)
36
    {
37 3
        $includeShared = "false";
38 3
        if ($shared === true) {
39 3
            $includeShared = "true";
40 3
        }
41 3
        return $this->rsGet('/buckets?shared=' . $includeShared);
42
    }
43
44
    /**
45
     * 列举空间,返回bucket列表
46
     * region 指定区域,global 指定全局空间。
47
     * 在指定了 region 参数时,
48
     * 如果指定 global 为 true,那么忽略 region 参数指定的区域,返回所有区域的全局空间。
49
     * 如果没有指定 global 为 true,那么返回指定区域中非全局空间。
50
     * 在没有指定 region 参数时(包括指定为空""),
51
     * 如果指定 global 为 true,那么返回所有区域的全局空间。
52
     * 如果没有指定 global 为 true,那么返回指定区域中所有的空间,包括全局空间。
53
     * 在指定了line为 true 时,只返回 Line 空间;否则,只返回非 Line 空间。
54
     * share 参数用于指定共享空间。
55
     */
56
57
    public function listbuckets(
58
        $region = null,
59
        $line = 'false',
60
        $shared = 'false'
61
    ) {
62
        $path = '/v3/buckets?region=' . $region . '&line=' . $line . '&shared=' . $shared;
63
        $info = $this->ucPost($path);
64
        return $info;
65
    }
66
67
    /**
68
     * 创建空间
69
     *
70
     * @param $name     创建的空间名
71
     * BucketName不满足以上要求返回400 (the specified bucket is not valid)
72
     * 如果BucketName已经被使用,返回614(bucket exists)
73
     * @param $region    创建的区域,默认华东
74
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
75
     */
76
    
77
    public function createBucket($name, $region = 'z0')
78
    {
79
        $path = '/mkbucketv3/'.$name.'/region/' . $region;
80
        return $this->rsPost($path, null);
81
    }
82
83
    /**
84
     * 删除空间
85
     *
86
     * @param $name     删除的空间名
87
     *
88
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
89
     */
90
    public function deleteBucket($name)
91
    {
92
        $path = '/drop/'.$name;
93
        return $this->rsPost($path, null);
94
    }
95
96
    /**
97
     * 获取指定空间绑定的所有的域名
98
     *
99
     * @return string[] 包含所有空间域名
100
     */
101
    public function domains($bucket)
102
    {
103
        return $this->apiGet('/v6/domain/list?tbl=' . $bucket);
104
    }
105
106
    /**
107
     * 获取指定空间的相关信息
108
     *
109
     * @return string[] 包含空间信息
110
     */
111
    public function bucketInfo($bucket)
112
    {
113
        $path = '/v2/bucketInfo?bucket=' . $bucket;
114
        $info = $this->ucPost($path);
115
        return $info;
116
    }
117
118
    /**
119
     * 获取指定zone的空间信息列表
120
     * 在Region 未指定且Global 不为 true 时(包含未指定的情况,下同),返回用户的所有空间。
121
     * 在指定了 region 参数且 global 不为 true 时,只列举非全局空间。
122
     * shared 不指定shared参数或指定shared为rw或false时,返回包含具有读写权限空间,
123
     * 指定shared为rd或true时,返回包含具有读权限空间。
124
     * fs:如果为 true,会返回每个空间当前的文件数和存储量(实时数据)。
125
     * @return string[] 包含空间信息
126
     */
127
    public function bucketInfos($region = null, $shared = 'false', $fs = 'false')
128
    {
129
        $path = '/v2/bucketInfos?region=' . $region . '&shared=' . $shared . '&fs=' . $fs;
130
        $info = $this->ucPost($path);
131
        return $info;
132
    }
133
134
    /**
135
     * 获取空间绑定的域名列表
136
     * @return string[] 包含空间绑定的所有域名
137
     */
138
139
    /**
140
     * 列取空间的文件列表
141
     *
142
     * @param $bucket     空间名
143
     * @param $prefix     列举前缀
144
     * @param $marker     列举标识符
145
     * @param $limit      单次列举个数限制
146
     * @param $delimiter  指定目录分隔符
147
     *
148
     * @return array    包含文件信息的数组,类似:[
149
*                                              {
150
*                                                 "hash" => "<Hash string>",
151
*                                                  "key" => "<Key string>",
152
*                                                  "fsize" => "<file size>",
153
*                                                  "putTime" => "<file modify time>"
154
*                                              },
155
*                                              ...
156
*                                            ]
157 3
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/list.html
158
     */
159
    public function listFiles(
160
        $bucket,
161
        $prefix = null,
162
        $marker = null,
163
        $limit = 1000,
164 3
        $delimiter = null
165 3
    ) {
166 3
        $query = array('bucket' => $bucket);
167 3
        \Qiniu\setWithoutEmpty($query, 'prefix', $prefix);
168 3
        \Qiniu\setWithoutEmpty($query, 'marker', $marker);
169 3
        \Qiniu\setWithoutEmpty($query, 'limit', $limit);
170 3
        \Qiniu\setWithoutEmpty($query, 'delimiter', $delimiter);
171
        $url = $this->getRsfHost() . '/list?' . http_build_query($query);
172
        return $this->get($url);
173
    }
174
175
    /**
176
     * 列取空间的文件列表
177
     *
178
     * @param $bucket     空间名
179
     * @param $prefix     列举前缀
180
     * @param $marker     列举标识符
181
     * @param $limit      单次列举个数限制
182
     * @param $delimiter  指定目录分隔符
183
     * @param $skipconfirm  是否跳过已删除条目的确认机制
184
     *
185
     * @return array    包含文件信息的数组,类似:[
186
*                                              {
187
*                                                 "hash" => "<Hash string>",
188
*                                                  "key" => "<Key string>",
189
*                                                  "fsize" => "<file size>",
190
*                                                  "putTime" => "<file modify time>"
191
*                                              },
192
*                                              ...
193
*                                            ]
194
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/list.html
195
     */
196
    public function listFilesv2(
197
        $bucket,
198
        $prefix = null,
199
        $marker = null,
200
        $limit = 1000,
201
        $delimiter = null,
202
        $skipconfirm = true
203
    ) {
204
        $query = array('bucket' => $bucket);
205
        \Qiniu\setWithoutEmpty($query, 'prefix', $prefix);
206
        \Qiniu\setWithoutEmpty($query, 'marker', $marker);
207
        \Qiniu\setWithoutEmpty($query, 'limit', $limit);
208
        \Qiniu\setWithoutEmpty($query, 'delimiter', $delimiter);
209
        \Qiniu\setWithoutEmpty($query, 'skipconfirm', $skipconfirm);
210
        $path = '/v2/list?' . http_build_query($query);
211
        $url = $this->getRsfHost() . $path;
212
        $headers = $this->auth->authorization($url, null, 'application/x-www-form-urlencoded');
213
        $ret = Client::post($url, null, $headers);
214
        if (!$ret->ok()) {
215
            return array(null, new Error($url, $ret));
216
        }
217
        $r = explode("\n", $ret->body);
218
        $pop = array_pop($r);
0 ignored issues
show
Unused Code introduced by
$pop is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
219
        return array($r, null);
220
    }
221
222
    /**
223
     * 设置Referer防盗链
224
     *
225
     * @param $bucket     空间名
226
     * @param $mode     0: 表示关闭Referer(使用此选项将会忽略以下参数并将恢复默认值);
227
     * 1: 表示设置Referer白名单; 2:表示设置Referer黑名单
228
     * @param $norefer     0: 表示不允许空 Refer 访问; 1: 表示允许空 Refer 访问
229
     * @param $pattern      规则字符串, 当前允许格式分为三种: 一种为空主机头域名,
230
     * 比如 foo.com; 一种是泛域名,比如 *.bar.com; 一种是完全通配符,
231
     * 即一个 *; 多个规则之间用;隔开, 比如: foo.com;*.bar.com;sub.foo.com;*.sub.bar.com
232
     * @param $source_enabled  源站是否支持,默认为0只给CDN配置, 设置为1表示开启源站防盗链
233
     *
234
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
235
     */
236
    // public function referAntiLeech(){
237
238
    // }
239
240
    /**
241
     * 增加bucket生命规则
242
     *
243
     * @param $bucket     空间名
244
     * @param $name     规则名称 bucket 内唯一,长度小于50,不能为空,只能为
245
     * 字母、数字、下划线
246
     * @param $prefix     同一个 bucket 里面前缀不能重复
247
     * @param $delete_after_days      指定上传文件多少天后删除,指定为0表示不删除,
248
     * 大于0表示多少天后删除,需大于 to_line_after_days
249
     * @param $to_line_after_days  指定文件上传多少天后转低频存储。指定为0表示
250
     * 不转低频存储,小于0表示上传的文件立即变低频存储
251
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
252
     */
253
    public function bucketLifecycleRule(
254
        $bucket,
255
        $name,
256
        $prefix,
257
        $delete_after_days,
258
        $to_line_after_days
259
    ) {
260
        $path = '/rules/add';
261
        if ($bucket) {
262
            $params['bucket'] = $bucket;
0 ignored issues
show
Coding Style Comprehensibility introduced by
$params was never initialized. Although not strictly required by PHP, it is generally a good practice to add $params = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
263
        }
264
        if ($name) {
265
            $params['name'] = $name;
0 ignored issues
show
Bug introduced by
The variable $params does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
266
        }
267
        if ($prefix) {
268
            $params['prefix'] = $prefix;
269
        }
270
        if ($delete_after_days) {
271
            $params['delete_after_days'] = $delete_after_days;
272
        }
273
        if ($to_line_after_days) {
274
            $params['to_line_after_days'] = $to_line_after_days;
275
        }
276
        $data = http_build_query($params);
277
        $info = $this->ucPost($path, $data);
278
        return $info;
279
    }
280
281
    /**
282
     * 更新bucket生命规则
283
     *
284
     * @param $bucket     空间名
285
     * @param $name     规则名称 bucket 内唯一,长度小于50,不能为空,只能为字母、
286
     * 数字、下划线
287
     * @param $prefix     同一个 bucket 里面前缀不能重复
288
     * @param $delete_after_days      指定上传文件多少天后删除,指定为0表示不删除,
289
     * 大于0表示多少天后删除,需大于 to_line_after_days
290
     * @param $to_line_after_days  指定文件上传多少天后转低频存储。指定为0表示不
291
     * 转低频存储,小于0表示上传的文件立即变低频存储
292
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
293
     */
294
    public function updateBucketLifecycleRule(
295
        $bucket,
296
        $name,
297
        $prefix,
298
        $delete_after_days,
299
        $to_line_after_days
300
    ) {
301
        $path = '/rules/update';
302
        if ($bucket) {
303
            $params['bucket'] = $bucket;
0 ignored issues
show
Coding Style Comprehensibility introduced by
$params was never initialized. Although not strictly required by PHP, it is generally a good practice to add $params = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
304
        }
305
        if ($name) {
306
            $params['name'] = $name;
0 ignored issues
show
Bug introduced by
The variable $params does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
307
        }
308
        if ($prefix) {
309
            $params['prefix'] = $prefix;
310
        }
311
        if ($delete_after_days) {
312
            $params['delete_after_days'] = $delete_after_days;
313
        }
314
        if ($to_line_after_days) {
315
            $params['to_line_after_days'] = $to_line_after_days;
316
        }
317
        $data = http_build_query($params);
318
        $info = $this->ucPost($path, $data);
319
        return $info;
320
    }
321
322
    /**
323
     * 获取bucket生命规则
324
     *
325
     * @param $bucket     空间名
326
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
327
     */
328
    public function getBucketLifecycleRules($bucket)
329
    {
330
        $path = '/rules/get?bucket=' . $bucket;
331
        $info = $this->ucGet($path);
332
        return $info;
333
    }
334
335
    /**
336
     * 删除bucket生命规则
337
     *
338
     * @param $bucket     空间名
339
     * @param $name     规则名称 bucket 内唯一,长度小于50,不能为空,
340
     * 只能为字母、数字、下划线()
341
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
342
     */
343
    public function deleteBucketLifecycleRule($bucket, $name)
344
    {
345
        $path = '/rules/delete';
346
        if ($bucket) {
347
            $params['bucket'] = $bucket;
0 ignored issues
show
Coding Style Comprehensibility introduced by
$params was never initialized. Although not strictly required by PHP, it is generally a good practice to add $params = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
348
        }
349
        if ($name) {
350
            $params['name'] = $name;
0 ignored issues
show
Bug introduced by
The variable $params does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
351
        }
352
        $data = http_build_query($params);
353
        $info = $this->ucPost($path, $data);
354
        return $info;
355
    }
356
357
    /**
358
     * 增加bucket事件通知规则
359
     *
360
     * @param $bucket     空间名
361
     * @param $name     规则名称 bucket 内唯一,长度小于50,不能为空,
362
     * 只能为字母、数字、下划线()
363
     * @param $prefix     同一个 bucket 里面前缀不能重复
364
     * @param $suffix      可选,文件配置的后缀
365
     * @param $event  事件类型,可以指定多个,包括 put,mkfile,delete,copy,move,append,
366
     * disable,enable,deleteMarkerCreate
367
     * @param $callbackURL 通知URL,可以指定多个,失败依次重试
368
     * @param $access_key 可选,设置的话会对通知请求用对应的ak、sk进行签名
369
     * @param $host 可选,通知请求的host
370
     *
371
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
372
     */
373
    public function putBucketEvent(
374
        $bucket,
375
        $name,
376
        $prefix,
377
        $suffix,
378
        $event,
379
        $callbackURL,
380
        $access_key = null,
381
        $host = null
382
    ) {
383
        $path = '/events/add';
384
        if ($bucket) {
385
            $params['bucket'] = $bucket;
0 ignored issues
show
Coding Style Comprehensibility introduced by
$params was never initialized. Although not strictly required by PHP, it is generally a good practice to add $params = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
386
        }
387
        if ($name) {
388
            $params['name'] = $name;
0 ignored issues
show
Bug introduced by
The variable $params does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
389
        }
390
        if ($prefix) {
391
            $params['prefix'] = $prefix;
392
        }
393
        if ($suffix) {
394
            $params['suffix'] = $suffix;
395
        }
396
        if ($callbackURL) {
397
            $params['callbackURL'] = $callbackURL;
398
        }
399
        if ($access_key) {
400
            $params['access_key'] = $access_key;
401
        }
402
        if ($host) {
403
            $params['host'] = $host;
404
        }
405
        $data = http_build_query($params);
406
        if ($event) {
407
            $eventpath = "";
408
            foreach ($event as $key => $value) {
409
                $eventpath .= "&event=$value";
410
            }
411
            $data .= $eventpath;
412
        }
413
        $info = $this->ucPost($path, $data);
414
        return $info;
415
    }
416
417
    /**
418
     * 更新bucket事件通知规则
419
     *
420
     * @param $bucket     空间名
421
     * @param $name     规则名称 bucket 内唯一,长度小于50,不能为空,
422
     * 只能为字母、数字、下划线()
423
     * @param $prefix     同一个 bucket 里面前缀不能重复
424
     * @param $suffix      可选,文件配置的后缀
425
     * @param $event  事件类型,可以指定多个,包括 put,mkfile,delete,copy,move,append,disable,
426
     * enable,deleteMarkerCreate
427
     * @param $callbackURL 通知URL,可以指定多个,失败依次重试
428
     * @param $access_key 可选,设置的话会对通知请求用对应的ak、sk进行签名
429
     * @param $host 可选,通知请求的host
430
     *
431
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
432
     */
433
    public function updateBucketEvent(
434
        $bucket,
435
        $name,
436
        $prefix,
437
        $suffix,
438
        $event,
439
        $callbackURL,
440
        $access_key = null,
441
        $host = null
442
    ) {
443
        $path = '/events/update';
444
        if ($bucket) {
445
            $params['bucket'] = $bucket;
0 ignored issues
show
Coding Style Comprehensibility introduced by
$params was never initialized. Although not strictly required by PHP, it is generally a good practice to add $params = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
446
        }
447
        if ($name) {
448
            $params['name'] = $name;
0 ignored issues
show
Bug introduced by
The variable $params does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
449
        }
450
        if ($prefix) {
451
            $params['prefix'] = $prefix;
452
        }
453
        if ($suffix) {
454
            $params['suffix'] = $suffix;
455
        }
456
        if ($event) {
457
            $params['event'] = $event;
458
        }
459
        if ($callbackURL) {
460
            $params['callbackURL'] = $callbackURL;
461
        }
462
        if ($access_key) {
463
            $params['access_key'] = $access_key;
464
        }
465
        if ($host) {
466
            $params['host'] = $host;
467
        }
468
        $data = http_build_query($params);
469
        $info = $this->ucPost($path, $data);
470
        return $info;
471
    }
472
473
    /**
474
     * 获取bucket事件通知规则
475
     *
476
     * @param $bucket     空间名
477
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
478
     */
479
    public function getBucketEvents($bucket)
480
    {
481
        $path = '/events/get?bucket=' . $bucket;
482
        $info = $this->ucGet($path);
483
        return $info;
484
    }
485
486
    /**
487
     * 删除bucket事件通知规则
488
     *
489
     * @param $bucket     空间名
490
     * @param $name     规则名称 bucket 内唯一,长度小于50,不能为空,
491
     * 只能为字母、数字、下划线
492
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
493
     */
494
    public function deleteBucketEvent($bucket, $name)
495
    {
496
        $path = '/events/delete';
497
        if ($bucket) {
498
            $params['bucket'] = $bucket;
0 ignored issues
show
Coding Style Comprehensibility introduced by
$params was never initialized. Although not strictly required by PHP, it is generally a good practice to add $params = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
499
        }
500
        if ($name) {
501
            $params['name'] = $name;
0 ignored issues
show
Bug introduced by
The variable $params does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
502
        }
503
        $data = http_build_query($params);
504
        $info = $this->ucPost($path, $data);
505
        return $info;
506
    }
507
508
    /**
509
     * 设置bucket的跨域信息,最多允许设置10条跨域规则。
510
     * 对于同一个域名如果设置了多条规则,那么按顺序使用第一条匹配的规则去生成返回值。
511
     * 对于简单跨域请求,只匹配 Origin;
512
     * allowed_orgin: 允许的域名。必填;支持通配符*;*表示全部匹配;只有第一个*生效;
513
     * 需要设置"Scheme";大小写敏感。例如
514
     * 规则:http://*.abc.*.com 请求:"http://test.abc.test.com" 结果:不通过
515
     * 规则:"http://abc.com" 请求:"https://abc.com"/"abc.com" 结果:不通过
516
     * 规则:"abc.com" 请求:"http://abc.com" 结果:不通过
517
     * allowed_method: 允许的方法。必填;不支持通配符;大小写不敏感;
518
     * allowed_header: 允许的header。选填;支持通配符*,
519
     * 但只能是单独的*,表示允许全部header,其他*不生效;
520
     * 空则不允许任何header;大小写不敏感;
521
     * exposed_header: 暴露的header。选填;不支持通配符;
522
     * X-Log, X-Reqid是默认会暴露的两个header;
523
     * 其他的header如果没有设置,则不会暴露;大小写不敏感;
524
     * max_age: 结果可以缓存的时间。选填;空则不缓存;
525
     * allowed_credentials:该配置不支持设置,默认为true。
526
     * 备注:如果没有设置任何corsRules,那么默认允许所有的跨域请求
527
     */
528
    // public function putCorsRules(string $bucket, array $params)
529
    // {
530
    //     $path = '/corsRules/set/' . $bucket;
531
    //     $data = json_encode($params);
532
    //     $info = $this->ucPost($path, $data);
533
    //     return $info;
534
    // }
535
536
    /**
537
     * 获取bucket的跨域信息
538
     * $bucket 空间名
539
     */
540
    public function getCorsRules($bucket)
541
    {
542
        $path = '/corsRules/get/' . $bucket;
543
        $info = $this->ucGet($path);
544
        return $info;
545
    }
546
547
    /**
548
     * 设置回源规则
549
     * 使用该API设置源站优先级高于/image设置的源站,即IO优先读取source接口设置的源站配置,
550
     * 如果存在会忽略/image设置的源站
551
     * Bucket 空间名
552
     * Host(可选)回源Host
553
     * RetryCodes(可选),镜像回源时源站返回Code可以重试,最多指定3个,当前只支持4xx错误码重试
554
     * SourceQiniuAK,SourceQiniuSK(可选)如果存在将在回源时对URL进行签名,客户源站可以验证
555
     * 以保证请求来自Qiniu服务器
556
     * Expires(可选) 签名过期时间,如果不设置默认为1小时
557
     * Addr 回源地址,不可重复。
558
     * Weight 权重,范围限制1-100,不填默认为1,回源时会根据所有源的权重值进行源站选择,
559
     * 主备源会分开计算.
560
     * Backup 是否备用回源,回源优先尝试主源
561
     */
562
    // public function putBucktSourceConfig(array $params)
563
    // {
564
    //     $path = '/mirrorConfig/set';
565
    //     $data = json_encode($params);
566
    //     $info = $this->ucPostV2($path, $data);
567
    //     return $info;
568
    // }
569
570
    /**
571
     * 获取空间回源配置
572
     */
573
    public function getBucktSourceConfig(array $params)
574
    {
575
        $path = '/mirrorConfig/get';
576
        $data = json_encode($params);
577
        $info = $this->ucPostV2($path, $data);
578
        return $info;
579
    }
580
581
    /**
582
     * 开关原图保护
583
     * mode 为1表示开启原图保护,0表示关闭
584
     */
585
    public function putBucketAccessStyleMode($bucket, $mode)
586
    {
587
        $path = '/accessMode/' . $bucket . '/mode/' . $mode;
588
        $info = $this->ucPost($path, null);
589
        return $info;
590
    }
591
592
    /**
593
     * 设置私有属性
594
     * private为0表示公开,为1表示私有
595
     */
596
    public function putBucketAccessMode($bucket, $private)
597
    {
598
        $path = '/bucket/' . $bucket . '/private/' . $private;
599
        $info = $this->ucPost($path, null);
600
        return $info;
601
    }
602
603
    /**
604
     * 设置referer防盗链
605
     * bucket=<BucketName>: bucket 名
606
     * mode=<AntiLeechMode>:
607
     * 0: 表示关闭Referer(使用此选项将会忽略以下参数并将恢复默认值);
608
     * 1: 表示设置Referer白名单; 2: 表示设置Referer黑名单
609
     * norefer=<NoRefer>: 0: 表示不允许空 Refer 访问;
610
     * 1: 表示允许空 Refer 访问
611
     * pattern=<Pattern>: 规则字符串, 当前允许格式分为三种:
612
     * 一种为空主机头域名, 比如 foo.com;
613
     * 一种是泛域名, 比如 *.bar.com; 一种是完全通配符, 即一个 *;
614
     * 多个规则之间用;隔开, 比如: foo.com;*.bar.com;sub.foo.com;*.sub.bar.com
615
     * 空主机头域名可以是多级域名,比如 foo.bar.com。
616
     * 多个域名之间不允许夹带空白字符。
617
     * source_enabled=:1
618
     */
619
    public function putReferAntiLeech($bucket, $mode, $norefer, $pattern, $enabled = 1)
620
    {
621
        $path = "/referAntiLeech?bucket=$bucket&mode=$mode&norefer=$norefer&pattern=$pattern&source_enabled=$enabled";
622
        $info = $this->ucPost($path, null);
623
        return $info;
624
    }
625
626
    /**
627
     * 设置Bucket的maxAge
628
     * maxAge为0或者负数表示为默认值(31536000)
629
     */
630
    public function putBucketMaxAge($bucket, $maxAge)
631
    {
632
        $path = '/maxAge?bucket=' . $bucket . '&maxAge=' . $maxAge;
633
        $info = $this->ucPost($path, null);
634
        return $info;
635
    }
636
637
    /**
638
     * 设置配额
639
     * <bucket>: 空间名称,不支持授权空间
640
     * <size>: 空间存储量配额,参数传入0或不传表示不更改当前配置,传入-1表示取消限额,
641
     * 新创建的空间默认没有限额。
642
     * <count>: 空间文件数配额,参数含义同<size>
643
     */
644
    public function putBucketQuota($bucket, $size, $count)
645
    {
646
        $path = '/setbucketquota/' . $bucket . '/size/' . $size . '/count/' . $count;
647
        $info = $this->apiPost($path, null);
648
        return $info;
649
    }
650
651
    /**
652
     * 获取配额
653
     * bucket 空间名称
654
     */
655
    public function getBucketQuota($bucket)
656
    {
657
        $path = '/getbucketquota/' . $bucket;
658
        $info = $this->apiPost($path, null);
659
        return $info;
660
    }
661
662
    /**
663
     * 获取资源的元信息,但不返回文件内容
664
     *
665
     * @param $bucket     待获取信息资源所在的空间
666
     * @param $key        待获取资源的文件名
667
     *
668
     * @return array    包含文件信息的数组,类似:
669
*                                              [
670
*                                                  "hash" => "<Hash string>",
671
*                                                  "key" => "<Key string>",
672
*                                                  "fsize" => <file size>,
673
*                                                  "putTime" => "<file modify time>"
674
*                                                  "fileType" => <file type>
675
*                                              ]
676
     *
677 6
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/stat.html
678
     */
679 6
    public function stat($bucket, $key)
680 6
    {
681
        $path = '/stat/' . \Qiniu\entry($bucket, $key);
682
        return $this->rsGet($path);
683
    }
684
685
    /**
686
     * 删除指定资源
687
     *
688
     * @param $bucket     待删除资源所在的空间
689
     * @param $key        待删除资源的文件名
690
     *
691
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
692 15
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/delete.html
693
     */
694 15
    public function delete($bucket, $key)
695 15
    {
696 15
        $path = '/delete/' . \Qiniu\entry($bucket, $key);
697
        list(, $error) = $this->rsPost($path);
698
        return $error;
699
    }
700
701
702
    /**
703
     * 给资源进行重命名,本质为move操作。
704
     *
705
     * @param $bucket     待操作资源所在空间
706
     * @param $oldname    待操作资源文件名
707
     * @param $newname    目标资源文件名
708
     *
709 3
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
710
     */
711 3
    public function rename($bucket, $oldname, $newname)
712
    {
713
        return $this->move($bucket, $oldname, $bucket, $newname);
714
    }
715
716
    /**
717
     * 对资源进行复制。
718
     *
719
     * @param $from_bucket     待操作资源所在空间
720
     * @param $from_key        待操作资源文件名
721
     * @param $to_bucket       目标资源空间名
722
     * @param $to_key          目标资源文件名
723
     *
724
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
725 15
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/copy.html
726
     */
727 15
    public function copy($from_bucket, $from_key, $to_bucket, $to_key, $force = false)
728 15
    {
729 15
        $from = \Qiniu\entry($from_bucket, $from_key);
730 15
        $to = \Qiniu\entry($to_bucket, $to_key);
731 3
        $path = '/copy/' . $from . '/' . $to;
732 3
        if ($force === true) {
733 15
            $path .= '/force/true';
734 15
        }
735
        list(, $error) = $this->rsPost($path);
736
        return $error;
737
    }
738
739
    /**
740
     * 将资源从一个空间到另一个空间
741
     *
742
     * @param $from_bucket     待操作资源所在空间
743
     * @param $from_key        待操作资源文件名
744
     * @param $to_bucket       目标资源空间名
745
     * @param $to_key          目标资源文件名
746
     *
747
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
748 3
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/move.html
749
     */
750 3
    public function move($from_bucket, $from_key, $to_bucket, $to_key, $force = false)
751 3
    {
752 3
        $from = \Qiniu\entry($from_bucket, $from_key);
753 3
        $to = \Qiniu\entry($to_bucket, $to_key);
754
        $path = '/move/' . $from . '/' . $to;
755
        if ($force) {
756 3
            $path .= '/force/true';
757 3
        }
758
        list(, $error) = $this->rsPost($path);
759
        return $error;
760
    }
761
762
    /**
763
     * 主动修改指定资源的文件元信息
764
     *
765
     * @param $bucket     待操作资源所在空间
766
     * @param $key        待操作资源文件名
767
     * @param $mime       待操作文件目标mimeType
768
     *
769
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
770 3
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/chgm.html
771
     */
772 3
    public function changeMime($bucket, $key, $mime)
773 3
    {
774 3
        $resource = \Qiniu\entry($bucket, $key);
775 3
        $encode_mime = \Qiniu\base64_urlSafeEncode($mime);
776 3
        $path = '/chgm/' . $resource . '/mime/' . $encode_mime;
777
        list(, $error) = $this->rsPost($path);
778
        return $error;
779
    }
780
781
782
    /**
783
     * 修改指定资源的存储类型
784
     *
785
     * @param $bucket     待操作资源所在空间
786
     * @param $key        待操作资源文件名
787
     * @param $fileType       待操作文件目标文件类型
788
     *
789
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
790
     * @link  https://developer.qiniu.com/kodo/api/3710/modify-the-file-type
791
     */
792
    public function changeType($bucket, $key, $fileType)
793
    {
794
        $resource = \Qiniu\entry($bucket, $key);
795
        $path = '/chtype/' . $resource . '/type/' . $fileType;
796
        list(, $error) = $this->rsPost($path);
797
        return $error;
798
    }
799
800
    /**
801
     * 修改指定资源的存储类型
802
     *
803
     * @param $bucket     待操作资源所在空间
804
     * @param $key        待操作资源文件名
805
     * @param $day        解冻有效时长,取值范围 1~7,解冻存在等待时间
806
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
807
     * @link  https://developer.qiniu.com/kodo/api/6380/restore-archive
808
     */
809
    public function restoreFile($bucket, $key, $day)
810
    {
811
        $resource = \Qiniu\entry($bucket, $key);
812
        $path = '/restoreAr/' . $resource . '/freezeAfterDays/' . $day;
813
        list(, $error) = $this->rsPostV2($path, null);
814
        return $error;
815
    }
816
817
    /**
818
     * 修改文件的存储状态,即禁用状态和启用状态间的的互相转换
819
     *
820
     * @param $bucket     待操作资源所在空间
821
     * @param $key        待操作资源文件名
822
     * @param $status       待操作文件目标文件类型
823
     *
824
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
825
     * @link  https://developer.qiniu.com/kodo/api/4173/modify-the-file-status
826
     */
827
    public function changeStatus($bucket, $key, $status)
828
    {
829
        $resource = \Qiniu\entry($bucket, $key);
830
        $path = '/chstatus/' . $resource . '/status/' . $status;
831
        list(, $error) = $this->rsPost($path);
832
        return $error;
833
    }
834
835
    /**
836
     * 从指定URL抓取资源,并将该资源存储到指定空间中
837
     *
838 3
     * @param $url        指定的URL
839
     * @param $bucket     目标资源空间
840
     * @param $key        目标资源文件名
841 3
     *
842 3
     * @return array    包含已拉取的文件信息。
843 3
     *                         成功时:  [
844
     *                                          [
845 3
     *                                              "hash" => "<Hash string>",
846 3
     *                                              "key" => "<Key string>"
847
     *                                          ],
848 3
     *                                          null
849 3
     *                                  ]
850
     *
851
     *                         失败时:  [
852
     *                                          null,
853
     *                                         Qiniu/Http/Error
854
     *                                  ]
855
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/fetch.html
856
     */
857
    public function fetch($url, $bucket, $key = null)
858
    {
859
860
        $resource = \Qiniu\base64_urlSafeEncode($url);
861 3
        $to = \Qiniu\entry($bucket, $key);
862
        $path = '/fetch/' . $resource . '/to/' . $to;
863 3
864 3
        $ak = $this->auth->getAccessKey();
865
        $ioHost = $this->config->getIovipHost($ak, $bucket);
866 3
867 3
        $url = $ioHost . $path;
868
        return $this->post($url, null);
869 3
    }
870 3
871 3
    /**
872
     * 从镜像源站抓取资源到空间中,如果空间中已经存在,则覆盖该资源
873
     *
874
     * @param $bucket     待获取资源所在的空间
875
     * @param $key        代获取资源文件名
876
     *
877
     * @return mixed      成功返回NULL,失败返回对象Qiniu\Http\Error
878
     * @link  http://developer.qiniu.com/docs/v6/api/reference/rs/prefetch.html
879
     */
880
    public function prefetch($bucket, $key)
881
    {
882
        $resource = \Qiniu\entry($bucket, $key);
883
        $path = '/prefetch/' . $resource;
884
885
        $ak = $this->auth->getAccessKey();
886
        $ioHost = $this->config->getIovipHost($ak, $bucket);
887
888
        $url = $ioHost . $path;
889
        list(, $error) = $this->post($url, null);
890 12
        return $error;
891
    }
892 12
893 12
    /**
894
     * 在单次请求中进行多个资源管理操作
895
     *
896
     * @param $operations     资源管理操作数组
897
     *
898
     * @return array 每个资源的处理情况,结果类似:
899
     *              [
900
     *                   { "code" => <HttpCode int>, "data" => <Data> },
901
     *                   { "code" => <HttpCode int> },
902
     *                   { "code" => <HttpCode int> },
903
     *                   { "code" => <HttpCode int> },
904
     *                   { "code" => <HttpCode int>, "data" => { "error": "<ErrorMessage string>" } },
905
     *                   ...
906 3
     *               ]
907
     * @link http://developer.qiniu.com/docs/v6/api/reference/rs/batch.html
908 3
     */
909 3
    public function batch($operations)
910 3
    {
911 3
        $params = 'op=' . implode('&op=', $operations);
912
        return $this->rsPost('/batch', $params);
913
    }
914 3
915
    /**
916 3
     * 设置文件的生命周期
917 3
     *
918
     * @param $bucket 设置文件生命周期文件所在的空间
919
     * @param $key    设置文件生命周期文件的文件名
920 3
     * @param $days   设置该文件多少天后删除,当$days设置为0时表示取消该文件的生命周期
921
     *
922
     * @return Mixed
923 33
     * @link https://developer.qiniu.com/kodo/api/update-file-lifecycle
924
     */
925 33
    public function deleteAfterDays($bucket, $key, $days)
926 33
    {
927
        $entry = \Qiniu\entry($bucket, $key);
928
        $path = "/deleteAfterDays/$entry/$days";
929 33
        list(, $error) = $this->rsPost($path);
930
        return $error;
931
    }
932
933
    private function getRsfHost()
934
    {
935
        $scheme = "http://";
936
        if ($this->config->useHTTPS == true) {
0 ignored issues
show
Coding Style Best Practice introduced by
It seems like you are loosely comparing two booleans. Considering using the strict comparison === instead.

When comparing two booleans, it is generally considered safer to use the strict comparison operator.

Loading history...
937
            $scheme = "https://";
938
        }
939
        return $scheme . Config::RSF_HOST;
940
    }
941
942
    private function getRsHost()
943
    {
944
        $scheme = "http://";
945
        if ($this->config->useHTTPS == true) {
0 ignored issues
show
Coding Style Best Practice introduced by
It seems like you are loosely comparing two booleans. Considering using the strict comparison === instead.

When comparing two booleans, it is generally considered safer to use the strict comparison operator.

Loading history...
946
            $scheme = "https://";
947
        }
948
        return $scheme . Config::RS_HOST;
949
    }
950 27
951
    private function getApiHost()
952 27
    {
953 27
        $scheme = "http://";
954
        if ($this->config->useHTTPS == true) {
0 ignored issues
show
Coding Style Best Practice introduced by
It seems like you are loosely comparing two booleans. Considering using the strict comparison === instead.

When comparing two booleans, it is generally considered safer to use the strict comparison operator.

Loading history...
955
            $scheme = "https://";
956
        }
957
        return $scheme . Config::API_HOST;
958
    }
959
960
    private function getUcHost()
961
    {
962
        $scheme = "http://";
963
        if ($this->config->useHTTPS == true) {
0 ignored issues
show
Coding Style Best Practice introduced by
It seems like you are loosely comparing two booleans. Considering using the strict comparison === instead.

When comparing two booleans, it is generally considered safer to use the strict comparison operator.

Loading history...
964
            $scheme = "https://";
965
        }
966
        return $scheme . Config::UC_HOST;
967
    }
968
969
    private function rsPost($path, $body = null)
970
    {
971
        $url = $this->getRsHost() . $path;
972
        return $this->post($url, $body);
973
    }
974
975
    private function apiPost($path, $body = null)
976
    {
977
        $url = $this->getApiHost() . $path;
978
        return $this->post($url, $body);
979
    }
980 9
981
    private function ucPost($path, $body = null)
982 9
    {
983 9
        $url = $this->getUcHost() . $path;
984
        return $this->post($url, $body);
985
    }
986 12
987
    private function ucGet($path)
988 12
    {
989 12
        $url = $this->getUcHost() . $path;
990 12
        return $this->get($url);
991 6
    }
992
993 12
    private function apiGet($path)
994
    {
995
        $url = $this->getApiHost() . $path;
996 33
        return $this->get($url);
997
    }
998 33
999 33
    private function rsGet($path)
1000 33
    {
1001 9
        $url = $this->getRsHost() . $path;
1002
        return $this->get($url);
1003 30
    }
1004 30
1005
    private function get($url)
1006
    {
1007
        $headers = $this->auth->authorization($url);
1008
        $ret = Client::get($url, $headers);
1009
        if (!$ret->ok()) {
1010
            return array(null, new Error($url, $ret));
1011
        }
1012
        return array($ret->json(), null);
1013
    }
1014
1015
    private function post($url, $body)
1016
    {
1017
        $headers = $this->auth->authorization($url, $body, 'application/x-www-form-urlencoded');
1018
        $ret = Client::post($url, $body, $headers);
1019
        if (!$ret->ok()) {
1020
            return array(null, new Error($url, $ret));
1021
        }
1022
        $r = ($ret->body === null) ? array() : $ret->json();
1023
        return array($r, null);
1024
    }
1025 3
1026
    private function ucPostV2($path, $body)
1027 3
    {
1028
        $url = $this->getUcHost() . $path;
1029
        return $this->postV2($url, $body);
1030
    }
1031 3
1032
    private function rsPostV2($path, $body)
1033 3
    {
1034
        $url = $this->getRsHost() . $path;
1035
        return $this->postV2($url, $body);
1036
    }
1037 6
1038
    private function postV2($url, $body)
1039 6
    {
1040
        $headers = $this->auth->authorizationV2($url, 'POST', $body, 'application/json');
1041
        $headers["Content-Type"] = 'application/json';
1042
        $ret = Client::post($url, $body, $headers);
1043 3
        if (!$ret->ok()) {
1044
            return array(null, new Error($url, $ret));
1045 3
        }
1046
        $r = ($ret->body === null) ? array() : $ret->json();
1047
        return array($r, null);
1048
    }
1049 3
1050
    public static function buildBatchCopy($source_bucket, $key_pairs, $target_bucket, $force)
1051 3
    {
1052
        return self::twoKeyBatch('/copy', $source_bucket, $key_pairs, $target_bucket, $force);
1053
    }
1054
1055
1056
    public static function buildBatchRename($bucket, $key_pairs, $force)
1057
    {
1058
        return self::buildBatchMove($bucket, $key_pairs, $bucket, $force);
1059
    }
1060
1061
1062
    public static function buildBatchMove($source_bucket, $key_pairs, $target_bucket, $force)
1063
    {
1064
        return self::twoKeyBatch('/move', $source_bucket, $key_pairs, $target_bucket, $force);
1065
    }
1066
1067
1068
    public static function buildBatchDelete($bucket, $keys)
1069
    {
1070
        return self::oneKeyBatch('/delete', $bucket, $keys);
1071
    }
1072
1073
1074
    public static function buildBatchStat($bucket, $keys)
1075
    {
1076
        return self::oneKeyBatch('/stat', $bucket, $keys);
1077
    }
1078
1079
    public static function buildBatchDeleteAfterDays($bucket, $key_day_pairs)
1080
    {
1081 6
        $data = array();
1082
        foreach ($key_day_pairs as $key => $day) {
1083 6
            array_push($data, '/deleteAfterDays/' . \Qiniu\entry($bucket, $key) . '/' . $day);
1084 6
        }
1085 6
        return $data;
1086 6
    }
1087 6
1088
    public static function buildBatchChangeMime($bucket, $key_mime_pairs)
1089
    {
1090 9
        $data = array();
1091
        foreach ($key_mime_pairs as $key => $mime) {
1092 9
            array_push($data, '/chgm/' . \Qiniu\entry($bucket, $key) . '/mime/' . base64_encode($mime));
1093
        }
1094
        return $data;
1095 9
    }
1096 9
1097 9
    public static function buildBatchChangeType($bucket, $key_type_pairs)
1098 9
    {
1099 9
        $data = array();
1100 9
        foreach ($key_type_pairs as $key => $type) {
1101 9
            array_push($data, '/chtype/' . \Qiniu\entry($bucket, $key) . '/type/' . $type);
1102 9
        }
1103 9
        return $data;
1104 9
    }
1105 9
1106
    private static function oneKeyBatch($operation, $bucket, $keys)
1107
    {
1108
        $data = array();
1109
        foreach ($keys as $key) {
1110
            array_push($data, $operation . '/' . \Qiniu\entry($bucket, $key));
1111
        }
1112
        return $data;
1113
    }
1114
1115
    private static function twoKeyBatch($operation, $source_bucket, $key_pairs, $target_bucket, $force)
1116
    {
1117
        if ($target_bucket === null) {
1118
            $target_bucket = $source_bucket;
1119
        }
1120
        $data = array();
1121
        $forceOp = "false";
1122
        if ($force) {
1123
            $forceOp = "true";
1124
        }
1125
        foreach ($key_pairs as $from_key => $to_key) {
1126
            $from = \Qiniu\entry($source_bucket, $from_key);
1127
            $to = \Qiniu\entry($target_bucket, $to_key);
1128
            array_push($data, $operation . '/' . $from . '/' . $to . "/force/" . $forceOp);
1129
        }
1130
        return $data;
1131
    }
1132
}
1133