| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <?php
- namespace app\common\model;
- use app\common\util\Ftp as ftpOper;
- class Upload extends Base {
- public function api($file_path,$config)
- {
- if(empty($config)){
- return $file_path;
- }
- if ($config['mode'] == '2') {
- $config['mode'] = 'upyun';
- }
- elseif ($config['mode'] == '3'){
- $config['mode'] = 'qiniu';
- }
- elseif ($config['mode'] == '4') {
- $config['mode'] = 'ftp';
- }
- elseif ($config['mode'] == '5') {
- $config['mode'] = 'weibo';
- }
- if(!in_array($config['mode'],['local','remote'])){
- $cp = 'app\\common\\extend\\upload\\' . ucfirst($config['mode']);
- if (class_exists($cp)) {
- $c = new $cp;
- $file_path = $c->submit($file_path);
- }
- }
- return str_replace(['http:','https:'],'mac:',$file_path);
- }
- public function upload($p=[])
- {
- $param = input();
- if(!empty($p)){
- $param = array_merge($param,$p);
- }
- $param['from'] = empty($param['from']) ? '' : $param['from'];
- $param['input'] = empty($param['input']) ? 'file' : $param['input'];
- $param['flag'] = empty($param['flag']) ? 'vod' : $param['flag'];
- $param['thumb'] = empty($param['thumb']) ? '0' : $param['thumb'];
- $param['thumb_class'] = empty($param['thumb_class']) ? '' : $param['thumb_class'];
- $param['user_id'] = empty($param['user_id']) ? '0' : $param['user_id'];
- $base64_img = $param['imgdata'];
- $data = [];
- $config = config('maccms.site');
- $pre= $config['install_dir'];
- $upload_image_ext = 'jpg,jpeg,png,gif,webp';
- $upload_file_ext = 'doc,docx,xls,xlsx,ppt,pptx,pdf,wps,txt,rar,zip,torrent';
- $upload_media_ext = 'rm,rmvb,avi,mkv,mp4,mp3';
- $add_rnd = false;
- $config = config('maccms.upload');
- if(!empty($param['from'])){
- $cp = 'app\\common\\extend\\editor\\' . ucfirst($param['from']);
- if (class_exists($cp)) {
- $c = new $cp;
- $c->front($param);
- }
- else{
- return self::upload_return(lang('admin/upload/not_find_extend'), '');
- }
- }
- else{
- $pre='';
- }
- // 上传附件路径
- $_upload_path = ROOT_PATH . 'upload' . '/' . $param['flag'] . '/' ;
- // 附件访问路径
- $_save_path = 'upload'. '/' . $param['flag'] . '/';
- if($param['flag']=='user'){
- $uniq = $param['user_id'] % 10;
- $_upload_path .= $uniq .'/';
- $_save_path .= $uniq .'/';
- $_save_name = $param['user_id'] . '.jpg';
- if(!file_exists($_save_path)){
- mac_mkdirss($_save_path);
- }
- }
- else{
- $ymd = date('Ymd');
- $n_dir = $ymd;
- for($i=1;$i<=100;$i++){
- $n_dir = $ymd .'-'.$i;
- $path1 = $_upload_path . $n_dir. '/';
- if(file_exists($path1)){
- $farr = glob($path1.'*.*');
- if($farr){
- $fcount = count($farr);
- if($fcount>999){
- continue;
- }
- else{
- break;
- }
- }
- else{
- break;
- }
- }
- else{
- break;
- }
- }
- $_save_name = $n_dir . '/' . md5(microtime(true));
- }
- if(!empty($base64_img)){
- if(preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_img, $result)){
- $type = $result[2];
- if(in_array($type, explode(',', $upload_image_ext))){
- if(!file_put_contents($_save_path.$_save_name, base64_decode(str_replace($result[1], '', $base64_img)))){
- return self::upload_return(lang('admin/upload/upload_faild'), $param['from']);
- }
- $file_size = round(filesize('./'.$_save_path.$_save_name)/1024, 2);
- }
- else {
- return self::upload_return(lang('admin/upload/forbidden_ext'), $param['from']);
- }
- }
- else{
- return self::upload_return(lang('admin/upload/no_input_file'), $param['from']);
- }
- }
- else {
- $file = request()->file($param['input']);
- if (empty($file)) {
- return self::upload_return(lang('admin/upload/no_input_file'), $param['from']);
- }
- if ($file->getMime() == 'text/x-php') {
- return self::upload_return(lang('admin/upload/forbidden_ext'), $param['from']);
- }
- if ($file->checkExt($upload_image_ext)) {
- $type = 'image';
- } elseif ($file->checkExt($upload_file_ext)) {
- $type = 'file';
- } elseif ($file->checkExt($upload_media_ext)) {
- $type = 'media';
- } else {
- return self::upload_return(lang('admin/upload/forbidden_ext'), $param['from']);
- }
- $upfile = $file->move($_upload_path,$_save_name);
- if (!is_file($_upload_path.$upfile->getSaveName())) {
- return self::upload_return(lang('admin/upload/upload_faild'), $param['from']);
- }
- $file_size = round($upfile->getInfo('size')/1024, 2);
- $_save_name = str_replace('\\', '/', $upfile->getSaveName());
- }
- $resource = fopen($_save_path.$_save_name, 'rb');
- $fileSize = filesize($_save_path.$_save_name);
- fseek($resource, 0);
- if ($fileSize>512){
- $hexCode = bin2hex(fread($resource, 512));
- fseek($resource, $fileSize - 512);
- $hexCode .= bin2hex(fread($resource, 512));
- } else {
- $hexCode = bin2hex(fread($resource, $fileSize));
- }
- fclose($resource);
- if(preg_match("/(3c25.*?28.*?29.*?253e)|(3c3f.*?28.*?29.*?3f3e)|(3C534352495054)|(2F5343524950543E)|(3C736372697074)|(2F7363726970743E)/is", $hexCode)){
- return self::upload_return(lang('admin/upload/upload_safe'), $param['from']);
- }
- $file_count = 1;
- $data = [
- 'file' => $_save_path.$_save_name,
- 'type' => $type,
- 'size' => $file_size,
- 'flag' => $param['flag'],
- 'ctime' => request()->time(),
- 'thumb_class'=>$param['thumb_class'],
- ];
- $data['thumb'] = [];
- if($param['flag']=='user'){
- $add_rnd=true;
- $file = $_save_path.str_replace('\\', '/', $_save_name);
- $new_thumb = $param['user_id'] .'.jpg';
- $new_file = $_save_path . $new_thumb;
- try {
- $image = \think\Image::open('./' . $file);
- $t_size = explode('x', strtolower($GLOBALS['config']['user']['portrait_size']));
- if (!isset($t_size[1])) {
- $t_size[1] = $t_size[0];
- }
- $image->thumb($t_size[0], $t_size[1], 6)->save('./' . $new_file);
- $file_size = round(filesize('./' .$new_file)/1024, 2);
- }
- catch(\Exception $e){
- return self::upload_return(lang('admin/upload/make_thumb_faild'), $param['from']);
- }
- $update = [];
- $update['user_portrait'] = $new_file;
- $where = [];
- $where['user_id'] = $GLOBALS['user']['user_id'];
- $res = model('User')->where($where)->update($update);
- if ($res === false) {
- return self::upload_return(lang('index/portrait_err'), $param['from']);
- }
- }
- else {
- if ($type == 'image') {
- if ($config['watermark'] == 1) {
- model('Image')->watermark($data['file'], $config, $param['flag']);
- }
- if ($param['thumb'] == 1 && $config['thumb'] == 1) {
- $dd = model('Image')->makethumb($data['file'], $config, $param['flag']);
- if (is_array($dd)) {
- $data = array_merge($data, $dd);
- }
- }
- }
- }
- unset($upfile);
- if ($config['mode'] == 2) {
- $config['mode'] = 'upyun';
- }
- elseif ($config['mode'] == 3){
- $config['mode'] = 'qiniu';
- }
- elseif ($config['mode'] == 4) {
- $config['mode'] = 'ftp';
- }
- elseif ($config['mode'] == 5) {
- $config['mode'] = 'weibo';
- }
- $config['mode'] = strtolower($config['mode']);
- if(!in_array($config['mode'],['local','remote'])){
- $data['file'] = model('Upload')->api($data['file'],$config);
- if(!empty($data['thumb'])){
- $data['thumb'][0]['file'] = model('Upload')->api($data['thumb'][0]['file'],$config);
- }
- }
- if(!empty($param['from'])){
- if(substr($data['file'],0,4)!='http' && substr($data['file'],0,4)!='mac:'){
- $data['file'] = $pre. $data['file'];
- }
- else{
- $data['file'] = mac_url_content_img($data['file']);
- }
- }
- $tmp = $data['file'];
- if((substr($tmp,0,7) == "/upload")){
- $tmp = substr($tmp,1);
- }
- if((substr($tmp,0,6) == "upload")){
- $annex = [];
- $annex['annex_file'] = $tmp;
- $r = model('Annex')->infoData($annex);
- if($r['code']!==1){
- $annex['annex_type'] = $type;
- $annex['annex_size'] = $file_size;
- model('Annex')->saveData($annex);
- $tmp = $data['thumb'][0]['file'];
- if(!empty($tmp)){
- $file_size = filesize($tmp);
- $annex = [];
- $annex['annex_file'] = $tmp;
- $r = model('Annex')->infoData($annex);
- if($r['code']!==1){
- $annex['annex_type'] = $type;
- $annex['annex_size'] = $file_size;
- model('Annex')->saveData($annex);
- }
- }
- }
- }
- return self::upload_return(lang('admin/upload/upload_success'), $param['from'], 1, $data);
- }
- private function upload_return($info='',$from='',$status=0,$data=[])
- {
- $arr = [];
- if(!empty($from)){
- $cp = 'app\\common\\extend\\editor\\' . ucfirst($from);
- if (class_exists($cp)) {
- $c = new $cp;
- $arr = $c->back($info,$status,$data);
- }
- }
- elseif(ENTRANCE=='index'){
- $arr['msg'] = $info;
- $arr['code'] = $status;
- $arr['file'] = MAC_PATH . $data['file'] . '?'. mt_rand(1000, 9999);
- }
- else{
- $arr['msg'] = $info;
- $arr['code'] = $status;
- $arr['data'] = $data;
- }
- return $arr;
- }
- }
|