123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?php
- namespace crmeb\basic;
- use crmeb\services\UtilService;
- use think\facade\Config;
- abstract class BaseUpload extends BaseStorage
- {
- /**
- * 图片信息
- * @var array
- */
- protected $fileInfo;
- /**
- * 验证配置
- * @var string
- */
- protected $validate;
- /**
- * 保存路径
- * @var string
- */
- protected $path = '';
- protected function initialize(array $config)
- {
- $this->fileInfo = new \StdClass();
- }
- /**
- * 上传文件路径
- * @param string $path
- * @return $this
- */
- public function to(string $path)
- {
- $this->path = $path;
- return $this;
- }
- /**
- * 获取文件信息
- * @return array
- */
- public function getFileInfo()
- {
- return $this->fileInfo;
- }
- /**
- * 验证合法上传域名
- * @param string $url
- * @return string
- */
- protected function checkUploadUrl(string $url)
- {
- if ($url && strstr($url, 'http') === false) {
- $url = 'http://' . $url;
- }
- return $url;
- }
- /**
- * 获取系统配置
- * @return mixed
- */
- protected function getConfig()
- {
- $config = Config::get($this->configFile . '.stores.' . $this->name, []);
- if (empty($config)) {
- $config['filesize'] = Config::get($this->configFile . '.filesize', []);
- $config['fileExt'] = Config::get($this->configFile . '.fileExt', []);
- $config['fileMime'] = Config::get($this->configFile . '.fileMime', []);
- }
- return $config;
- }
- /**
- * 设置验证规则
- * @param array|null $validate
- * @return $this
- */
- public function validate(?array $validate = null)
- {
- if (is_null($validate)) {
- $validate = $this->getConfig();
- }
- $this->extractValidate($validate);
- return $this;
- }
- /**
- * 提取上传验证
- */
- protected function extractValidate(array $validateArray)
- {
- $validate = [];
- foreach ($validateArray as $key => $value) {
- $validate[] = $key . ':' . (is_array($value) ? implode(',', $value) : $value);
- }
- $this->validate = implode('|', $validate);
- unset($validate);
- }
- /**
- * 提取文件名
- * @param string $path
- * @param string $ext
- * @return string
- */
- protected function saveFileName(string $path = null, string $ext = 'jpg')
- {
- return ($path ? substr(md5($path), 0, 5) : '') . date('YmdHis') . rand(0, 9999) . '.' . $ext;
- }
- /**
- * 获取文件类型和大小
- * @param string $url
- * @param bool $isData
- * @return array
- */
- protected function getFileHeaders(string $url, $isData = true)
- {
- stream_context_set_default(['ssl' => ['verify_peer' => false, 'verify_peer_name' => false]]);
- $header['size'] = 0;
- $header['type'] = 'image/jpeg';
- if (!$isData) {
- return $header;
- }
- try {
- $headerArray = get_headers(str_replace('\\', '/', $url), true);
- if (!isset($headerArray['Content-Length'])) {
- $header['size'] = 0;
- }
- if (!isset($headerArray['Content-Type'])) {
- $header['type'] = 'image/jpeg';
- }
- if (is_array($headerArray['Content-Type']) && count($headerArray['Content-Length']) == 2) {
- $header['size'] = $headerArray['Content-Length'][1];
- }
- if (is_array($headerArray['Content-Type']) && count($headerArray['Content-Type']) == 2) {
- $header['type'] = $headerArray['Content-Type'][1];
- }
- } catch (\Exception $e) {
- }
- return $header;
- }
- /**
- * 获取上传信息
- * @return array
- */
- public function getUploadInfo()
- {
- if (isset($this->fileInfo->filePath)) {
- if (strstr($this->fileInfo->filePath, 'http') === false) {
- $url = request()->domain() . $this->fileInfo->filePath;
- } else {
- $url = $this->fileInfo->filePath;
- }
- $headers = $this->getFileHeaders($url);
- return [
- 'name' => $this->fileInfo->fileName,
- 'size' => $headers['size'] ?? 0,
- 'type' => $headers['type'] ?? 'image/jpeg',
- 'dir' => $this->fileInfo->filePath,
- 'thumb_path' => $this->fileInfo->filePath,
- 'time' => time(),
- ];
- } else {
- return [];
- }
- }
- /**
- * 文件上传
- * @return mixed
- */
- abstract public function move(string $file = 'file');
- /**
- * 文件流上传
- * @return mixed
- */
- abstract public function stream(string $fileContent, string $key = null);
- /**
- * 删除文件
- * @return mixed
- */
- abstract public function delete(string $filePath);
- /**
- * 实例化上传
- * @return mixed
- */
- abstract protected function app();
- }
|