136 lines
4.5 KiB
PHP
136 lines
4.5 KiB
PHP
|
<?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 crmeb\exceptions\AdminException;
|
|||
|
use think\exception\ValidateException;
|
|||
|
use think\facade\Config;
|
|||
|
|
|||
|
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);
|
|||
|
$ext = $downloadImageInfo['ext_name'];
|
|||
|
$name = $downloadImageInfo['file_name'];
|
|||
|
if (!$name) throw new ValidateException('上传图片不存在');
|
|||
|
}else {
|
|||
|
$ext = $this->getImageExtname($name)['ext_name'];
|
|||
|
}
|
|||
|
if (!in_array($ext, Config::get('upload.fileExt'))) {
|
|||
|
throw new AdminException('图片格式错误,无法下载');
|
|||
|
}
|
|||
|
if (strstr($url, 'http://') === false && strstr($url, 'https://') === false) {
|
|||
|
$url = 'http:' . $url;
|
|||
|
}
|
|||
|
$url = str_replace('https://', 'http://', $url);
|
|||
|
if ($this->path == 'attach') {
|
|||
|
$date_dir = date('Y') . DIRECTORY_SEPARATOR . date('m') . DIRECTORY_SEPARATOR . date('d');
|
|||
|
$to_path = $this->path . '/' . $date_dir;
|
|||
|
} else {
|
|||
|
$to_path = $this->path;
|
|||
|
}
|
|||
|
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($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;
|
|||
|
}
|
|||
|
|
|||
|
public function downloadImages($urls, $path = 'def',$upload_type = null)
|
|||
|
{
|
|||
|
if ($urls) {
|
|||
|
try{
|
|||
|
foreach ($urls as $url) {
|
|||
|
$res[] = $this->downloadImage($url,$path,'',$upload_type);
|
|||
|
}
|
|||
|
return $res;
|
|||
|
}catch (\Exception $exception) {
|
|||
|
throw new ValidateException($exception->getMessage());
|
|||
|
}
|
|||
|
}
|
|||
|
return [];
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* @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 . '()');
|
|||
|
}
|
|||
|
}
|
|||
|
}
|