forked from yii2tech/file-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseStorage.php
171 lines (157 loc) · 4.84 KB
/
BaseStorage.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
<?php
/**
* @link https://github.com/yii2tech
* @copyright Copyright (c) 2015 Yii2tech
* @license [New BSD License](http://www.opensource.org/licenses/bsd-license.php)
*/
namespace yii2tech\filestorage;
use Yii;
use yii\base\Component;
use yii\base\InvalidParamException;
use yii\log\Logger;
/**
* BaseStorage is a base class for the file storages.
* This class stores the file storage bucket instances and creates them based on
* the configuration array.
* Each particular file storage is supposed to use a particular class for its buckets.
* Name of this class can be set through the {@link bucketClassName}.
*
* @property BucketInterface[] $buckets list of buckets.
* @property string $bucketClassName name of the bucket class.
* @property string|array $baseUrl web URL, which is basic for all buckets at [[BucketInterface::getFileUrl()]].
*
* @author Paul Klimov <[email protected]>
* @since 1.0
*/
abstract class BaseStorage extends Component implements StorageInterface
{
/**
* @var string name of the bucket class.
*/
public $bucketClassName = 'yii2tech\filestorage\BaseBucket';
/**
* @var BucketInterface[] list of buckets.
*/
private $_buckets = [];
/**
* @var string|array web URL, which is basic for all buckets.
* You can setup this field as array, which will be treated as a route specification for [[\yii\helpers\Url::to()]].
* @since 1.1.0
*/
private $_baseUrl;
/**
* Logs a message.
* @see Logger
* @param string $message message to be logged.
* @param int $level the level of the message.
*/
protected function log($message, $level = Logger::LEVEL_INFO)
{
if (!YII_DEBUG && $level === Logger::LEVEL_INFO) {
return;
}
$category = get_class($this);
Yii::getLogger()->log($message, $level, $category);
}
/**
* Creates bucket instance based on the configuration array.
* @param array $bucketConfig - configuration array for the bucket.
* @return BucketInterface bucket instance.
*/
protected function createBucketInstance(array $bucketConfig)
{
if (!array_key_exists('class', $bucketConfig)) {
$bucketClassName = $this->bucketClassName;
$bucketConfig['class'] = $bucketClassName;
}
$bucketConfig['storage'] = $this;
return Yii::createObject($bucketConfig);
}
/**
* @inheritdoc
*/
public function setBuckets(array $buckets)
{
foreach ($buckets as $bucketKey => $bucketValue) {
if (is_numeric($bucketKey) && is_string($bucketValue)) {
$bucketName = $bucketValue;
$bucketData = [];
} else {
$bucketName = $bucketKey;
$bucketData = $bucketValue;
}
$this->addBucket($bucketName, $bucketData);
}
return true;
}
/**
* @inheritdoc
*/
public function getBuckets()
{
$result = [];
foreach ($this->_buckets as $bucketName => $bucketData) {
$result[$bucketName] = $this->getBucket($bucketName);
}
return $result;
}
/**
* @inheritdoc
*/
public function getBucket($bucketName)
{
if (!array_key_exists($bucketName, $this->_buckets)) {
throw new InvalidParamException("Bucket named '{$bucketName}' does not exists in the file storage '" . get_class($this) . "'");
}
$bucketData = $this->_buckets[$bucketName];
if (is_object($bucketData)) {
$bucketInstance = $bucketData;
} else {
$bucketData['name'] = $bucketName;
$bucketInstance = $this->createBucketInstance($bucketData);
$this->_buckets[$bucketName] = $bucketInstance;
}
return $bucketInstance;
}
/**
* @inheritdoc
*/
public function addBucket($bucketName, $bucketData = [])
{
if (!is_string($bucketName)) {
throw new InvalidParamException('Name of the bucket should be a string!');
}
if (is_scalar($bucketData)) {
throw new InvalidParamException('Data of the bucket should be an bucket object or configuration array!');
}
if (is_object($bucketData)) {
$bucketData->setName($bucketName);
}
$this->_buckets[$bucketName] = $bucketData;
return true;
}
/**
* @inheritdoc
*/
public function hasBucket($bucketName)
{
return array_key_exists($bucketName, $this->_buckets);
}
/**
* @inheritdoc
*/
public function setBaseUrl($baseUrl)
{
if (is_string($baseUrl)) {
$baseUrl = Yii::getAlias($baseUrl);
}
$this->_baseUrl = $baseUrl;
}
/**
* @inheritdoc
*/
public function getBaseUrl()
{
return $this->_baseUrl;
}
}