Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Uploadimgnew.php 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Page;
  16. class Uploadimgnew extends Base
  17. {
  18. public $image_type = '';
  19. private $imageExt = '';
  20. private $php_sessid = '';
  21. private $image_accept = '';
  22. /**
  23. * 析构函数
  24. */
  25. function __construct()
  26. {
  27. parent::__construct();
  28. $this->imageExt = config('global.image_ext');
  29. $this->image_type = tpCache('basic.image_type');
  30. $this->image_type = !empty($this->image_type) ? str_replace('|', ',', $this->image_type) : $this->imageExt;
  31. $this->image_accept = image_accept_arr($this->image_type);
  32. $this->php_sessid = !empty($_COOKIE['PHPSESSID']) ? $_COOKIE['PHPSESSID'] : '';
  33. }
  34. /**
  35. * 通用的上传图片
  36. */
  37. public function upload()
  38. {
  39. $assign_data = [];
  40. $type_id = input('param.type_id/d');
  41. $assign_data['type_id'] = $type_id;
  42. // 基础配置 - 附件配置
  43. $basicConfig = tpCache('basic');
  44. $assign_data['basicConfig'] = $basicConfig;
  45. $func = input('param.func/s', 'undefined');
  46. $path = input('path','allimg');
  47. $num = input('num/d', 1);
  48. $is_water = input('is_water/d', 1);
  49. $default_size = intval($basicConfig['file_size'] * 1024 * 1024); // 单位为b
  50. $size = input('size/d'); // 单位为kb
  51. $size = empty($size) ? $default_size : $size*1024;
  52. $info = array(
  53. 'num' => $num,
  54. 'size' => $size,
  55. 'input' => input('input'),
  56. 'func' => $func,
  57. 'path' => $path,
  58. 'is_water' => $is_water,
  59. );
  60. $assign_data['info'] = $info;
  61. $assign_data['default_upload_list_url'] = url('Uploadimgnew/get_upload_list', ['type_id'=>0, 'info'=>base64_encode(json_encode($info))]);
  62. $assign_data['current_upload_list_url'] = url('Uploadimgnew/get_upload_list', ['type_id'=>$type_id, 'info'=>base64_encode(json_encode($info))]);
  63. // 侧边栏我的分组
  64. $uploads_total_list = Db::name('uploads')->field('type_id, count(img_id) as total')->where(['is_del'=>0])->group('type_id')->getAllWithIndex('type_id');
  65. $uploads_type_list = Db::name('uploads_type')->order('id asc')->select();
  66. foreach ($uploads_type_list as $key => $val) {
  67. $val['total'] = !empty($uploads_total_list[$val['id']]['total']) ? $uploads_total_list[$val['id']]['total'] : 0;
  68. $val['url'] = url('Uploadimgnew/get_upload_list', ['type_id'=>$val['id'], 'info'=>base64_encode(json_encode($info))]);
  69. $uploads_type_list[$key] = $val;
  70. }
  71. $assign_data['uploads_type_list'] = $uploads_type_list;
  72. $assign_data['uploads_total_list'] = $uploads_total_list;
  73. // 是否已经同步过
  74. $assign_data['admin_logic_1639031991'] = tpSetting('syn.admin_logic_1639031991', [], 'cn');
  75. $this->assign($assign_data);
  76. return $this->fetch('uploadimgnew/upload');
  77. }
  78. /**
  79. * 获取左侧树形的目录结构
  80. * @return [type] [description]
  81. */
  82. public function ajax_get_treedir()
  83. {
  84. // 侧边栏图片目录
  85. $dirArr = $this->getDirImg('uploads');
  86. $dirArr2 = [];
  87. foreach ($dirArr as $key => $val) {
  88. $dirArr2[$val['id']] = $val['dirpath'];
  89. }
  90. foreach ($dirArr as $key => $val) {
  91. $dirfileArr = glob("{$val['dirpath']}/*");
  92. if (empty($dirfileArr)) {
  93. empty($dirfileArr) && @rmdir($val['dirpath']);
  94. $dirArr[$key] = [];
  95. continue;
  96. }
  97. /*图库显示数量*/
  98. $countFile = 0;
  99. $image_type_tmp = str_replace(',', '|', $this->image_type);
  100. foreach ($dirfileArr as $_k => $_v) {
  101. if (preg_match('/\.('.$image_type_tmp.')$/i', $_v)) {
  102. $countFile++;
  103. }
  104. }
  105. /*end*/
  106. $dirname = preg_replace('/([^\/]+)$/i', '', $val['dirpath']);
  107. $arr_key = array_search(trim($dirname, '/'), $dirArr2);
  108. if (!empty($arr_key)) {
  109. $dirArr[$key]['pId'] = $arr_key;
  110. } else {
  111. $dirArr[$key]['pId'] = 0;
  112. }
  113. $dirArr[$key]['name'] = preg_replace('/^(.*)\/([^\/]+)$/i', '${2}', $val['dirpath']);
  114. !empty($countFile) && $dirArr[$key]['name'] .= "({$countFile})"; // 图库显示数量
  115. }
  116. $zNodes = json_encode($dirArr,true);
  117. $this->success('请求成功', null, ['zNodes'=>$zNodes]);
  118. }
  119. /**
  120. * 右侧上传图片记录的列表显示
  121. */
  122. public function get_upload_list()
  123. {
  124. $assign_data = [];
  125. $type_id = input('param.type_id/d', 0);
  126. $assign_data['type_id'] = $type_id;
  127. $pageNum = input('param.p/d', 1);
  128. $assign_data['pageNum'] = $pageNum;
  129. $info = input('param.info/s');
  130. $info = json_decode(base64_decode($info), true);
  131. $info['upload'] = url('Ueditor/imageUp',array('savepath'=>$info['path'],'type_id'=>$type_id,'pictitle'=>'banner','dir'=>'images','is_water'=>$info['is_water']));
  132. $info['image_accept'] = $this->image_accept;
  133. $assign_data['info'] = $info;
  134. $Where = [];
  135. // 时间检索条件查询
  136. $post_eytime = input('eytime/s');
  137. $EyTime = !empty($post_eytime) ? $post_eytime : '';
  138. $assign_data['eytime'] = $EyTime;
  139. if (!empty($EyTime)) {
  140. $EyTime = explode(' - ', $EyTime);
  141. // 开始日期
  142. $Begin = 0;
  143. if (!empty($EyTime[0])) {
  144. if (stristr($EyTime[0], ':')) { // 包含了时分秒
  145. $Begin = strtotime($EyTime[0]);
  146. } else {
  147. $Begin = strtotime($EyTime[0]." 00:00:00");
  148. }
  149. }
  150. // 结束日期
  151. $End = 0;
  152. if (!empty($EyTime[1])) {
  153. if (stristr($EyTime[1], ':')) { // 包含了时分秒
  154. $End = strtotime($EyTime[1]);
  155. } else {
  156. $End = strtotime($EyTime[1]." 23:59:59");
  157. }
  158. }
  159. if ($Begin > 0 && $End > 0) {
  160. $Where['add_time'] = array('between', "$Begin, $End");
  161. } else if ($Begin > 0) {
  162. $Where['add_time'] = array('egt', $Begin);
  163. } else if ($End > 0) {
  164. $Where['add_time'] = array('elt', $End);
  165. }
  166. }
  167. $Where['type_id'] = $type_id;
  168. $Where['is_del'] = 0;
  169. $countimg = Db::name('uploads')->where($Where)->count('img_id');
  170. $pageObj = new Page($countimg, 10);
  171. // 列表显示
  172. $imglist = Db::name('uploads')
  173. ->where($Where)
  174. ->order('img_id desc')
  175. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  176. ->select();
  177. foreach ($imglist as $key => $val) {
  178. $val['image_url'] = handle_subdir_pic($val['image_url']);
  179. empty($val['title']) && $val['title'] = preg_replace('/^(.*)\/([^\/]+)$/i', '${2}', $val['image_url']);
  180. $imglist[$key] = $val;
  181. }
  182. $assign_data['imglist'] = $imglist;
  183. $assign_data['pageStr'] = $pageObj->show();
  184. /*----------------------------第三方存储插件 start------------------------*/
  185. $storageTitle = '本地服务器';
  186. $weappList = Db::name('weapp')->where(['status' => 1])
  187. ->cache(true, EYOUCMS_CACHE_TIME, 'weapp')
  188. ->getAllWithIndex('code');
  189. if (!empty($weappList['Qiniuyun']['data'])) {
  190. $qnyData = json_decode($weappList['Qiniuyun']['data'], true);
  191. if (!empty($qnyData['bucket'])) {
  192. $storageTitle = '七牛云';
  193. }
  194. } else if (!empty($weappList['AliyunOss']['data'])) {
  195. $ossData = json_decode($weappList['AliyunOss']['data'], true);
  196. if (!empty($ossData['bucket'])) {
  197. $storageTitle = '阿里云OSS';
  198. }
  199. } else if (!empty($weappList['Cos']['data'])) {
  200. $cosData = json_decode($weappList['Cos']['data'], true);
  201. if (!empty($cosData['secretName'])) {
  202. $storageTitle = '腾讯云COS';
  203. }
  204. }
  205. $assign_data['storageTitle'] = $storageTitle;
  206. /*----------------------------第三方存储插件 start------------------------*/
  207. // 分组图片总数
  208. $assign_data['countimg'] = Db::name('uploads')->where(['type_id' => $type_id, 'is_del' => 0])->count('img_id');
  209. // 标记是否已经同步导入数据
  210. $assign_data['admin_logic_1639031991'] = tpSetting('syn.admin_logic_1639031991', [], 'cn');
  211. $this->assign($assign_data);
  212. return $this->fetch('uploadimgnew/get_upload_list');
  213. }
  214. /**
  215. * 右侧图片目录的图片列表显示
  216. */
  217. public function get_dir_imglist($images_path = 'uploads')
  218. {
  219. $assign_data = [];
  220. if ('uploads' != $images_path && !preg_match('#^(uploads)/(.*)$#i', $images_path)) {
  221. $this->error('禁止访问');
  222. }
  223. $num = input('num/d', 1);
  224. $info = array(
  225. 'num' => $num,
  226. );
  227. $assign_data['info'] = $info;
  228. // 常用图片
  229. $common_pic = [];
  230. $arr1 = explode('/', $images_path);
  231. if (1 >= count($arr1)) { // 只有一级目录才显示常用图片
  232. $where = [
  233. 'lang' => $this->admin_lang,
  234. ];
  235. $common_pic = Db::name('common_pic')->where($where)->order('id desc')->limit(10)->select();
  236. foreach ($common_pic as $key => $val) {
  237. $imageInfo = [];
  238. if (!is_http_url($val['pic_path'])) {
  239. $pic_path = handle_subdir_pic($val['pic_path'], 'img', false, true);
  240. if (!file_exists('.'.$pic_path)) {
  241. unset($common_pic[$key]);
  242. continue;
  243. }
  244. $imageInfo = @getimagesize('.'.$pic_path);
  245. $val['pic_path'] = ROOT_DIR.$pic_path;
  246. }
  247. $val['title'] = preg_replace('/^(.*)\/([^\/]+)$/i', '${2}', $val['pic_path']);
  248. $val['width'] = !empty($imageInfo[0]) ? intval($imageInfo[0]) : 0;
  249. $val['height'] = !empty($imageInfo[1]) ? intval($imageInfo[1]) : 0;
  250. $common_pic[$key] = $val;
  251. }
  252. }
  253. $assign_data['common_pic'] = $common_pic;
  254. // 图片列表
  255. $list = [];
  256. $images_data = glob($images_path.'/*');
  257. if (!empty($images_data)) {
  258. // 图片类型数组
  259. $image_ext = explode(',', $this->imageExt);
  260. // 处理图片
  261. foreach ($images_data as $key => $file) {
  262. $fileArr = explode('.', $file);
  263. $ext = end($fileArr);
  264. $ext = strtolower($ext);
  265. if (in_array($ext, $image_ext)) {
  266. $info = [];
  267. $imageInfo = @getimagesize('./'.$file);
  268. $info['width'] = !empty($imageInfo[0]) ? intval($imageInfo[0]) : 0;
  269. $info['height'] = !empty($imageInfo[1]) ? intval($imageInfo[1]) : 0;
  270. $info['pic_path'] = ROOT_DIR.'/'.$file;
  271. $info['add_time'] = @filemtime($file);
  272. empty($info['add_time']) && $info['add_time'] = getTime();
  273. $info['title'] = preg_replace('/^(.*)\/([^\/]+)$/i', '${2}', $file);
  274. $list[] = $info;
  275. }
  276. }
  277. if (!empty($list)) {
  278. // 图片选择的时间从大到小排序
  279. $list_time = get_arr_column($list, 'add_time');
  280. array_multisort($list_time, SORT_DESC, $list);
  281. }
  282. }
  283. // 每页显示的图片
  284. $count = count($list); // 总条数
  285. $pagesize = 10; // 每页多少条
  286. $page = input('param.p/d', 1);
  287. $start = ($page - 1) * $pagesize; // 偏移量,当前页-1乘以每页显示条数
  288. $list = array_slice($list, $start, $pagesize);
  289. $assign_data['list'] = $list;
  290. // 分页码
  291. $pageObj = new Page($count, $pagesize);
  292. $assign_data['pageStr'] = $pageObj->show();
  293. $this->assign($assign_data);
  294. return $this->fetch('uploadimgnew/get_dir_imglist');
  295. }
  296. /*
  297. * 删除上传的图片
  298. */
  299. public function delupload()
  300. {
  301. echo 1;
  302. exit;
  303. }
  304. /**
  305. * 遍历获取目录下的指定类型的文件
  306. * @param $path
  307. * @param array $files
  308. * @return array
  309. */
  310. private function getfiles($path, $allowFiles, $key, &$files = array()){
  311. if (!is_dir($path)) return null;
  312. if(substr($path, strlen($path) - 1) != '/') $path .= '/';
  313. $handle = opendir($path);
  314. while (false !== ($file = readdir($handle))) {
  315. if ($file != '.' && $file != '..') {
  316. $path2 = $path . $file;
  317. if (is_dir($path2)) {
  318. $this->getfiles($path2, $allowFiles, $key, $files);
  319. } else {
  320. if (preg_match("/\.(".$allowFiles.")$/i", $file) && preg_match("/.*". $key .".*/i", $file)) {
  321. $files[] = array(
  322. 'url'=> ROOT_DIR.'/'.$path2, // 支持子目录
  323. 'name'=> $file,
  324. 'mtime'=> filemtime($path2)
  325. );
  326. }
  327. }
  328. }
  329. }
  330. return $files;
  331. }
  332. /**
  333. * 检测指定目录是否存在图片
  334. *
  335. * @param string $directory 目录路径
  336. * @param string $dir_name 显示的目录前缀路径
  337. * @param array $arr_file 是否删除空目录
  338. * @return boolean
  339. */
  340. private function isExistPic($directory, $dir_name='', &$arr_file = [])
  341. {
  342. if (!file_exists($directory) ) {
  343. return false;
  344. }
  345. if (!empty($arr_file)) {
  346. return true;
  347. }
  348. // 图片类型数组
  349. $image_ext = explode(',', $this->imageExt);
  350. $mydir = dir($directory);
  351. while($file = $mydir->read())
  352. {
  353. if((is_dir("$directory/$file")) AND ($file != ".") AND ($file != ".."))
  354. {
  355. if ($dir_name) {
  356. return $this->isExistPic("$directory/$file", "$dir_name/$file", $arr_file);
  357. } else {
  358. return $this->isExistPic("$directory/$file", "$file", $arr_file);
  359. }
  360. }
  361. else if(($file != ".") AND ($file != ".."))
  362. {
  363. $fileArr = explode('.', $file);
  364. $ext = end($fileArr);
  365. $ext = strtolower($ext);
  366. if (in_array($ext, $image_ext)) {
  367. if ($dir_name) {
  368. $arr_file[] = "$dir_name/$file";
  369. } else {
  370. $arr_file[] = "$file";
  371. }
  372. return true;
  373. }
  374. }
  375. }
  376. $mydir->close();
  377. return $arr_file;
  378. }
  379. /**
  380. * 记录常用图片
  381. */
  382. public function update_pic()
  383. {
  384. if(IS_AJAX_POST){
  385. $param = input('param.');
  386. if (!empty($param['images_array'])) {
  387. $images_array = $param['images_array'];
  388. $commonPic_db = Db::name('common_pic');
  389. $data = [];
  390. foreach ($images_array as $key => $value) {
  391. // 添加数组
  392. $data[$key] = [
  393. 'pic_path' => $value,
  394. 'lang' => $this->admin_lang,
  395. 'add_time' => getTime(),
  396. 'update_time' => getTime(),
  397. ];
  398. }
  399. // 批量删除选中的图片
  400. $commonPic_db->where('pic_path','IN',$images_array)->delete();
  401. // 批量添加图片
  402. !empty($data) && $commonPic_db->insertAll($data);
  403. // 查询最后一条数据
  404. $row = $commonPic_db->order('id desc')->limit('20,1')->field('id')->select();
  405. if (!empty($row)) {
  406. $id = $row[0]['id'];
  407. // 删除ID往后的数据
  408. $where_ = array(
  409. 'id' => array('<',$id),
  410. 'lang' => $this->admin_lang,
  411. );
  412. $commonPic_db->where($where_)->delete();
  413. }
  414. }
  415. }
  416. }
  417. /**
  418. * 提取上传图片目录下的所有图片
  419. *
  420. * @param string $directory 目录路径
  421. * @param string $dir_name 显示的目录前缀路径
  422. * @param array $arr_file 是否删除空目录
  423. * @param num $num 数量
  424. */
  425. private function getDirImg($directory, &$arr_file = array(), &$num = 0) {
  426. $mydir = glob($directory.'/*', GLOB_ONLYDIR);
  427. $param = input('param.');
  428. if (0 <= $num) {
  429. $dirpathArr = explode('/', $directory);
  430. $level = count($dirpathArr);
  431. $open = (1 >= $level) ? true : false;
  432. $fileList = glob("$directory/*");
  433. $total = count($fileList); // 目录是否存在任意文件,否则删除该目录
  434. if (!empty($total)) {
  435. $isExistPic = $this->isExistPic($directory);
  436. if (!empty($isExistPic)) {
  437. $arr_file[] = [
  438. 'id' => $num,
  439. 'url' => url('Uploadimgnew/get_dir_imglist',['num'=>$param['num'],'lang'=>$this->admin_lang,'images_path'=>$directory]),
  440. 'target' => 'content_body',
  441. 'isParent' => true,
  442. 'open' => $open,
  443. 'dirpath' => $directory,
  444. 'level' => $level,
  445. 'total' => $total,
  446. ];
  447. }
  448. } else {
  449. @rmdir("$directory");
  450. }
  451. }
  452. if (!empty($mydir)) {
  453. foreach ($mydir as $key => $dir) {
  454. if (preg_match('/uploads\/(soft_tmp|tmp|media|soft)\//i', "$dir/")) {
  455. continue;
  456. }
  457. $num++;
  458. $dirname = str_replace('\\', '/', $dir);
  459. $dirArr = explode('/', $dirname);
  460. $dir = end($dirArr);
  461. $mydir2 = glob("$directory/$dir/*", GLOB_ONLYDIR);
  462. if(!empty($mydir2) AND ($dir != ".") AND ($dir != ".."))
  463. {
  464. $this->getDirImg("$directory/$dir", $arr_file, $num);
  465. }
  466. else if(($dir != ".") AND ($dir != ".."))
  467. {
  468. $dirpathArr = explode('/', "$directory/$dir");
  469. $level = count($dirpathArr);
  470. $fileList = glob("$directory/$dir/*"); // 目录是否存在任意文件,否则删除该目录
  471. $total = count($fileList);
  472. if (!empty($total)) {
  473. // 目录是否存在图片文件,否则删除该目录
  474. $isExistPic = $this->isExistPic("$directory/$dir");
  475. if (!empty($isExistPic)) {
  476. $arr_file[] = [
  477. 'id' => $num,
  478. 'url' => url('Uploadimgnew/get_dir_imglist',['num'=>$param['num'],'lang'=>$this->admin_lang,'images_path'=>"$directory/$dir"]),
  479. 'target' => 'content_body',
  480. 'isParent' => false,
  481. 'open' => false,
  482. 'dirpath' => "$directory/$dir",
  483. 'level' => $level,
  484. 'icon' => 'public/plugins/ztree/css/zTreeStyle/img/dir_close.png',
  485. 'iconOpen' => 'public/plugins/ztree/css/zTreeStyle/img/dir_open.png',
  486. 'iconClose' => 'public/plugins/ztree/css/zTreeStyle/img/dir_close.png',
  487. 'total' => $total,
  488. ];
  489. }
  490. } else {
  491. @rmdir("$directory/$dir");
  492. }
  493. }
  494. }
  495. }
  496. return $arr_file;
  497. }
  498. /**
  499. * 远程图片本地化
  500. * @access public
  501. * @return string
  502. */
  503. public function ajax_remote_to_imglocal()
  504. {
  505. if (IS_AJAX_POST) {
  506. $post = input('post.');
  507. $type_id = !empty($post['type_id']) ? $post['type_id'] : 0;
  508. $imgremoteurl = !empty($post['imgremoteurl']) ? trim($post['imgremoteurl']) : '';
  509. if (empty($imgremoteurl)) {
  510. $this->error("请输入图片地址!");
  511. } else if (!is_http_url($imgremoteurl)) {
  512. $this->error("请输入有效的图片地址!");
  513. }
  514. $reData = saveRemote($imgremoteurl);
  515. $reData = json_decode($reData, true);
  516. if ('SUCCESS' != $reData['state']) {
  517. $msg = !empty($reData['state']) ? $reData['state'] : '源网站图片可能已开启防盗链功能!';
  518. $this->error($msg);
  519. } else {
  520. if (is_http_url($reData['url'])) {
  521. $image_url = $reData['url'];
  522. } else {
  523. $image_url = handle_subdir_pic($reData['url']);
  524. }
  525. }
  526. // 添加图片进数据库
  527. $addData = [
  528. 'aid' => 0,
  529. 'type_id' => $type_id,
  530. 'image_url' => $image_url,
  531. 'title' => !empty($reData['title']) ? $reData['title'] : '',
  532. 'intro' => '',
  533. 'width' => $reData['width'],
  534. 'height' => $reData['height'],
  535. 'filesize' => $reData['size'],
  536. 'mime' => $reData['mime'],
  537. 'users_id' => (int)session('admin_info.syn_users_id'),
  538. 'sort_order' => 100,
  539. 'add_time' => getTime(),
  540. 'update_time' => getTime(),
  541. ];
  542. Db::name('uploads')->add($addData);
  543. $this->success('提取成功', null, $addData);
  544. }
  545. $this->error('提取失败');
  546. }
  547. /*------------------------------------新版上传图片带分组 start-----------------------------------*/
  548. //添加栏目
  549. public function Addtype()
  550. {
  551. if (IS_AJAX_POST) {
  552. $post = input('post.');
  553. $upload_type = trim($post['upload_type']);
  554. if (empty($upload_type)) $this->error("请输入分组名称");
  555. $data = [
  556. 'upload_type' => $upload_type,
  557. 'add_time' => getTime(),
  558. 'update_time' => getTime(),
  559. ];
  560. $rs = Db::name('UploadsType')->add($data);
  561. if (!empty($rs)) {
  562. $this->success("分组添加成功");
  563. }
  564. }
  565. $this->error("分组添加失败");
  566. }
  567. // 编辑栏目
  568. public function EditType()
  569. {
  570. if (IS_AJAX_POST) {
  571. $post = input('post.');
  572. $type_id = $post['type_id'];
  573. if (empty($type_id)) $this->error("请选择分组");
  574. $upload_type = trim($post['upload_type']);
  575. if (empty($upload_type)) $this->error("请输入分组名称");
  576. $data = [
  577. 'upload_type' => $upload_type,
  578. 'add_time' => getTime(),
  579. 'update_time' => getTime(),
  580. ];
  581. $rs = Db::name('UploadsType')->where('id', $type_id)->update($data);
  582. if (!empty($rs)) {
  583. $this->success("分组编辑成功");
  584. }
  585. }
  586. $this->error("分组编辑失败");
  587. }
  588. // 删除栏目
  589. public function DelType()
  590. {
  591. if (IS_AJAX_POST) {
  592. $post = input('post.');
  593. $type_id = $post['type_id'];
  594. if (empty($type_id)) $this->error("请选择分组");
  595. $rs = Db::name('UploadsType')->where('id', $type_id)->delete();
  596. if (!empty($rs)) {
  597. Db::name('uploads')->where('type_id', $type_id)->update(['type_id' => 0, 'update_time'=>getTime()]);
  598. $this->success("删除分组成功");
  599. }
  600. }
  601. $this->error("分组添加失败");
  602. }
  603. // 批量删除
  604. public function del_uploadsimg()
  605. {
  606. $img_id = input('img_id/a');
  607. $img_id = eyIntval($img_id);
  608. if (IS_POST && !empty($img_id)) {
  609. $rs = Db::name('uploads')->where("img_id", 'IN', $img_id)->delete();
  610. // $rs = Db::name('uploads')->where("img_id", 'IN', $img_id)->update(['is_del' => 1, 'update_time'=>getTime()]);
  611. if ($rs !== false) {
  612. $this->success("删除成功");
  613. }
  614. }
  615. $this->error("删除失败");
  616. }
  617. /*------------------------------------新版上传图片带分组 end-----------------------------------*/
  618. /*---------------------------------同步图片目录的图片到记录表 start 老许-------------------------*/
  619. //更新旧数据弹出框
  620. public function site(){
  621. $admin_logic_1639031991 = tpSetting('syn.admin_logic_1639031991', [], 'cn');
  622. if (!empty($admin_logic_1639031991)){
  623. $this->error("已经同步过,不能重复同步");
  624. }
  625. return $this->fetch();
  626. }
  627. //分批次更新旧数据入口
  628. public function build_site(){
  629. $admin_logic_1639031991 = tpSetting('syn.admin_logic_1639031991', [], 'cn');
  630. if (!empty($admin_logic_1639031991)){
  631. $this->error("已经同步过,不能重复同步");
  632. }
  633. $achievepage = input("param.achieve/d", 0); // 已完成文档数
  634. if (empty($findex) && empty($achievepage)){
  635. $this->clearCache();
  636. }
  637. list($msg,$data) = $this->handel_build_site($achievepage,50);
  638. $this->success($msg, null, $data);
  639. }
  640. //处理更新
  641. private function handel_build_site($achievepage = 0, $limit = 50){
  642. $msg = "";
  643. list($files,$pagetotal) = $this->get_files_data();
  644. $data['allpagetotal'] = $pagetotal; //全部数据总数
  645. if ($pagetotal > $achievepage){
  646. $uploadsData = [];
  647. while ($limit && isset($files[$achievepage])) {
  648. $fileInfo = $files[$achievepage];
  649. $url = !empty($fileInfo['url']) ? $fileInfo['url'] : '';
  650. //获取文件其他信息(图片宽度、图片高度、文件大小、图片类型、图片上传时间)
  651. $url = handle_subdir_pic($url, 'img', false, true);
  652. $imageInfo = @getimagesize('.'.$url);
  653. $mtime = $this->get_mtime($fileInfo['mtime'],$fileInfo['url']);
  654. $uploadsData[] = [
  655. 'image_url' => $fileInfo['url'],
  656. 'filesize' => filesize('.'.$url),
  657. 'width' => !empty($imageInfo[0]) ? $imageInfo[0] : 0,
  658. 'height' => !empty($imageInfo[1]) ? $imageInfo[1] : 0,
  659. 'mime' => !empty($imageInfo['mime']) ? $imageInfo['mime'] : 0,
  660. 'add_time' => $mtime,
  661. 'update_time' => $mtime
  662. ];
  663. $limit--;
  664. $achievepage++;
  665. }
  666. if (!empty($uploadsData)){
  667. Db::name("uploads")->insertAll($uploadsData);
  668. }
  669. }
  670. $data['achievepage'] = $achievepage; //当前已完成总数(当前下标)
  671. if ($data['allpagetotal'] == $data['achievepage']){ //生成全部页面,清楚缓存,增加标识
  672. $this->clearCache();
  673. $admin_logic_1639031991 = tpSetting('syn.admin_logic_1639031991', [], 'cn');
  674. if (empty($admin_logic_1639031991)) {
  675. tpSetting('syn', ['admin_logic_1639031991'=>1], 'cn');
  676. }
  677. }
  678. return [$msg, $data];
  679. }
  680. /*
  681. * 获取绝对的图片添加时间
  682. * $mtime 文件添加时间
  683. * $url 文件路径
  684. */
  685. private function get_mtime($mtime,$url){
  686. if (!empty($mtime)){
  687. return $mtime;
  688. }
  689. if (!empty($url)){
  690. $dirArr = explode('/',$url);
  691. $length = count($dirArr);
  692. if ($length > 2){
  693. $dir = $dirArr[$length - 2];
  694. $mtime = strtotime($dir);
  695. if (!empty($mtime)){
  696. return $mtime;
  697. }
  698. }
  699. }
  700. return time();
  701. }
  702. //获取缓存
  703. private function get_files_data(){
  704. $get_files_data_serialize = cache("get_files_data_serialize".$this->php_sessid);
  705. if (empty($get_files_data_serialize)){
  706. $allowFiles = str_replace(',', '|', $this->image_type);
  707. $files = $this->getfiles(UPLOAD_PATH, $allowFiles, '');
  708. $pagetotal = count($files);
  709. cache("get_files_data_serialize".$this->php_sessid, serialize($files));
  710. cache("get_files_total_serialize".$this->php_sessid, $pagetotal);
  711. }else{
  712. $files = unserialize($get_files_data_serialize);
  713. $pagetotal = cache("get_files_total_serialize".$this->php_sessid);
  714. }
  715. return [$files,$pagetotal];
  716. }
  717. //清楚缓存
  718. private function clearCache(){
  719. cache("get_fiels_data_serialize".$this->php_sessid, null);
  720. cache("count_files_data_serialize".$this->php_sessid, null);
  721. }
  722. /*---------------------------------同步图片目录的图片到记录表 end 老许-------------------------*/
  723. }