CatchUpload.php 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher;
  4. use catchAdmin\system\model\Attachments;
  5. use catchAdmin\system\model\Config;
  6. use catcher\exceptions\FailedException;
  7. use catcher\exceptions\ValidateFailedException;
  8. use think\exception\ValidateException;
  9. use think\facade\Filesystem;
  10. use think\file\UploadedFile;
  11. class CatchUpload
  12. {
  13. /**
  14. * 阿里云
  15. */
  16. public const OSS = 'oss';
  17. /**
  18. * 腾讯云
  19. */
  20. public const QCLOUD = 'qcloud';
  21. /**
  22. * 七牛
  23. */
  24. public const QIQNIU = 'qiniu';
  25. /**
  26. * 驱动
  27. *
  28. * @var string
  29. */
  30. protected $driver;
  31. /**
  32. * 本地
  33. */
  34. public const LOCAL = 'local';
  35. /**
  36. * path
  37. *
  38. * @var string
  39. */
  40. protected $path = '';
  41. public function __construct()
  42. {
  43. $this->initDriver();
  44. }
  45. /**
  46. * upload files
  47. *
  48. * @param UploadedFile $file
  49. * @param null|string|\Closure $rule 文件名规则
  50. * @param array $options 参数
  51. * @return string
  52. * @author JaguarJack
  53. * @email njphper@gmail.com
  54. * @time 2020/1/25
  55. */
  56. public function upload(UploadedFile $file,$rule = null,array $options = []): string
  57. {
  58. $this->initUploadConfig();
  59. $path = Filesystem::disk($this->getDriver())->putFile($this->getPath(), $file,$rule,$options);
  60. if ($path) {
  61. $url = self::getCloudDomain($this->getDriver()) . '/' . $this->getLocalPath($path);
  62. event('attachment', [
  63. 'path' => $path,
  64. 'url' => $url,
  65. 'driver' => $this->getDriver(),
  66. 'file' => $file,
  67. ]);
  68. return $url;
  69. }
  70. throw new FailedException('Upload Failed, Try Again!');
  71. }
  72. /**
  73. * 本地路径
  74. *
  75. * @time 2020年09月07日
  76. * @param $path
  77. * @return string
  78. */
  79. protected function getLocalPath($path)
  80. {
  81. if ($this->getDriver() === self::LOCAL) {
  82. $path = str_replace(root_path('public'), '', \config('filesystem.disks.local.root')) . DIRECTORY_SEPARATOR .$path;
  83. return str_replace('\\', '/', $path);
  84. }
  85. return $path;
  86. }
  87. /**
  88. * 多文件上传
  89. *
  90. * @author JaguarJack
  91. * @email njphper@gmail.com
  92. * @time 2020/2/1
  93. * @param $attachments
  94. * @param null|string|\Closure $rule 文件名规则
  95. * @param array $options 参数
  96. * @return array|string
  97. */
  98. public function multiUpload($attachments,$rule = null,array $options = [])
  99. {
  100. if (!is_array($attachments)) {
  101. return $this->upload($attachments,$rule,$options);
  102. }
  103. $paths = [];
  104. foreach ($attachments as $attachment) {
  105. $paths[] = $this->upload($attachment,$rule,$options);
  106. }
  107. return $paths;
  108. }
  109. /**
  110. * get upload driver
  111. *
  112. * @author JaguarJack
  113. * @email njphper@gmail.com
  114. * @time 2020/1/25
  115. * @return string
  116. */
  117. protected function getDriver(): string
  118. {
  119. if ($this->driver) {
  120. return $this->driver;
  121. }
  122. return \config('filesystem.default');
  123. }
  124. /**
  125. * set driver
  126. *
  127. * @author JaguarJack
  128. * @email njphper@gmail.com
  129. * @time 2020/1/25
  130. * @param $driver
  131. * @throws \Exception
  132. * @return $this
  133. */
  134. public function setDriver($driver): self
  135. {
  136. if (!in_array($driver, [self::OSS, self::QCLOUD, self::QIQNIU, self::LOCAL])) {
  137. throw new \Exception(sprintf('Upload Driver [%s] Not Supported', $driver));
  138. }
  139. $this->driver = $driver;
  140. return $this;
  141. }
  142. /**
  143. *
  144. * @author JaguarJack
  145. * @email njphper@gmail.com
  146. * @time 2020/1/25
  147. * @return string
  148. */
  149. protected function getPath()
  150. {
  151. return $this->path;
  152. }
  153. /**
  154. *
  155. * @author JaguarJack
  156. * @email njphper@gmail.com
  157. * @time 2020/1/25
  158. * @param string $path
  159. * @return $this
  160. */
  161. public function setPath(string $path)
  162. {
  163. $this->path = $path;
  164. return $this;
  165. }
  166. /**
  167. *
  168. * @time 2020年01月25日
  169. * @param UploadedFile $file
  170. * @return array
  171. */
  172. protected function data(UploadedFile $file)
  173. {
  174. return [
  175. 'file_size' => $file->getSize(),
  176. 'mime_type' => $file->getMime(),
  177. 'file_ext' => $file->getOriginalExtension(),
  178. 'filename' => $file->getOriginalName(),
  179. 'driver' => $this->getDriver(),
  180. ];
  181. }
  182. /**
  183. * 验证图片
  184. *
  185. * @author JaguarJack
  186. * @email njphper@gmail.com
  187. * @time 2020/2/1
  188. * @param array $images
  189. * @return $this
  190. */
  191. public function checkImages(array $images)
  192. {
  193. try {
  194. validate(['image' => config('catch.upload.image')])->check($images);
  195. } catch (ValidateException $e) {
  196. throw new ValidateFailedException($e->getMessage());
  197. }
  198. return $this;
  199. }
  200. /**
  201. * 验证文件
  202. *
  203. * @author JaguarJack
  204. * @email njphper@gmail.com
  205. * @time 2020/2/1
  206. * @param array $files
  207. * @return $this
  208. */
  209. public function checkFiles(array $files)
  210. {
  211. try {
  212. validate(['file' => config('catch.upload.file')])->check($files);
  213. } catch (ValidateException $e) {
  214. throw new ValidateFailedException($e->getMessage());
  215. }
  216. return $this;
  217. }
  218. /**
  219. * 验证文件是否存在
  220. *
  221. * @author JaguarJack
  222. * @email njphper@gmail.com
  223. * @time 2020/2/1
  224. * @param $path
  225. * @return $this
  226. */
  227. public function checkFilesExists($path)
  228. {
  229. $driver = \config('filesystem.disks.' . $this->getDriver());
  230. if($driver['type']=='local'){
  231. $url=$driver['root'].'\\'.$path;
  232. return file_exists($url);
  233. }else{
  234. $url = self::getCloudDomain($this->getDriver()) . '/' . $this->getLocalPath($path);
  235. $file_exists = (@file_get_contents($url)) ? true : false;
  236. return $file_exists;
  237. }
  238. return false;
  239. }
  240. /**
  241. * 初始化配置
  242. *
  243. * @time 2020年06月01日
  244. * @return void
  245. */
  246. protected function initUploadConfig()
  247. {
  248. $configModel = app(Config::class);
  249. $upload = $configModel->where('key', 'upload')->find();
  250. if ($upload) {
  251. $disk = app()->config->get('filesystem.disks');
  252. $uploadConfigs = $configModel->getConfig($upload->component);
  253. if (!empty($uploadConfigs)) {
  254. // 读取上传可配置数据
  255. foreach ($uploadConfigs as $key => &$config) {
  256. // $disk[$key]['type'] = $key;
  257. // 腾讯云配置处理
  258. if (strtolower($key) == 'qcloud') {
  259. $config['credentials'] = [
  260. 'appId' => $config['app_id'] ?? '',
  261. 'secretKey' => $config['secret_key'] ?? '',
  262. 'secretId' => $config['secret_id'] ?? '',
  263. ];
  264. $readFromCdn = $config['read_from_cdn'] ?? 0;
  265. $config['read_from_cdn'] = intval($readFromCdn) == 1;
  266. }
  267. // OSS 配置
  268. if (strtolower($key) == 'oss') {
  269. $isCname = $config['is_cname'] ?? 0;
  270. $config['is_cname'] = intval($isCname) == 1;
  271. }
  272. }
  273. // 合并数组
  274. array_walk($disk, function (&$item, $key) use ($uploadConfigs) {
  275. if (!in_array($key, ['public', 'local'])) {
  276. if ($uploadConfigs[$key] ?? false) {
  277. foreach ($uploadConfigs[$key] as $k => $value) {
  278. $item[$k] = $value;
  279. }
  280. }
  281. }
  282. });
  283. // 重新分配配置
  284. app()->config->set([
  285. 'disks' => $disk,
  286. ], 'filesystem');
  287. }
  288. }
  289. }
  290. /**
  291. * 初始化
  292. *
  293. * @time 2020年09月07日
  294. * @return $this
  295. */
  296. protected function initDriver()
  297. {
  298. if ($driver = Utils::config('site.upload')) {
  299. $this->driver = $driver;
  300. }
  301. return $this;
  302. }
  303. /**
  304. * 获取云存储的域名
  305. *
  306. * @time 2020年01月25日
  307. * @param $driver
  308. * @return string
  309. */
  310. public static function getCloudDomain($driver): ?string
  311. {
  312. $driver = \config('filesystem.disks.' . $driver);
  313. switch ($driver['type']) {
  314. case CatchUpload::QIQNIU:
  315. case CatchUpload::LOCAL:
  316. return $driver['domain'];
  317. case CatchUpload::OSS:
  318. return $driver['end_point'];
  319. case CatchUpload::QCLOUD:
  320. return $driver['cdn'];
  321. default:
  322. throw new FailedException(sprintf('Driver [%s] Not Supported.', $driver));
  323. }
  324. }
  325. }