暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

QiniuyunModel.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-04-23
  12. */
  13. namespace weapp\Qiniuyun\model;
  14. use think\Model;
  15. use think\Db;
  16. //引入七牛云的相关文件
  17. use Qiniu\Auth as Auth;
  18. use Qiniu\Storage\BucketManager;
  19. use Qiniu\Storage\UploadManager;
  20. use Qiniu\Http\Client;
  21. use Qiniu\Http\Error;
  22. /**
  23. * 模型
  24. */
  25. class QiniuyunModel extends Model
  26. {
  27. //初始化
  28. protected function initialize()
  29. {
  30. $this->weapp_db = Db::name('weapp');
  31. // 需要调用`Model`的`initialize`方法
  32. parent::initialize();
  33. require_once ROOT_PATH.'weapp/Qiniuyun/vendor/Qiniu/autoload.php';
  34. }
  35. // 获取bucket列表
  36. public function listBucket($Qiniuyun=null){
  37. // 判断传入的七牛云配置信息并实例化七牛云操作类
  38. if (!empty($Qiniuyun) && is_array($Qiniuyun)) {
  39. $auth = new Auth($Qiniuyun['access_key'], $Qiniuyun['secret_key']);
  40. }else{
  41. $data = $this->weapp_db->where('code','Qiniuyun')->field('data')->find();
  42. $Qiniuyun = json_decode($data['data'], true);
  43. $auth = new Auth($Qiniuyun['access_key'], $Qiniuyun['secret_key']);
  44. }
  45. // 查询空间
  46. $url = "http://rs.qbox.me/buckets";
  47. $headers = $auth->authorization($url);
  48. $ret = Client::get($url, $headers);
  49. // 结果返回
  50. $result = json_decode(json_encode($ret),true);
  51. $body = json_decode($result['body'],true);
  52. if ('200' == $result['statusCode']) {
  53. if (!empty($body)) {
  54. return $body;
  55. }else{
  56. return false;
  57. }
  58. }else{
  59. return 'false';
  60. }
  61. }
  62. // 生成bucket
  63. public function createBucket($Qiniuyun,$region="z0"){
  64. if (!is_array($Qiniuyun)) {
  65. return ['code'=>0, 'msg'=>'AccessKey或SecretKey可能配置有误,请检查!'];
  66. }
  67. // 七牛云配置信息并实例化七牛云操作类
  68. $auth = new Auth($Qiniuyun['access_key'], $Qiniuyun['secret_key']);
  69. // bucket加密
  70. $find = array('+', '/');
  71. $replace = array('-', '_');
  72. $bucket = str_replace($find, $replace, base64_encode($Qiniuyun['bucket']));
  73. // 生成bucket空间
  74. $url = "http://rs.qiniu.com/mkbucketv2/$bucket/region/$region";
  75. $headers = $auth->authorization($url);
  76. $ret = Client::post($url,"", $headers);
  77. // 结果返回
  78. $result = json_decode(json_encode($ret),true);
  79. if ('614' == $result['statusCode']) {
  80. // 这个状态表示七牛云上已有相同的存储空间名,生成失败,但是返回TRUE,添加成功时,会获取七牛云相关存储空间回来
  81. return ['code'=>1, 'msg'=>'配置成功'];
  82. }
  83. if ('200' == $result['statusCode']) {
  84. return ['code'=>1, 'msg'=>'配置成功'];
  85. }else{
  86. $msg = $this->codeList($result['statusCode']);
  87. return ['code'=>0, 'msg'=>$msg];
  88. }
  89. }
  90. // 获取bucket空间域名
  91. public function listBucketDomain($Qiniuyun=null){
  92. // 判断传入的七牛云配置信息并实例化七牛云操作类
  93. if (!empty($Qiniuyun) && is_array($Qiniuyun)) {
  94. $auth = new Auth($Qiniuyun['access_key'], $Qiniuyun['secret_key']);
  95. $bucket = $Qiniuyun['bucket'];
  96. }else{
  97. $data = $this->weapp_db->where('code','Qiniuyun')->field('data')->find();
  98. $Qiniuyun = json_decode($data['data'], true);
  99. $auth = new Auth($Qiniuyun['access_key'], $Qiniuyun['secret_key']);
  100. $bucket = $Qiniuyun['bucket'];
  101. }
  102. // 查询空间
  103. $url = "http://api.qiniu.com/v6/domain/list?tbl=$bucket";
  104. $headers = $auth->authorization($url);
  105. $ret = Client::get($url, $headers);
  106. // 结果返回
  107. $result = json_decode(json_encode($ret),true);
  108. $body = json_decode($result['body'],true);
  109. if ('200' == $result['statusCode']) {
  110. if (!empty($body)) {
  111. return $body;
  112. }else{
  113. return false;
  114. }
  115. }else{
  116. return false;
  117. }
  118. }
  119. // 判断bucket是否已存在
  120. public function doBucketExist($Qiniuyun){
  121. $result = $this->listBucket($Qiniuyun);
  122. if ('false' != $result) {
  123. if(in_array($Qiniuyun['bucket'], $result)){
  124. return '存储空间名已经存在,请检查!';
  125. }
  126. }
  127. return false;
  128. }
  129. /**
  130. * 参数说明:
  131. * $config 配置信息
  132. * $images 本地图片地址
  133. * $fileName 文件路径名
  134. * $is_tcp 是否需要加上域名协议
  135. * 返回说明:
  136. * return false 没有配置齐全
  137. * return true 同步成功
  138. */
  139. public function Synchronize($config = [], $images = null,$is_tcp = true)
  140. {
  141. static $qnyConfig = null;
  142. // 若没有传入配信信息则读取数据库
  143. if (!empty($config)) {
  144. $qnyConfig = $config;
  145. } else if (null == $qnyConfig) {
  146. $data = Db::name('weapp')->where('code','Qiniuyun')->field('data')->find();
  147. $qnyConfig = json_decode($data['data'], true);
  148. }
  149. /*支持子目录*/
  150. $images = preg_replace('#^(/[/\w]+)?(/uploads/)#i', '$2', $images);
  151. // 配置为空则返回原图片路径
  152. if (empty($qnyConfig) || empty($qnyConfig['domain'])) {
  153. $result = [
  154. 'url' => ROOT_DIR . $images,
  155. 'state' => 'SUCCESS',
  156. ];
  157. return $result;
  158. }
  159. //引入七牛云的相关文件
  160. weapp_vendor('Qiniu.src.Qiniu.Auth', 'Qiniuyun');
  161. weapp_vendor('Qiniu.src.Qiniu.Storage.UploadManager', 'Qiniuyun');
  162. require_once ROOT_PATH.'weapp/Qiniuyun/vendor/Qiniu/autoload.php';
  163. // 配置信息
  164. $accessKey = $qnyConfig['access_key'];
  165. $secretKey = $qnyConfig['secret_key'];
  166. $bucket = $qnyConfig['bucket'];
  167. $domain = $qnyConfig['domain'];
  168. // 构建鉴权对象
  169. $auth = new \Qiniu\Auth($accessKey, $secretKey);
  170. // 生成上传 Token
  171. $token = $auth->uploadToken($bucket);
  172. // 要上传文件的本地路径
  173. $filePath = realpath('.'.$images);
  174. // 上传到七牛后保存的文件名
  175. $key = ltrim($images, '/');
  176. // 初始化 UploadManager 对象并进行文件的上传。
  177. $uploadMgr = new \Qiniu\Storage\UploadManager;
  178. // 调用 UploadManager 的 putFile 方法进行文件的上传。
  179. list($ret, $err) = $uploadMgr->putFile($token, $key, $filePath);
  180. // list($ret, $err) = $uploadMgr->put($token, $key, $filePath);
  181. if (empty($err) || $err === null) {
  182. $tcp = '//';
  183. if (!empty($is_tcp)) {
  184. $web_is_https = tpCache('global.web_is_https');
  185. $tcp_key = !empty($qnyConfig['tcp']) ? $qnyConfig['tcp'] : '';
  186. if ($web_is_https && $tcp_key == 1){ //cms为https而图片存储路径为http,图片必须带协议头
  187. switch ($tcp_key) {
  188. case '2':
  189. $tcp = 'https://';
  190. break;
  191. case '3':
  192. $tcp = '//';
  193. break;
  194. case '1':
  195. default:
  196. $tcp = 'http://';
  197. break;
  198. }
  199. }
  200. }
  201. // 是否开启删除本地图片
  202. if (!empty($qnyConfig['local_save'])) {
  203. $this->del_local('/'.ltrim($images, '/'));
  204. }
  205. $images = $tcp.$domain.'/'.ltrim($images, '/');
  206. }
  207. return [
  208. 'state' => 'SUCCESS',
  209. 'url' => $images,
  210. ];
  211. }
  212. /**
  213. * 对象存储与本地存储平滑切换展示
  214. * @param array $qnyConfig [description]
  215. * @param array $parseData [description]
  216. * @param string $images [description]
  217. * @return [type] [description]
  218. */
  219. public function handle_subdir_pic($qnyConfig = [], $parseData = [], $images = '')
  220. {
  221. if ($qnyConfig['domain'] == $parseData['host']) {
  222. $tcp = !empty($qnyConfig['tcp']) ? $qnyConfig['tcp'] : '';
  223. switch ($tcp) {
  224. case '2':
  225. $tcp = 'https://';
  226. break;
  227. case '3':
  228. $tcp = '//';
  229. break;
  230. case '1':
  231. default:
  232. $tcp = 'http://';
  233. break;
  234. }
  235. $images = $tcp.$qnyConfig['domain'].$parseData['path'];
  236. }else{
  237. // 若切换了存储空间或访问域名,与数据库中存储的图片路径域名不一致时,访问本地路径,保证图片正常
  238. $images = ROOT_DIR.$parseData['path'];
  239. }
  240. return $images;
  241. }
  242. /**
  243. * 未开启同步本地功能,并删除本地图片
  244. * @return [type] [description]
  245. */
  246. public function del_local($filename = '')
  247. {
  248. $arr = explode('?', $filename);
  249. $filename = current($arr);
  250. $arr = explode('/', $filename);
  251. if (!empty($arr)) {
  252. $total = count($arr);
  253. $filename = $arr[$total - 1];
  254. $filename = str_replace('\\', '', $filename);
  255. unset($arr[$total - 1]);
  256. $filepath = implode('/', $arr);
  257. if (!preg_match('/^([\w\-\_\/]+)$/i', $filepath)) {
  258. return false;
  259. }
  260. $filename = $filepath.'/'.$filename;
  261. $filename= trim($filename,'.');
  262. $filename = preg_replace('#^(/[/\w]+)?(/public/upload/|/uploads/|/public/static/admin/logo/)#i', '$2', $filename);
  263. if(eyPreventShell($filename) && !empty($filename) && @file_exists('.'.$filename)){
  264. $filename_new = trim($filename,'/');
  265. $filetype = preg_replace('/^(.*)\.(\w+)$/i', '$2', $filename);
  266. $phpfile = strtolower(strstr($filename,'.php')); //排除PHP文件
  267. $size = getimagesize($filename_new);
  268. $fileInfo = explode('/',$size['mime']);
  269. if((file_exists($filename_new) && $fileInfo[0] != 'image') || $phpfile || !in_array($filetype, explode(',', config('global.image_ext')))){
  270. return false;
  271. }
  272. if( @unlink('.'.$filename) ){
  273. return true;
  274. }else{
  275. return false;
  276. }
  277. }
  278. }
  279. return true;
  280. }
  281. public function codeList($code = 200)
  282. {
  283. $codeList = [
  284. 298 => '部分操作执行成功',
  285. 400 => '请求报文格式错误',
  286. 401 => '认证授权失败',
  287. 403 => '权限不足,拒绝访问',
  288. 404 => '空间或镜像源资源不存在!',
  289. 405 => '请求方式错误',
  290. 406 => '上传的数据 CRC32 校验错误',
  291. 413 => '请求资源大小大于指定的最大值',
  292. 419 => '用户账号被冻结',
  293. 478 => '镜像源服务器出现异常',
  294. 502 => '错误网关',
  295. 503 => '服务端不可用',
  296. 504 => '服务端操作超时',
  297. 573 => '单个资源访问频率过高',
  298. 579 => '上传成功但是七牛服务器异常',
  299. 599 => '服务端操作失败',
  300. 608 => '资源内容被修改',
  301. 612 => '指定资源不存在或已被删除',
  302. 614 => '目标资源已存在',
  303. 630 => '已创建的空间数量达到上限,无法创建新空间',
  304. 631 => '指定空间不存在',
  305. 640 => '调用列举资源(list)接口时,指定非法的marker参数',
  306. 701 => '在断点续上传过程中,后续上传接收地址不正确或ctx信息已过期',
  307. ];
  308. return !empty($codeList[$code]) ? $codeList[$code] : 'AccessKey或SecretKey可能配置有误!';
  309. }
  310. }