-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathService.php
57 lines (45 loc) · 1.15 KB
/
Service.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
<?php
namespace ObjectStorage;
use RuntimeException;
class Service
{
private $storageadapter;
private $prefix = '';
public function __construct($storageadapter)
{
$this->storageadapter = $storageadapter;
}
public function setKeyPrefix($prefix)
{
$this->prefix = $prefix;
}
public function getKeyPrefix()
{
return $this->prefix;
}
public function get($key)
{
return $this->storageadapter->getData($this->prefix . $key);
}
public function set($key, $data)
{
$this->storageadapter->setData($this->prefix . $key, $data);
}
public function delete($key)
{
$this->storageadapter->deleteData($this->prefix . $key);
}
public function upload($key, $filename)
{
if (!file_exists($filename)) {
throw new RuntimeException('File not found: ' . $filename);
}
$data = file_get_contents($filename);
$this->set($this->prefix . $key, $data);
}
public function download($key, $filename)
{
$data = $this->get($this->prefix . $key);
file_put_contents($filename, $data);
}
}