杨总惠通宝
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
htb_backend/crmeb/services/DownloadImageService.php

101 lines
3.3 KiB

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace crmeb\services;
use think\exception\ValidateException;
class DownloadImageService
{
//存储位置
protected $path = 'attach';
protected $rules = ['thumb', 'thumbWidth', 'thumHeight', 'path'];
/**
* 获取即将要下载的图片扩展名
* @param string $url
* @param string $ex
* @return array|string[]
*/
public function getImageExtname($url = '', $ex = 'jpg')
{
$_empty = ['file_name' => '', 'ext_name' => $ex];
if (!$url) return $_empty;
if (strpos($url, '?')) {
$_tarr = explode('?', $url);
$url = trim($_tarr[0]);
}
$arr = explode('.', $url);
if (!is_array($arr) || count($arr) <= 1) return $_empty;
$ext_name = trim($arr[count($arr) - 1]);
$ext_name = !$ext_name ? $ex : $ext_name;
return ['file_name' => md5($url) . '.' . $ext_name, 'ext_name' => $ext_name];
}
/**
* @param $url
* @param string $name
* @param int $upload_type
* @return mixed
* @author xaboy
* @day 2020/8/1
*/
public function downloadImage($url, $path = 'def', $name = '', $upload_type = null)
{
if (!$name) {
//TODO 获取要下载的文件名称
$downloadImageInfo = $this->getImageExtname($url);
$name = $downloadImageInfo['file_name'];
if (!$name) throw new ValidateException('上传图片不存在');
}
checkSuffix($url);
ob_start();
readfile($url);
$content = ob_get_contents();
ob_end_clean();
$size = strlen(trim($content));
if (!$content || $size <= 2) throw new ValidateException('图片流获取失败');
$upload = UploadService::create($upload_type);
if ($upload->to($path)->stream($content, $name) === false) {
throw new ValidateException('图片下载失败');
}
$imageInfo = $upload->getUploadInfo();
$date['path'] = $imageInfo['dir'];
$date['name'] = $imageInfo['name'];
$date['size'] = $imageInfo['size'];
$date['mime'] = $imageInfo['type'];
return $date;
}
/**
* @param $name
* @param $arguments
* @return $this
*/
public function __call($name, $arguments)
{
if (in_array($name, $this->rules)) {
if ($name === 'path') {
$this->{$name} = $arguments[0] ?? 'attach';
} else {
$this->{$name} = $arguments[0] ?? null;
}
return $this;
} else {
throw new \RuntimeException('Method does not exist' . __CLASS__ . '->' . $name . '()');
}
}
}