zx/crmeb/services/upload/extend/cos/Scope.php

78 lines
2.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* +----------------------------------------------------------------------
* | CRMEB [ CRMEB赋能开发者助力企业发展 ]
* +----------------------------------------------------------------------
* | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
* +----------------------------------------------------------------------
* | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
* +----------------------------------------------------------------------
* | Author: CRMEB Team <admin@crmeb.com>
* +----------------------------------------------------------------------
*/
namespace crmeb\services\upload\extend\cos;
class Scope
{
protected $action;
protected $bucket;
protected $region;
protected $resourcePrefix;
protected $effect = 'allow';
public function __construct($action, $bucket, $region, $resourcePrefix)
{
$this->action = $action;
$this->bucket = $bucket;
$this->region = $region;
$this->resourcePrefix = $resourcePrefix;
}
public function set_effect($isAllow)
{
if ($isAllow) {
$this->effect = 'allow';
} else {
$this->effect = 'deny';
}
}
public function get_action()
{
if ($this->action == null) {
throw new \Exception("action == null");
}
return $this->action;
}
public function get_resource()
{
if ($this->bucket == null) {
throw new \Exception("bucket == null");
}
if ($this->region == null) {
throw new \Exception("region == null");
}
if ($this->resourcePrefix == null) {
throw new \Exception("resourcePrefix == null");
}
$index = strripos($this->bucket, '-');
if ($index < 0) {
throw new Exception("bucket is invalid: " . $this->bucket);
}
$appid = substr($this->bucket, $index + 1);
if (!(strpos($this->resourcePrefix, '/') === 0)) {
$this->resourcePrefix = '/' . $this->resourcePrefix;
}
return 'qcs::cos:' . $this->region . ':uid/' . $appid . ':' . $this->bucket . $this->resourcePrefix;
}
public function get_effect()
{
return $this->effect;
}
}