Complex classes like BucketManager often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use BucketManager, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
15 | final class BucketManager |
||
16 | { |
||
17 | private $auth; |
||
18 | private $config; |
||
19 | |||
20 | 42 | public function __construct(Auth $auth, Config $config = null) |
|
29 | |||
30 | /** |
||
31 | * 获取指定账号下所有的空间名。 |
||
32 | * |
||
33 | * @return string[] 包含所有空间名 |
||
34 | */ |
||
35 | 3 | public function buckets($shared = true) |
|
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 | * @param $region 创建的区域,默认华东 |
||
72 | * |
||
73 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
74 | */ |
||
75 | public function createBucket($name, $region = 'z0') |
||
76 | { |
||
77 | $path = '/mkbucketv3/'.$name.'/region/' . $region; |
||
78 | return $this->rsPost($path, null); |
||
79 | } |
||
80 | |||
81 | /** |
||
82 | * 删除空间 |
||
83 | * |
||
84 | * @param $name 删除的空间名 |
||
85 | * |
||
86 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
87 | */ |
||
88 | public function deleteBucket($name) |
||
89 | { |
||
90 | $path = '/drop/'.$name; |
||
91 | return $this->rsPost($path, null); |
||
92 | } |
||
93 | |||
94 | /** |
||
95 | * 获取指定空间绑定的所有的域名 |
||
96 | * |
||
97 | * @return string[] 包含所有空间域名 |
||
98 | */ |
||
99 | public function domains($bucket) |
||
100 | { |
||
101 | return $this->apiGet('/v6/domain/list?tbl=' . $bucket); |
||
102 | } |
||
103 | |||
104 | /** |
||
105 | * 获取指定空间的相关信息 |
||
106 | * |
||
107 | * @return string[] 包含空间信息 |
||
108 | */ |
||
109 | public function bucketInfo($bucket) |
||
110 | { |
||
111 | $path = '/v2/bucketInfo?bucket=' . $bucket; |
||
112 | $info = $this->ucPost($path); |
||
113 | return $info; |
||
114 | } |
||
115 | |||
116 | /** |
||
117 | * 获取指定zone的空间信息列表 |
||
118 | * 在Region 未指定且Global 不为 true 时(包含未指定的情况,下同),返回用户的所有空间。 |
||
119 | * 在指定了 region 参数且 global 不为 true 时,只列举非全局空间。 |
||
120 | * shared 不指定shared参数或指定shared为rw或false时,返回包含具有读写权限空间, |
||
121 | * 指定shared为rd或true时,返回包含具有读权限空间。 |
||
122 | * fs:如果为 true,会返回每个空间当前的文件数和存储量(实时数据)。 |
||
123 | * @return string[] 包含空间信息 |
||
124 | */ |
||
125 | public function bucketInfos($region = null, $shared = 'false', $fs = 'false') |
||
126 | { |
||
127 | $path = '/v2/bucketInfos?region=' . $region . '&shared=' . $shared . '&fs=' . $fs; |
||
128 | $info = $this->ucPost($path); |
||
129 | return $info; |
||
130 | } |
||
131 | |||
132 | /** |
||
133 | * 获取空间绑定的域名列表 |
||
134 | * @return string[] 包含空间绑定的所有域名 |
||
135 | */ |
||
136 | |||
137 | /** |
||
138 | * 列取空间的文件列表 |
||
139 | * |
||
140 | * @param $bucket 空间名 |
||
141 | * @param $prefix 列举前缀 |
||
142 | * @param $marker 列举标识符 |
||
143 | * @param $limit 单次列举个数限制 |
||
144 | * @param $delimiter 指定目录分隔符 |
||
145 | * |
||
146 | * @return array 包含文件信息的数组,类似:[ |
||
147 | * { |
||
148 | * "hash" => "<Hash string>", |
||
149 | * "key" => "<Key string>", |
||
150 | * "fsize" => "<file size>", |
||
151 | * "putTime" => "<file modify time>" |
||
152 | * }, |
||
153 | * ... |
||
154 | * ] |
||
155 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/list.html |
||
156 | */ |
||
157 | 3 | public function listFiles( |
|
172 | |||
173 | /** |
||
174 | * 列取空间的文件列表 |
||
175 | * |
||
176 | * @param $bucket 空间名 |
||
177 | * @param $prefix 列举前缀 |
||
178 | * @param $marker 列举标识符 |
||
179 | * @param $limit 单次列举个数限制 |
||
180 | * @param $delimiter 指定目录分隔符 |
||
181 | * @param $skipconfirm 是否跳过已删除条目的确认机制 |
||
182 | * |
||
183 | * @return array 包含文件信息的数组,类似:[ |
||
184 | * { |
||
185 | * "hash" => "<Hash string>", |
||
186 | * "key" => "<Key string>", |
||
187 | * "fsize" => "<file size>", |
||
188 | * "putTime" => "<file modify time>" |
||
189 | * }, |
||
190 | * ... |
||
191 | * ] |
||
192 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/list.html |
||
193 | */ |
||
194 | public function listFilesv2( |
||
219 | |||
220 | /** |
||
221 | * 设置Referer防盗链 |
||
222 | * |
||
223 | * @param $bucket 空间名 |
||
224 | * @param $mode 0: 表示关闭Referer(使用此选项将会忽略以下参数并将恢复默认值); |
||
225 | * 1: 表示设置Referer白名单; 2:表示设置Referer黑名单 |
||
226 | * @param $norefer 0: 表示不允许空 Refer 访问; 1: 表示允许空 Refer 访问 |
||
227 | * @param $pattern 规则字符串, 当前允许格式分为三种: 一种为空主机头域名, |
||
228 | * 比如 foo.com; 一种是泛域名,比如 *.bar.com; 一种是完全通配符, |
||
229 | * 即一个 *; 多个规则之间用;隔开, 比如: foo.com;*.bar.com;sub.foo.com;*.sub.bar.com |
||
230 | * @param $source_enabled 源站是否支持,默认为0只给CDN配置, 设置为1表示开启源站防盗链 |
||
231 | * |
||
232 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
233 | */ |
||
234 | // public function referAntiLeech(){ |
||
235 | |||
236 | // } |
||
237 | |||
238 | /** |
||
239 | * 增加bucket生命规则 |
||
240 | * |
||
241 | * @param $bucket 空间名 |
||
242 | * @param $name 规则名称 bucket 内唯一,长度小于50,不能为空,只能为 |
||
243 | * 字母、数字、下划线 |
||
244 | * @param $prefix 同一个 bucket 里面前缀不能重复 |
||
245 | * @param $delete_after_days 指定上传文件多少天后删除,指定为0表示不删除, |
||
246 | * 大于0表示多少天后删除,需大于 to_line_after_days |
||
247 | * @param $to_line_after_days 指定文件上传多少天后转低频存储。指定为0表示 |
||
248 | * 不转低频存储,小于0表示上传的文件立即变低频存储 |
||
249 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
250 | */ |
||
251 | public function bucketLifecycleRule( |
||
278 | |||
279 | /** |
||
280 | * 更新bucket生命规则 |
||
281 | * |
||
282 | * @param $bucket 空间名 |
||
283 | * @param $name 规则名称 bucket 内唯一,长度小于50,不能为空,只能为字母、 |
||
284 | * 数字、下划线 |
||
285 | * @param $prefix 同一个 bucket 里面前缀不能重复 |
||
286 | * @param $delete_after_days 指定上传文件多少天后删除,指定为0表示不删除, |
||
287 | * 大于0表示多少天后删除,需大于 to_line_after_days |
||
288 | * @param $to_line_after_days 指定文件上传多少天后转低频存储。指定为0表示不 |
||
289 | * 转低频存储,小于0表示上传的文件立即变低频存储 |
||
290 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
291 | */ |
||
292 | public function updateBucketLifecycleRule( |
||
319 | |||
320 | /** |
||
321 | * 获取bucket生命规则 |
||
322 | * |
||
323 | * @param $bucket 空间名 |
||
324 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
325 | */ |
||
326 | public function getBucketLifecycleRules($bucket) |
||
332 | |||
333 | /** |
||
334 | * 删除bucket生命规则 |
||
335 | * |
||
336 | * @param $bucket 空间名 |
||
337 | * @param $name 规则名称 bucket 内唯一,长度小于50,不能为空, |
||
338 | * 只能为字母、数字、下划线() |
||
339 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
340 | */ |
||
341 | public function deleteBucketLifecycleRule($bucket, $name) |
||
354 | |||
355 | /** |
||
356 | * 增加bucket事件通知规则 |
||
357 | * |
||
358 | * @param $bucket 空间名 |
||
359 | * @param $name 规则名称 bucket 内唯一,长度小于50,不能为空, |
||
360 | * 只能为字母、数字、下划线() |
||
361 | * @param $prefix 同一个 bucket 里面前缀不能重复 |
||
362 | * @param $suffix 可选,文件配置的后缀 |
||
363 | * @param $event 事件类型,可以指定多个,包括 put,mkfile,delete,copy,move,append, |
||
364 | * disable,enable,deleteMarkerCreate |
||
365 | * @param $callbackURL 通知URL,可以指定多个,失败依次重试 |
||
366 | * @param $access_key 可选,设置的话会对通知请求用对应的ak、sk进行签名 |
||
367 | * @param $host 可选,通知请求的host |
||
368 | * |
||
369 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
370 | */ |
||
371 | public function putBucketEvent( |
||
414 | |||
415 | /** |
||
416 | * 更新bucket事件通知规则 |
||
417 | * |
||
418 | * @param $bucket 空间名 |
||
419 | * @param $name 规则名称 bucket 内唯一,长度小于50,不能为空, |
||
420 | * 只能为字母、数字、下划线() |
||
421 | * @param $prefix 同一个 bucket 里面前缀不能重复 |
||
422 | * @param $suffix 可选,文件配置的后缀 |
||
423 | * @param $event 事件类型,可以指定多个,包括 put,mkfile,delete,copy,move,append,disable, |
||
424 | * enable,deleteMarkerCreate |
||
425 | * @param $callbackURL 通知URL,可以指定多个,失败依次重试 |
||
426 | * @param $access_key 可选,设置的话会对通知请求用对应的ak、sk进行签名 |
||
427 | * @param $host 可选,通知请求的host |
||
428 | * |
||
429 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
430 | */ |
||
431 | public function updateBucketEvent( |
||
477 | |||
478 | /** |
||
479 | * 获取bucket事件通知规则 |
||
480 | * |
||
481 | * @param $bucket 空间名 |
||
482 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
483 | */ |
||
484 | public function getBucketEvents($bucket) |
||
490 | |||
491 | /** |
||
492 | * 删除bucket事件通知规则 |
||
493 | * |
||
494 | * @param $bucket 空间名 |
||
495 | * @param $name 规则名称 bucket 内唯一,长度小于50,不能为空, |
||
496 | * 只能为字母、数字、下划线 |
||
497 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
498 | */ |
||
499 | public function deleteBucketEvent($bucket, $name) |
||
512 | |||
513 | /** |
||
514 | * 设置bucket的跨域信息,最多允许设置10条跨域规则。 |
||
515 | * 对于同一个域名如果设置了多条规则,那么按顺序使用第一条匹配的规则去生成返回值。 |
||
516 | * 对于简单跨域请求,只匹配 Origin; |
||
517 | * allowed_orgin: 允许的域名。必填;支持通配符*;*表示全部匹配;只有第一个*生效; |
||
518 | * 需要设置"Scheme";大小写敏感。例如 |
||
519 | * 规则:http://*.abc.*.com 请求:"http://test.abc.test.com" 结果:不通过 |
||
520 | * 规则:"http://abc.com" 请求:"https://abc.com"/"abc.com" 结果:不通过 |
||
521 | * 规则:"abc.com" 请求:"http://abc.com" 结果:不通过 |
||
522 | * allowed_method: 允许的方法。必填;不支持通配符;大小写不敏感; |
||
523 | * allowed_header: 允许的header。选填;支持通配符*, |
||
524 | * 但只能是单独的*,表示允许全部header,其他*不生效; |
||
525 | * 空则不允许任何header;大小写不敏感; |
||
526 | * exposed_header: 暴露的header。选填;不支持通配符; |
||
527 | * X-Log, X-Reqid是默认会暴露的两个header; |
||
528 | * 其他的header如果没有设置,则不会暴露;大小写不敏感; |
||
529 | * max_age: 结果可以缓存的时间。选填;空则不缓存; |
||
530 | * allowed_credentials:该配置不支持设置,默认为true。 |
||
531 | * 备注:如果没有设置任何corsRules,那么默认允许所有的跨域请求 |
||
532 | */ |
||
533 | // public function putCorsRules(string $bucket, array $params) |
||
534 | // { |
||
535 | // $path = '/corsRules/set/' . $bucket; |
||
536 | // $data = json_encode($params); |
||
537 | // $info = $this->ucPost($path, $data); |
||
538 | // return $info; |
||
539 | // } |
||
540 | |||
541 | /** |
||
542 | * 获取bucket的跨域信息 |
||
543 | * $bucket 空间名 |
||
544 | */ |
||
545 | public function getCorsRules($bucket) |
||
551 | |||
552 | /** |
||
553 | * 设置回源规则 |
||
554 | * 使用该API设置源站优先级高于/image设置的源站,即IO优先读取source接口设置的源站配置, |
||
555 | * 如果存在会忽略/image设置的源站 |
||
556 | * Bucket 空间名 |
||
557 | * Host(可选)回源Host |
||
558 | * RetryCodes(可选),镜像回源时源站返回Code可以重试,最多指定3个,当前只支持4xx错误码重试 |
||
559 | * SourceQiniuAK,SourceQiniuSK(可选)如果存在将在回源时对URL进行签名,客户源站可以验证 |
||
560 | * 以保证请求来自Qiniu服务器 |
||
561 | * Expires(可选) 签名过期时间,如果不设置默认为1小时 |
||
562 | * Addr 回源地址,不可重复。 |
||
563 | * Weight 权重,范围限制1-100,不填默认为1,回源时会根据所有源的权重值进行源站选择, |
||
564 | * 主备源会分开计算. |
||
565 | * Backup 是否备用回源,回源优先尝试主源 |
||
566 | */ |
||
567 | // public function putBucktSourceConfig(array $params) |
||
568 | // { |
||
569 | // $path = '/mirrorConfig/set'; |
||
570 | // $data = json_encode($params); |
||
571 | // $info = $this->ucPostV2($path, $data); |
||
572 | // return $info; |
||
573 | // } |
||
574 | |||
575 | /** |
||
576 | * 获取空间回源配置 |
||
577 | */ |
||
578 | public function getBucktSourceConfig(array $params) |
||
585 | |||
586 | /** |
||
587 | * 开关原图保护 |
||
588 | * mode 为1表示开启原图保护,0表示关闭 |
||
589 | */ |
||
590 | public function putBucketAccessStyleMode($bucket, $mode) |
||
596 | |||
597 | /** |
||
598 | * 设置私有属性 |
||
599 | * private为0表示公开,为1表示私有 |
||
600 | */ |
||
601 | public function putBucketAccessMode($bucket, $private) |
||
607 | |||
608 | /** |
||
609 | * 设置referer防盗链 |
||
610 | * bucket=<BucketName>: bucket 名 |
||
611 | * mode=<AntiLeechMode>: |
||
612 | * 0: 表示关闭Referer(使用此选项将会忽略以下参数并将恢复默认值); |
||
613 | * 1: 表示设置Referer白名单; 2: 表示设置Referer黑名单 |
||
614 | * norefer=<NoRefer>: 0: 表示不允许空 Refer 访问; |
||
615 | * 1: 表示允许空 Refer 访问 |
||
616 | * pattern=<Pattern>: 规则字符串, 当前允许格式分为三种: |
||
617 | * 一种为空主机头域名, 比如 foo.com; |
||
618 | * 一种是泛域名, 比如 *.bar.com; 一种是完全通配符, 即一个 *; |
||
619 | * 多个规则之间用;隔开, 比如: foo.com;*.bar.com;sub.foo.com;*.sub.bar.com |
||
620 | * 空主机头域名可以是多级域名,比如 foo.bar.com。 |
||
621 | * 多个域名之间不允许夹带空白字符。 |
||
622 | * source_enabled=:1 |
||
623 | */ |
||
624 | public function putReferAntiLeech($bucket, $mode, $norefer, $pattern, $enabled = 1) |
||
630 | |||
631 | /** |
||
632 | * 设置Bucket的maxAge |
||
633 | * maxAge为0或者负数表示为默认值(31536000) |
||
634 | */ |
||
635 | public function putBucketMaxAge($bucket, $maxAge) |
||
641 | |||
642 | /** |
||
643 | * 设置配额 |
||
644 | * <bucket>: 空间名称,不支持授权空间 |
||
645 | * <size>: 空间存储量配额,参数传入0或不传表示不更改当前配置,传入-1表示取消限额, |
||
646 | * 新创建的空间默认没有限额。 |
||
647 | * <count>: 空间文件数配额,参数含义同<size> |
||
648 | */ |
||
649 | public function putBucketQuota($bucket, $size, $count) |
||
655 | |||
656 | /** |
||
657 | * 获取配额 |
||
658 | * bucket 空间名称 |
||
659 | */ |
||
660 | public function getBucketQuota($bucket) |
||
666 | |||
667 | /** |
||
668 | * 获取资源的元信息,但不返回文件内容 |
||
669 | * |
||
670 | * @param $bucket 待获取信息资源所在的空间 |
||
671 | * @param $key 待获取资源的文件名 |
||
672 | * |
||
673 | * @return array 包含文件信息的数组,类似: |
||
674 | * [ |
||
675 | * "hash" => "<Hash string>", |
||
676 | * "key" => "<Key string>", |
||
677 | 6 | * "fsize" => <file size>, |
|
678 | * "putTime" => "<file modify time>" |
||
679 | 6 | * "fileType" => <file type> |
|
680 | 6 | * ] |
|
681 | * |
||
682 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/stat.html |
||
683 | */ |
||
684 | public function stat($bucket, $key) |
||
689 | |||
690 | /** |
||
691 | * 删除指定资源 |
||
692 | 15 | * |
|
693 | * @param $bucket 待删除资源所在的空间 |
||
694 | 15 | * @param $key 待删除资源的文件名 |
|
695 | 15 | * |
|
696 | 15 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
|
697 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/delete.html |
||
698 | */ |
||
699 | public function delete($bucket, $key) |
||
705 | |||
706 | |||
707 | /** |
||
708 | * 给资源进行重命名,本质为move操作。 |
||
709 | 3 | * |
|
710 | * @param $bucket 待操作资源所在空间 |
||
711 | 3 | * @param $oldname 待操作资源文件名 |
|
712 | * @param $newname 目标资源文件名 |
||
713 | * |
||
714 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
715 | */ |
||
716 | public function rename($bucket, $oldname, $newname) |
||
720 | |||
721 | /** |
||
722 | * 对资源进行复制。 |
||
723 | * |
||
724 | * @param $from_bucket 待操作资源所在空间 |
||
725 | 15 | * @param $from_key 待操作资源文件名 |
|
726 | * @param $to_bucket 目标资源空间名 |
||
727 | 15 | * @param $to_key 目标资源文件名 |
|
728 | 15 | * |
|
729 | 15 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
|
730 | 15 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/copy.html |
|
731 | 3 | */ |
|
732 | 3 | public function copy($from_bucket, $from_key, $to_bucket, $to_key, $force = false) |
|
743 | |||
744 | /** |
||
745 | * 将资源从一个空间到另一个空间 |
||
746 | * |
||
747 | * @param $from_bucket 待操作资源所在空间 |
||
748 | 3 | * @param $from_key 待操作资源文件名 |
|
749 | * @param $to_bucket 目标资源空间名 |
||
750 | 3 | * @param $to_key 目标资源文件名 |
|
751 | 3 | * |
|
752 | 3 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
|
753 | 3 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/move.html |
|
754 | */ |
||
755 | public function move($from_bucket, $from_key, $to_bucket, $to_key, $force = false) |
||
766 | |||
767 | /** |
||
768 | * 主动修改指定资源的文件元信息 |
||
769 | * |
||
770 | 3 | * @param $bucket 待操作资源所在空间 |
|
771 | * @param $key 待操作资源文件名 |
||
772 | 3 | * @param $mime 待操作文件目标mimeType |
|
773 | 3 | * |
|
774 | 3 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
|
775 | 3 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/chgm.html |
|
776 | 3 | */ |
|
777 | public function changeMime($bucket, $key, $mime) |
||
785 | |||
786 | |||
787 | /** |
||
788 | * 修改指定资源的存储类型 |
||
789 | * |
||
790 | * @param $bucket 待操作资源所在空间 |
||
791 | * @param $key 待操作资源文件名 |
||
792 | * @param $fileType 待操作文件目标文件类型 |
||
793 | * |
||
794 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
795 | * @link https://developer.qiniu.com/kodo/api/3710/modify-the-file-type |
||
796 | */ |
||
797 | public function changeType($bucket, $key, $fileType) |
||
804 | |||
805 | /** |
||
806 | * 修改文件的存储状态,即禁用状态和启用状态间的的互相转换 |
||
807 | * |
||
808 | * @param $bucket 待操作资源所在空间 |
||
809 | * @param $key 待操作资源文件名 |
||
810 | * @param $status 待操作文件目标文件类型 |
||
811 | * |
||
812 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
813 | * @link https://developer.qiniu.com/kodo/api/4173/modify-the-file-status |
||
814 | */ |
||
815 | public function changeStatus($bucket, $key, $status) |
||
822 | |||
823 | /** |
||
824 | * 从指定URL抓取资源,并将该资源存储到指定空间中 |
||
825 | * |
||
826 | * @param $url 指定的URL |
||
827 | * @param $bucket 目标资源空间 |
||
828 | * @param $key 目标资源文件名 |
||
829 | * |
||
830 | * @return array 包含已拉取的文件信息。 |
||
831 | * 成功时: [ |
||
832 | * [ |
||
833 | * "hash" => "<Hash string>", |
||
834 | * "key" => "<Key string>" |
||
835 | * ], |
||
836 | * null |
||
837 | * ] |
||
838 | 3 | * |
|
839 | * 失败时: [ |
||
840 | * null, |
||
841 | 3 | * Qiniu/Http/Error |
|
842 | 3 | * ] |
|
843 | 3 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/fetch.html |
|
844 | */ |
||
845 | 3 | public function fetch($url, $bucket, $key = null) |
|
858 | |||
859 | /** |
||
860 | * 从指定URL异步抓取资源,并将该资源存储到指定空间中 |
||
861 | 3 | * |
|
862 | * @param $url 需要抓取的url |
||
863 | 3 | * @param $bucket 所在区域的bucket |
|
864 | 3 | * @param null $host 从指定url下载数据时使用的Host |
|
865 | * @param null $key 文件存储的key |
||
866 | 3 | * @param null $md5 文件md5 |
|
867 | 3 | * @param null $etag 文件etag |
|
868 | * @param null $callbackurl 回调URL |
||
869 | 3 | * @param null $callbackbody 回调Body |
|
870 | 3 | * @param string $callbackbodytype 回调Body内容类型,默认为"application/x-www-form-urlencoded" |
|
871 | 3 | * @param null $callbackhost 回调时使用的Host |
|
872 | * @param int $file_type 存储文件类型 0:标准存储(默认),1:低频存储,2:归档存储 |
||
873 | * @param bool $ignore_same_key 如果空间中已经存在同名文件则放弃本次抓取 |
||
874 | * @return array |
||
875 | * @link https://developer.qiniu.com/kodo/api/4097/asynch-fetch |
||
876 | */ |
||
877 | public function asynchFetch( |
||
912 | |||
913 | |||
914 | 3 | /** |
|
915 | * 查询异步第三方资源抓取任务状态 |
||
916 | 3 | * |
|
917 | 3 | * @param $zone |
|
918 | * @param $id |
||
919 | * @return array |
||
920 | 3 | * @link https://developer.qiniu.com/kodo/api/4097/asynch-fetch |
|
921 | */ |
||
922 | public function asynchFetchStatus($zone, $id) |
||
940 | |||
941 | |||
942 | /** |
||
943 | * 从镜像源站抓取资源到空间中,如果空间中已经存在,则覆盖该资源 |
||
944 | * |
||
945 | * @param $bucket 待获取资源所在的空间 |
||
946 | * @param $key 代获取资源文件名 |
||
947 | * |
||
948 | * @return mixed 成功返回NULL,失败返回对象Qiniu\Http\Error |
||
949 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/prefetch.html |
||
950 | 27 | */ |
|
951 | public function prefetch($bucket, $key) |
||
963 | |||
964 | /** |
||
965 | * 在单次请求中进行多个资源管理操作 |
||
966 | * |
||
967 | * @param $operations 资源管理操作数组 |
||
968 | * |
||
969 | * @return array 每个资源的处理情况,结果类似: |
||
970 | * [ |
||
971 | * { "code" => <HttpCode int>, "data" => <Data> }, |
||
972 | * { "code" => <HttpCode int> }, |
||
973 | * { "code" => <HttpCode int> }, |
||
974 | * { "code" => <HttpCode int> }, |
||
975 | * { "code" => <HttpCode int>, "data" => { "error": "<ErrorMessage string>" } }, |
||
976 | * ... |
||
977 | * ] |
||
978 | * @link http://developer.qiniu.com/docs/v6/api/reference/rs/batch.html |
||
979 | */ |
||
980 | 9 | public function batch($operations) |
|
985 | |||
986 | 12 | /** |
|
987 | * 设置文件的生命周期 |
||
988 | 12 | * |
|
989 | 12 | * @param $bucket 设置文件生命周期文件所在的空间 |
|
990 | 12 | * @param $key 设置文件生命周期文件的文件名 |
|
991 | 6 | * @param $days 设置该文件多少天后删除,当$days设置为0时表示取消该文件的生命周期 |
|
992 | * |
||
993 | 12 | * @return Mixed |
|
994 | * @link https://developer.qiniu.com/kodo/api/update-file-lifecycle |
||
995 | */ |
||
996 | 33 | public function deleteAfterDays($bucket, $key, $days) |
|
1003 | 30 | ||
1004 | 30 | private function getRsfHost() |
|
1012 | |||
1013 | private function getRsHost() |
||
1021 | |||
1022 | private function getApiHost() |
||
1030 | |||
1031 | 3 | private function getUcHost() |
|
1039 | 6 | ||
1040 | private function rsPost($path, $body = null) |
||
1045 | 3 | ||
1046 | private function apiPost($path, $body = null) |
||
1051 | 3 | ||
1052 | private function ucPost($path, $body = null) |
||
1057 | |||
1058 | private function ucGet($path) |
||
1063 | |||
1064 | private function apiGet($path) |
||
1069 | |||
1070 | private function rsGet($path) |
||
1075 | |||
1076 | private function get($url) |
||
1085 | 6 | ||
1086 | 6 | private function getV2($url) |
|
1091 | |||
1092 | 9 | private function post($url, $body) |
|
1102 | 9 | ||
1103 | 9 | private function ucPostV2($path, $body) |
|
1108 | |||
1109 | private function postV2($url, $body) |
||
1120 | |||
1121 | public static function buildBatchCopy($source_bucket, $key_pairs, $target_bucket, $force) |
||
1125 | |||
1126 | |||
1127 | public static function buildBatchRename($bucket, $key_pairs, $force) |
||
1131 | |||
1132 | |||
1133 | public static function buildBatchMove($source_bucket, $key_pairs, $target_bucket, $force) |
||
1137 | |||
1138 | |||
1139 | public static function buildBatchDelete($bucket, $keys) |
||
1143 | |||
1144 | |||
1145 | public static function buildBatchStat($bucket, $keys) |
||
1149 | |||
1150 | public static function buildBatchDeleteAfterDays($bucket, $key_day_pairs) |
||
1158 | |||
1159 | public static function buildBatchChangeMime($bucket, $key_mime_pairs) |
||
1167 | |||
1168 | public static function buildBatchChangeType($bucket, $key_type_pairs) |
||
1176 | |||
1177 | private static function oneKeyBatch($operation, $bucket, $keys) |
||
1185 | |||
1186 | private static function twoKeyBatch($operation, $source_bucket, $key_pairs, $target_bucket, $force) |
||
1203 | } |
||
1204 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
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.