123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606 |
- <?php
- /**
- * lionfish 商城系统
- *
- * ==========================================================================
- * @link http://www.liofis.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license http://www.liofis.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Home\Controller;
- class UtilityController extends CommonController{
-
-
-
- //删除图片和缩略图
- public function del_image($dir,$image,$type){
-
- $image_dir=ROOT_PATH.'Uploads/image/'.$dir.'/';
- $thumb_dir=ROOT_PATH.'Uploads/image/cache/'.$dir.'/';
-
- list($base_name, $ext) = explode(".", $image);
- $image = explode("/", $base_name);
- $image_name=end($image);
- if($type=='product'){
- $del_image=array();
- $del_image[]=$image_dir.$image_name.'.'.$ext;//原图
- $del_image[]=$thumb_dir.$image_name.'-50x50.'.$ext;
- $del_image[]=$thumb_dir.$image_name.'-100x100.'.$ext;
- $del_image[]=$thumb_dir.$image_name.'-255x255.'.$ext;
- }elseif($type=='gallery'){
- $del_image=array();
- $del_image[]=$image_dir.$image_name.'.'.$ext;//原图
- $del_image[]=$thumb_dir.$image_name.'-100x100.'.$ext;
- $del_image[]=$thumb_dir.$image_name.'-127x127.'.$ext;
- }elseif($type=='blog'){
- $del_image=array();
- $del_image[]=$image_dir.$image_name.'.'.$ext;//原图
- $del_image[]=$thumb_dir.$image_name.'-100x100.'.$ext;
- $del_image[]=$thumb_dir.$image_name.'-280x140.'.$ext;
- }elseif($type=='blog_gallery'){
- $del_image=array();
- $del_image[]=$image_dir.$image_name.'.'.$ext;//原图
- $del_image[]=$thumb_dir.$image_name.'-100x100.'.$ext;
-
- }
- if(!empty($del_image)){
- foreach ($del_image as $k => $v) {
- if(is_file($v)){
- @unlink($v);
- }
- }
- }
- }
- /**
- * 二进制上传数据
- */
- public function upload_binaryFile()
- {
- $data = file_get_contents("php://input");
- $get_data = I('get.');
- $dir = I('get.dir','goods');
- $type = I('get.type');
- $name = I('get.name');
-
- $image_dir = ROOT_PATH.'Uploads/image/'.$dir;
- $image_dir .= '/'.date('Y-m-d').'/';
-
- $file_path = C('SITE_URL').'/Uploads/image/'.$dir.'/'.date('Y-m-d').'/';
- $kufile_path = $dir.'/'.date('Y-m-d').'/';
-
- RecursiveMkdir($image_dir);
- $file_name = md5($name.time()).'.png';
-
- switch($type)
- {
- case 'image/jpeg':
- $file_name = md5($name.time()).'.jpg';
- break;
- case 'image/png':
- $file_name = md5($name.time()).'.png';
- break;
- }
-
- $thumb_arr = explode('.',$file_name);
- $thumb_image_name = $thumb_arr[0].'_thumb.'.$thumb_arr[1];
-
- file_put_contents($image_dir.$file_name, $data);
- //fileinfo 检测begin
- $fip = finfo_open(FILEINFO_MIME_TYPE);
- $min_result = finfo_file($fip , $image_dir.$file_name );
- fclose( $fip );
- $min_type_arr = array();
- $min_type_arr[] = 'image/jpeg';
- $min_type_arr[] = 'image/gif';
- $min_type_arr[] = 'image/jpg';
- $min_type_arr[] = 'image/png';
- $min_type_arr[] = 'video/mp4';
- if( !in_array($min_result , $min_type_arr ) )
- {
- die();
- }
-
- $image = new \Think\Image();
- $image->open($image_dir.$file_name);
- //按照原图的比例生成一个最大为400*400的缩略图并保存为thumb.jpg, 实际会按比例自动缩放
- $image->thumb(400, 400)->save($image_dir.$thumb_image_name);
-
- ////{"filePath":"\/Uploads\/image\/goods\/2017-07-05\/","fileName":"7e414de26624c0a5ac7cd5b9bd5edfe3.jpg"}
-
- $result = array('filePath' =>$file_path ,'kufile_path' => $kufile_path,'fileName' => $file_name);
-
- echo json_encode($result);
- die();
- }
-
- /**
- *删除 旧的原图和缩略图,修改的情况下使用
- *
- */
- public function del_old_image(){
-
- $old_gallery_image=I('post.old_gallery_image');
- $old_product_image=I('post.old_product_image');
-
- if(!empty($old_gallery_image)){
- $old_image=I('post.old_gallery_image');
-
- $thumb_dir=ROOT_PATH.'Uploads/image/cache/gallery/';
- $image_dir=ROOT_PATH.'Uploads/image/gallery/';
-
- }elseif(!empty($old_product_image)){
- $old_image=I('post.old_product_image');
-
- $thumb_dir=ROOT_PATH.'Uploads/image/cache/product/';
- $image_dir=ROOT_PATH.'Uploads/image/product/';
-
- }
- if(!empty($old_image)){
-
- list($base_name, $ext) = explode(".", $old_image);
- $image = explode("/", $base_name);
- $image_name=end($image);
-
- $del_image=array();
- $del_image[]=$image_dir.$image_name.'.'.$ext;//原图
- $del_image[]=$thumb_dir.$image_name.'-100x100.'.$ext;//100x100
-
- foreach ($del_image as $k => $v) {
- if(is_file($v)){
- @unlink($v);
- }
- }
- }
- }
-
-
- public function file()
- {
-
- $do = I('get.do');
-
- if('group_list' == $do)
- {
- $uid = 1;
-
- if( is_agent_login() )
- {
- $uid = is_agent_login();
- $uid = $uid +1;
- }
-
- $group_list = M('core_attachment_group')->where( array('uid' => $uid) )->order('id asc')->select();
-
- $res = array(
- 'message' => array(
- 'errno' => 0,
- 'message' => $group_list
- ),
- 'redirect' => '',
- 'type' => 'ajax'
- );
-
- echo json_encode($res);
- die();
- }
-
-
- if( 'change_group' == $do )
- {
- $name = I('request.name');
- $id = I('request.id');
-
- M('core_attachment_group')->where( array('id' => $id) )->save( array('name' => $name) );
-
- //{"message":{"errno":0,"message":"\u66f4\u65b0\u6210\u529f"},"redirect":"","type":"ajax"}
-
- $res = array('message' => array('errno' => 0, 'message' => '更新成功'),
- 'redirect' =>'','type' => 'ajax'
- );
-
- echo json_encode( $res );
- die();
-
- }
-
- if('add_group' == $do)
- {
-
- $core_attachment_group_data = array();
- $core_attachment_group_data['name'] = '未命名';
- $core_attachment_group_data['uniacid'] = 0;
- $core_attachment_group_data['uid'] = 1;
-
- $id = M('core_attachment_group')->add( $core_attachment_group_data );
-
- $res = array('message' => array('errno' => 0, 'message' => array('id'=>$id),
- 'redirect' =>'','type' => 'ajax'
- ) );
- echo json_encode($res);
-
- //{"message":{"errno":0,"message":{"id":"27"}},"redirect":"","type":"ajax"}
-
- die();
- }
-
- if ($do == 'move_to_group') {
-
- $group_id = I('request.id');
- $ids = I('request.keys');
-
- M('core_attachment')->where( array('id' => array('in', $ids ) ) )->save( array('group_id' => $group_id) );
-
- $res = array('message' => array('errno' => 0, 'message' => '删除成功'),
- 'redirect' =>'','type' => 'ajax'
- );
-
- echo json_encode( $res );
- die();
-
- }
-
-
-
- if( 'del_group' == $do )
- {
- $id = I('request.id');
-
- M('core_attachment_group')->where( array('id' => $id) )->delete();
-
- $res = array('message' => array('errno' => 0, 'message' => '删除成功'),
- 'redirect' =>'','type' => 'ajax'
- );
-
- echo json_encode( $res );
- die();
- }
-
- if ($do == 'video') {
-
- $year = I('get.year');
- $month = I('get.month');
- $page = I('get.page',1);
- $groupid = I('get.groupid',1);
- $page_size = 10;
- $page = max(1, $page);
-
- $offset = ($page -1) * $page_size;
-
- $where = " type=2 ";
-
- if ($year || $month) {
- $start_time = strtotime("{$year}-{$month}-01");
- $end_time = strtotime('+1 month', $start_time);
-
- //createtime
- $where .= " createtime >= {$start_time} and createtime < {$end_time} ";
- }
-
- $total = M('core_attachment')->where($where)->count();
-
- $list = M('core_attachment')->where( $where )->order('id desc ')->limit($offset, $page_size)->select();
-
-
- if (!empty($list)) {
- foreach ($list as &$meterial) {
- $meterial['url'] = tomedia($meterial['attachment']);
- unset($meterial['uid']);
- }
- }
- $pager = pagination($total, $page, $page_size,'',$context = array('before' => 5, 'after' => 4, 'isajax' => 1));
- $result = array('items' => $list, 'pager' => $pager);
-
- $json_data = array();
- $json_data['message'] = array(
- 'errno' =>0,
- 'message' => $result
- );
- echo json_encode( $json_data );
- die();
- }
-
-
-
- if ($do == 'delete') {
- $ids_arr = I('request.id');
-
- foreach($ids_arr as $material_id)
- {
- M('core_attachment')->where( array('id' => $material_id) )->delete();
- }
-
- echo '{"message":{"errno":"0","message":"\u5220\u9664\u7d20\u6750\u6210\u529f"},"redirect":"","type":"ajax"}';
- die();
-
- }
- if ($do == 'image') {
-
- $year = I('get.year');
- $month = I('get.month');
- $page = I('get.page',1);
- $groupid = I('get.groupid',0);
-
-
- $page_size = 10;
- $page = max(1, $page);
-
- $offset = ($page -1) * $page_size;
-
- $where = " type=1 ";
- if( !empty($groupid) && $groupid > 0 )
- {
- $where .= " and group_id = {$groupid} ";
- }
- if($groupid == 0 ){
- $where .= " and group_id = -1 ";
- }
-
- if ($year || $month) {
- $start_time = strtotime("{$year}-{$month}-01");
- $end_time = strtotime('+1 month', $start_time);
-
- //createtime
- $where .= " and createtime >= {$start_time} and createtime < {$end_time} ";
- }
-
- $uid = 1;
-
- if( is_agent_login() )
- {
- $uid = is_agent_login();
- $uid = $uid +1;
- }
-
- $where .= " and uid = {$uid} ";
- $total = M('core_attachment')->where($where)->count();
-
- $list = M('core_attachment')->where( $where )->order('id desc ')->limit($offset, $page_size)->select();
-
- if (!empty($list)) {
- foreach ($list as &$meterial) {
- $meterial['url'] = tomedia($meterial['attachment']);
- unset($meterial['uid']);
- //$core_data['filename'] = base64_encode($originname);
- if( $meterial['filename'] == base64_encode(base64_decode($meterial['filename'])) )
- {
- $meterial['filename'] = base64_decode($meterial['filename']);
- }
- }
- }
- $pager = pagination($total, $page, $page_size,'',$context = array('before' => 5, 'after' => 4, 'isajax' => 1));
- $result = array('items' => $list, 'pager' => $pager);
-
- $json_data = array();
- $json_data['message'] = array(
- 'errno' =>0,
- 'message' => $result
- );
- echo json_encode( $json_data );
- die();
- }
- if('upload' == $do)
- {
- $dir='goods/';
-
-
- $type = I('get.upload_type');
- $type = in_array($type, array('image','audio','video')) ? $type : 'image';
-
- if (empty($_FILES['file']['name'])) {
- $result['message'] = '上传失败, 请选择要上传的文件!';
- die(json_encode($result));
- }
- if ($_FILES['file']['error'] != 0) {
- $result['message'] = '上传失败, 请重试.';
- die(json_encode($result));
- }
- $ext = pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
- $ext = strtolower($ext);
- $size = intval($_FILES['file']['size']);
- $originname = $_FILES['file']['name'];
- //fileinfo 检测begin
- $fip = finfo_open(FILEINFO_MIME_TYPE);
- $min_result = finfo_file($fip , $_FILES['file']['tmp_name']);
- fclose( $fip );
- $min_type_arr = array();
- $min_type_arr[] = 'image/jpeg';
- $min_type_arr[] = 'image/gif';
- $min_type_arr[] = 'image/jpg';
- $min_type_arr[] = 'image/png';
- $min_type_arr[] = 'video/mp4';
- if( !in_array($min_result , $min_type_arr ) )
- {
- die();
- }
- //fileinfo 检测end
- if( !in_array($ext, array('jpg', 'gif', 'png', 'jpeg','mp4') ) )
- {
- die();
- }
- $upload = new \Think\Upload();// 实例化上传类
-
- $upload->maxSize = 31457280 ;// 设置附件上传大小
- $upload->exts = array('jpg', 'gif', 'png', 'jpeg','mp4');// 设置附件上传类型
- $upload->rootPath = ATTACHMENT_ROOT.$dir;
- RecursiveMkdir($upload->rootPath);
-
- $info = $upload->upload();
-
- if(!$info) {
- $result['message'] = $file['message'];
- die(json_encode($result));
- }
- $filename = $dir.date('Y-m-d').'/'.$info['file']['savename'];
-
- $fullname = ATTACHMENT_ROOT . $filename;
- //ext
- if($ext == 'mp4'){
- if(filesize($fullname)>30000000){
- $result['message'] = '上传失败, 上传的视频应不大于30M!';
- die(json_encode($result));
- }
- }else{
- if(filesize($fullname)>10000000){
- $result['message'] = '上传失败, 上传的图片应不大于10M!';
- die(json_encode($result));
- }
- }
- //attachment_type
-
- $attachment_type_arr = M('lionfish_comshop_config')->where( array('name' => 'attachment_type') )->find();
-
- if( $attachment_type_arr['value'] == 1 )
- {
- save_image_to_qiniu($fullname,'Uploads/image/'.$filename);
- }else if( $attachment_type_arr['value'] == 2 ){
- save_image_to_alioss($fullname,'Uploads/image/'.$filename);
-
- }else if( $attachment_type_arr['value'] == 3 )
- {
- save_image_to_txyun($fullname,'Uploads/image/'.$filename);
- }
-
- $group_id = I('get.group_id');
-
-
- $info = array(
- 'name' => $originname,
- 'ext' => $ext,
- 'filename' => $filename,
- 'attachment' => $filename,
- 'url' => tomedia($filename),
- 'is_image' => $type == 'image' ? 1 : 2,
- 'filesize' => filesize($fullname),
- 'group_id' => $group_id
- );
-
-
- $uid = 1;
-
- if( is_agent_login() )
- {
- $uid = is_agent_login();
- $uid = $uid +1;
- }
-
- $core_data = array();
- $core_data['uniacid'] = 0;
- $core_data['uid'] = $uid;
- $core_data['filename'] = base64_encode($originname);
- $core_data['attachment'] = $filename;
- $core_data['type'] = $type == 'image' ? 1 : 2;
- $core_data['createtime'] = time();
- $core_data['module_upload_dir'] = '';
- $core_data['group_id'] = $group_id;
-
- M('core_attachment')->add($core_data);
-
-
- $size = getimagesize($fullname);
- $info['width'] = $size[0];
- $info['height'] = $size[1];
-
- $info['state'] = 'SUCCESS';
- die(json_encode($info));
-
- }
-
- if('image' == $do)
- {
-
- }
-
-
-
- }
-
- /**
- *上传图片
- */
- public function upload_image(){
-
- $dir=I('get.dir');
- $dir .= '/'.date('Y-m-d');
-
- $this->del_old_image();
-
- $upload = new \Think\Upload();// 实例化上传类
-
- $image_dir=ROOT_PATH.'Uploads/image/'.$dir;
-
- RecursiveMkdir($image_dir);
- $min_type_arr = array();
- $min_type_arr[] = 'image/jpeg';
- $min_type_arr[] = 'image/gif';
- $min_type_arr[] = 'image/jpeg';
- $min_type_arr[] = 'image/png';
- $min_type_arr[] = 'video/mp4';
-
- $upload->autoSub = false;
- $upload->maxSize = 3145728 ;// 设置附件上传大小
- $upload->exts = array('jpg', 'gif', 'png', 'jpeg');// 设置附件上传类型
- $upload->mimes = $min_type_arr;// 设置附件上传类型
- $upload->rootPath = $image_dir.'/';
-
- $info = $upload->upload();
-
- if(!$info) {
- $data['result'] = false;
-
- $this->ajaxReturn($data);
- }else{// 上传成功
-
- $filename=$dir.'/'.$info['file']['savepath'].$info['file']['savename'];
- $data['image_thumb'] = resize($filename, 100, 100);
- $data['image'] = $filename;
- $this->ajaxReturn($data);
-
- }
- }
- //用于ckeditor图片上传
- function ckupload(){
- $upload = new \Think\Upload();// 实例化上传类
-
- $upload->maxSize = 3145728 ;// 设置附件上传大小
- $upload->exts = array('jpg', 'gif', 'png', 'jpeg');// 设置附件上传类型
- $upload->rootPath = ROOT_PATH.'Uploads/image/goods_description/';
- RecursiveMkdir($upload->rootPath);
-
- $info = $upload->upload();
- if(!$info) {
- // 上传错误提示错误信息
- echo "<script type=\"text/javascript\">window.parent.CKEDITOR.tools.callFunction(".$_GET['CKEditorFuncNum'].", '/', '上传失败," . $upload->getError() . "!');</script>";
- }else{// 上传成功
- $n=$_GET['CKEditorFuncNum'];
- $savepath=C('SITE_URL').'/Uploads/image/goods_description/'. $info['upload']['savepath'].$info['upload']['savename'];
- //下面的输出,会自动的将上传成功的文件路径,返回给编辑器。
- echo "<script type=\"text/javascript\">window.parent.CKEDITOR.tools.callFunction(".$n.",'$savepath','');</script>";
- }
-
- }
-
- }
|