forked from sebastianfeldmann/phpbu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzureBlob.php
More file actions
255 lines (229 loc) · 6.98 KB
/
Copy pathAzureBlob.php
File metadata and controls
255 lines (229 loc) · 6.98 KB
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
<?php
namespace phpbu\App\Backup\Sync;
use AzureOss\Storage\Blob\BlobContainerClient;
use AzureOss\Storage\Blob\BlobServiceClient;
use phpbu\App\Backup\Collector;
use phpbu\App\Backup\Path;
use phpbu\App\Backup\Target;
use phpbu\App\Result;
use phpbu\App\Util;
/**
* Azure Blob Sync
*
* @package phpbu
* @subpackage Backup
* @author Jonathan Bouzekri <jonathan.bouzekri@gmail.com>
* @author Sebastian Feldmann <sebastian@phpbu.de>
* @copyright Sebastian Feldmann <sebastian@phpbu.de>
* @license https://opensource.org/licenses/MIT The MIT License (MIT)
* @link https://phpbu.de/
* @since Class available since Release 5.2.7
*/
class AzureBlob implements Simulator
{
use Cleanable;
/**
* Azure Blob container client.
*
* @var BlobContainerClient
*/
protected $client;
/**
* Azure Blob Connection String
*
* @var string
*/
private $connectionString;
/**
* Azure Blob Container Name
*
* @var string
*/
private $containerName;
/**
* Azure Blob remote path
*
* @var string
*/
protected $path;
/**
* Azure Blob remote raw path
*
* @var string
*/
protected $pathRaw;
/**
* Unix timestamp of generating path from placeholder.
*
* @var int
*/
protected $time;
/**
* Configure the sync.
*
* @see \phpbu\App\Backup\Sync::setup()
* @param array $config
* @throws \phpbu\App\Backup\Sync\Exception
* @throws \phpbu\App\Exception
*/
public function setup(array $config)
{
if (!class_exists('\\AzureOss\\Storage\\Blob\\BlobServiceClient')) {
throw new Exception('Azure Blob Storage SDK not loaded: use composer to install ' .
'"azure-oss/storage"');
}
// check for mandatory options
$this->validateConfig($config, ['connection_string', 'container_name', 'path']);
$cleanedPath = Util\Path::withoutTrailingSlash(Util\Path::withoutLeadingSlash($config['path']));
$this->time = time();
$this->connectionString = $config['connection_string'];
$this->containerName = $config['container_name'];
$this->path = Util\Path::replaceDatePlaceholders($cleanedPath, $this->time);
$this->pathRaw = $cleanedPath;
$this->setUpCleanable($config);
}
/**
* Make sure all mandatory keys are present in given config.
*
* @param array $config
* @param array $keys
* @throws Exception
*/
protected function validateConfig(array $config, array $keys)
{
foreach ($keys as $option) {
if (!Util\Arr::isSetAndNotEmptyString($config, $option)) {
throw new Exception($option . ' is mandatory');
}
}
}
/**
* Execute the sync.
*
* @see \phpbu\App\Backup\Sync::sync()
* @param \phpbu\App\Backup\Target $target
* @param \phpbu\App\Result $result
* @throws \phpbu\App\Backup\Sync\Exception
*/
public function sync(Target $target, Result $result)
{
$this->client = $this->createClient();
if (!$this->doesContainerExist($this->client)) {
$result->debug('create blob container');
$this->createContainer($this->client);
}
try {
$this->upload($target, $this->client);
$result->debug('upload: done');
// run remote cleanup
$this->cleanup($target, $result);
} catch (\Exception $e) {
throw new Exception($e->getMessage(), 0, $e);
}
}
/**
* Create the Azure Blob container client.
*
* @return \AzureOss\Storage\Blob\BlobContainerClient
*/
protected function createClient() : BlobContainerClient
{
return BlobServiceClient::fromConnectionString($this->connectionString)
->getContainerClient($this->containerName);
}
/**
* Creates collector for Azure Blob Storage
*
* @param \phpbu\App\Backup\Target $target
* @return \phpbu\App\Backup\Collector
*/
protected function createCollector(Target $target) : Collector
{
$path = new Path($this->pathRaw, $this->time);
return new Collector\AzureBlob($target, $path, $this->client);
}
/**
* Simulate the sync execution.
*
* @param \phpbu\App\Backup\Target $target
* @param \phpbu\App\Result $result
*/
public function simulate(Target $target, Result $result)
{
$result->debug(
'sync backup to Azure Blob' . PHP_EOL
. ' connectionString: ********' . PHP_EOL
. ' containerName: ' . $this->containerName . PHP_EOL
);
$this->simulateRemoteCleanup($target, $result);
}
/**
* Check if an Azure Blob Storage Container exists
*
* @param \AzureOss\Storage\Blob\BlobContainerClient $client
* @return bool
*/
protected function doesContainerExist(BlobContainerClient $client): bool
{
return $client->exists();
}
/**
* Create an Azure Storage Container
*
* @param \AzureOss\Storage\Blob\BlobContainerClient $client
*/
protected function createContainer(BlobContainerClient $client)
{
$client->create();
}
/**
* Upload backup to Azure Blob Storage
*
* @param \phpbu\App\Backup\Target $target
* @param \AzureOss\Storage\Blob\BlobContainerClient $client
* @throws \phpbu\App\Backup\Sync\Exception
* @throws \phpbu\App\Exception
*/
protected function upload(Target $target, BlobContainerClient $client)
{
$source = $this->getFileHandle($target->getPathname(), 'r');
$this->uploadBlob($client, $this->getUploadPath($target), $source);
}
/**
* Upload a single blob to the container.
*
* @param \AzureOss\Storage\Blob\BlobContainerClient $client
* @param string $path
* @param resource $source
*/
protected function uploadBlob(BlobContainerClient $client, string $path, $source)
{
$client->getBlobClient($path)->upload($source);
}
/**
* Open stream and validate it.
*
* @param string $path
* @param string $mode
* @return resource
* @throws \phpbu\App\Backup\Sync\Exception
*/
protected function getFileHandle($path, $mode)
{
$handle = fopen($path, $mode);
if (!is_resource($handle)) {
throw new Exception('fopen failed: could not open stream ' . $path);
}
return $handle;
}
/**
* Get the azure blob upload path
*
* @param \phpbu\App\Backup\Target $target
* @return string
*/
public function getUploadPath(Target $target)
{
return (!empty($this->path) ? $this->path . '/' : '') . $target->getFilename();
}
}