Local.php
2.9 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
<?php
// +----------------------------------------------------------------------
// | bronet [ 以客户为中心 以奋斗者为本 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.bronet.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +---------------------------------------------------------------------
// | Author: Dean <zxxjjforever@163.com>
// +----------------------------------------------------------------------
namespace cmf\lib\storage;
class Local
{
private $config;
/**
* Local constructor.
* @param $config
*/
public function __construct($config)
{
$this->config = $config;
}
/**
* 文件上传
* @param string $file 上传文件路径
* @param string $filePath 文件路径相对于upload目录
* @param string $fileType 文件类型,image,video,audio,file
* @param array $param 额外参数
* @return mixed
*/
public function upload($file, $filePath = '', $fileType = 'image', $param = null)
{
return [
'preview_url' => $this->getPreviewUrl($file),
'url' => $this->getUrl($file),
];
}
/**
* 获取图片地址
* @param string $file
* @param string $style
* @return mixed
*/
public function getImageUrl($file, $style = '')
{
return $this->_getWebRoot() . '/upload/' . $file;
}
/**
* 获取图片预览地址
* @param string $file
* @param string $style
* @return mixed
*/
public function getPreviewUrl($file, $style = '')
{
return $this->_getWebRoot() . '/upload/' . $file;
}
/**
* 获取文件地址
* @param string $file
* @param string $style
* @return mixed
*/
public function getUrl($file, $style = '')
{
return $this->_getWebRoot() . '/upload/' . $file;
}
/**
* 获取文件下载地址
* @param string $file
* @param int $expires
* @return mixed
*/
public function getFileDownloadUrl($file, $expires = 3600)
{
$url = $this->getUrl($file);
return $url;
}
/**
* 获取本地存储域名
* @return mixed
*/
public function getDomain()
{
return request()->host();
}
/**
* 获取文件相对上传目录路径
* @param string $url
* @return mixed
*/
public function getFilePath($url)
{
$storageDomain = $this->getDomain();
$url = preg_replace("/^http(s)?:\/\/$storageDomain/", '', $url);
$url = preg_replace("/^\/upload\//", '', $url);
return $url;
}
private function _getWebRoot()
{
return cmf_get_domain() . cmf_get_root();
}
}