12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /**
- *
- * @author: xaboy<365615158@qq.com>
- * @day: 2017/10/24
- */
- namespace crmeb\services;
- use crmeb\services\upload\Upload;
- /**
- * Class UploadService
- * @package crmeb\services
- */
- class UploadService
- {
- /**
- * @var array
- */
- protected static $upload = [];
- /**
- * @param $type
- * @return Upload
- */
- public static function init($type = null, $mer_id = '')
- {
- if (is_null($type)) {
- $type = (int)sys_config('upload_type', 1, $mer_id);
- }
- if (isset(self::$upload['upload_' . $type])) {
- return self::$upload['upload_' . $type];
- }
- $type = (int)$type;
- $config = [];
- switch ($type) {
- case 2://七牛
- $config = [
- 'accessKey' => sys_config('qiniu_accessKey', '', $mer_id),
- 'secretKey' => sys_config('qiniu_secretKey', '', $mer_id),
- 'uploadUrl' => sys_config('qiniu_uploadUrl', '', $mer_id),
- 'storageName' => sys_config('qiniu_storage_name', '', $mer_id),
- 'storageRegion' => sys_config('qiniu_storage_region', '', $mer_id),
- ];
- break;
- case 3:// oss 阿里云
- $config = [
- 'accessKey' => sys_config('accessKey', '', $mer_id),
- 'secretKey' => sys_config('secretKey', '', $mer_id),
- 'uploadUrl' => sys_config('uploadUrl', '', $mer_id),
- 'storageName' => sys_config('storage_name', '', $mer_id),
- 'storageRegion' => sys_config('storage_region', '', $mer_id),
- ];
- break;
- case 4:// cos 腾讯云
- $config = [
- 'accessKey' => sys_config('tengxun_accessKey', '', $mer_id),
- 'secretKey' => sys_config('tengxun_secretKey', '', $mer_id),
- 'uploadUrl' => sys_config('tengxun_uploadUrl', '', $mer_id),
- 'storageName' => sys_config('tengxun_storage_name', '', $mer_id),
- 'storageRegion' => sys_config('tengxun_storage_region', '', $mer_id),
- ];
- break;
- }
- return self::$upload['upload_' . $type] = new Upload($type, $config);
- }
- }
|