123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- function file_write($filename, $data) {
- global $_W;
- $filename = ATTACHMENT_ROOT . '/' . $filename;
- mkdirs(dirname($filename));
- file_put_contents($filename, $data);
- @chmod($filename, $_W['config']['setting']['filemode']);
- return is_file($filename);
- }
- function file_read($filename) {
- $filename = ATTACHMENT_ROOT . '/' . $filename;
- if (!is_file($filename)) {
- return false;
- }
- return file_get_contents($filename);
- }
- function file_move($filename, $dest) {
- global $_W;
- mkdirs(dirname($dest));
- if (is_uploaded_file($filename)) {
- move_uploaded_file($filename, $dest);
- } else {
- rename($filename, $dest);
- }
- @chmod($filename, $_W['config']['setting']['filemode']);
- return is_file($dest);
- }
- function file_tree($path, $include = array()) {
- $files = array();
- if (!empty($include)) {
- $ds = glob($path . '/{' . implode(',', $include) . '}', GLOB_BRACE);
- } else {
- $ds = glob($path . '/*');
- }
- if (is_array($ds)) {
- foreach ($ds as $entry) {
- if (is_file($entry)) {
- $files[] = $entry;
- }
- if (is_dir($entry)) {
- $rs = file_tree($entry);
- foreach ($rs as $f) {
- $files[] = $f;
- }
- }
- }
- }
- return $files;
- }
- function file_tree_limit($path, $limit = 0, $acquired_files_count = 0) {
- $files = array();
- if (is_dir($path)) {
- if ($dir = opendir($path)) {
- while (false !== ($file = readdir($dir))) {
- if (in_array($file, array('.', '..'))) {
- continue;
- }
- if (is_file($path . '/' . $file)) {
- $files[] = $path . '/' . $file;
- ++$acquired_files_count;
- if ($limit > 0 && $acquired_files_count >= $limit) {
- closedir($dir);
- return $files;
- }
- }
- if (is_dir($path . '/' . $file)) {
- $rs = file_tree_limit($path . '/' . $file, $limit, $acquired_files_count);
- foreach ($rs as $f) {
- $files[] = $f;
- ++$acquired_files_count;
- if ($limit > 0 && $acquired_files_count >= $limit) {
- closedir($dir);
- return $files;
- }
- }
- }
- }
- closedir($dir);
- }
- }
- return $files;
- }
- function file_dir_exist_image($path) {
- if (is_dir($path)) {
- if ($dir = opendir($path)) {
- while (false !== ($file = readdir($dir))) {
- if (in_array($file, array('.', '..'))) {
- continue;
- }
- if (is_file($path . '/' . $file) && $path != (ATTACHMENT_ROOT . 'images') && file_is_image($path . '/' . $file)) {
- if (0 === strpos($path, ATTACHMENT_ROOT)) {
- $attachment = str_replace(ATTACHMENT_ROOT . 'images/', '', $path . '/' . $file);
- list($file_account) = explode('/', $attachment);
- if ('global' == $file_account) {
- continue;
- }
- }
- closedir($dir);
- return true;
- }
- if (is_dir($path . '/' . $file) && file_dir_exist_image($path . '/' . $file)) {
- closedir($dir);
- return true;
- }
- }
- closedir($dir);
- }
- }
- return false;
- }
- function mkdirs($path) {
- if (!is_dir($path)) {
- mkdirs(dirname($path));
- mkdir($path);
- }
- return is_dir($path);
- }
- function file_copy($src, $des, $filter) {
- $dir = opendir($src);
- @mkdir($des);
- while (false !== ($file = readdir($dir))) {
- if (('.' != $file) && ('..' != $file)) {
- if (is_dir($src . '/' . $file)) {
- file_copy($src . '/' . $file, $des . '/' . $file, $filter);
- } elseif (!in_array(substr($file, strrpos($file, '.') + 1), $filter)) {
- copy($src . '/' . $file, $des . '/' . $file);
- }
- }
- }
- closedir($dir);
- }
- function rmdirs($path, $clean = false) {
- if (!is_dir($path)) {
- return false;
- }
- $files = glob($path . '/*');
- if ($files) {
- foreach ($files as $file) {
- is_dir($file) ? rmdirs($file) : @unlink($file);
- }
- }
- return $clean ? true : @rmdir($path);
- }
- function file_upload($file, $type = 'image', $name = '', $compress = false) {
- load()->model('system');
- $harmtype = array('asp', 'php', 'jsp', 'js', 'css', 'php3', 'php4', 'php5', 'ashx', 'aspx', 'exe', 'cgi');
- if (empty($file)) {
- return error(-1, '没有上传内容');
- }
- if (!in_array($type, array('image', 'thumb', 'voice', 'video', 'audio'))) {
- return error(-2, '未知的上传类型');
- }
- global $_W;
- $ext = pathinfo($file['name'], PATHINFO_EXTENSION);
- $ext = strtolower($ext);
- $setting = setting_load('upload');
- $setting['upload'] = !empty($setting['upload']) ? $setting['upload'] : $_W['setting']['upload'];
- switch ($type) {
- case 'image':
- case 'thumb':
- $allowExt = array('gif', 'jpg', 'jpeg', 'bmp', 'png', 'ico');
- $limit = $setting['upload']['image']['limit'];
- break;
- case 'voice':
- case 'audio':
- $allowExt = array('mp3', 'wma', 'wav', 'amr');
- $limit = $setting['upload']['audio']['limit'];
- break;
- case 'video':
- $allowExt = array('rm', 'rmvb', 'wmv', 'avi', 'mpg', 'mpeg', 'mp4');
- $limit = $setting['upload']['audio']['limit'];
- break;
- }
- $type_setting = in_array($type, array('image', 'thumb')) ? 'image' : 'audio';
- $setting = $_W['setting']['upload'][$type_setting];
- if (!empty($setting['extentions'])) {
- $allowExt = $setting['extentions'];
- }
- if (!in_array(strtolower($ext), $allowExt) || in_array(strtolower($ext), $harmtype)) {
- return error(-3, '不允许上传此类文件');
- }
- if (!empty($limit) && $limit * 1024 < filesize($file['tmp_name'])) {
- return error(-4, "上传的文件超过大小限制,请上传小于 {$limit}k 的文件");
- }
- $result = array();
- if (empty($name) || 'auto' == $name) {
- $uniacid = intval($_W['uniacid']);
- $path = "{$type}s/{$uniacid}/" . date('Y/m/');
- mkdirs(ATTACHMENT_ROOT . '/' . $path);
- $filename = file_random_name(ATTACHMENT_ROOT . '/' . $path, $ext);
- $result['path'] = $path . $filename;
- } else {
- mkdirs(dirname(ATTACHMENT_ROOT . '/' . $name));
- if (!strexists($name, $ext)) {
- $name .= '.' . $ext;
- }
- $result['path'] = $name;
- }
- $save_path = ATTACHMENT_ROOT . '/' . $result['path'];
-
- $image = '';
- if (isset($setting['zip_percentage']) && $setting['zip_percentage'] == 100 && system_check_php_ext('exif')) {
- $exif = exif_read_data($file['tmp_name']);
- if (!empty($exif['THUMBNAIL']['Orientation'])) {
- $image = imagecreatefromstring(file_get_contents($file['tmp_name']));
- switch ($exif['THUMBNAIL']['Orientation']) {
- case 3:
- $image = imagerotate($image, 180, 0);
- break;
- case 6:
- $image = imagerotate($image, -90, 0);
- break;
- default:
- $image = imagerotate($image, 0, 0);
- break;
- }
- }
- }
- if (empty($image)) {
- $newimage = file_move($file['tmp_name'], $save_path);
- } else {
- $newimage = imagejpeg($image, $save_path);
- imagedestroy($image);
- }
- if (empty($newimage)) {
- return error(-1, '文件上传失败, 请将 attachment 目录权限先777 <br> (如果777上传失败,可尝试将目录设置为755)');
- }
- if ('image' == $type && $compress) {
-
- file_image_quality($save_path, $save_path, $ext);
- }
- if (file_is_uni_attach($save_path)) {
- $check_result = file_check_uni_space($save_path);
- if (is_error($check_result)) {
- @unlink($save_path);
- return $check_result;
- }
- $uni_remote_setting = uni_setting_load('remote');
- if (empty($uni_remote_setting['remote']) && empty($_W['setting']['remote']['type'])) {
- file_change_uni_attchsize($save_path);
- }
- }
- $result['success'] = true;
- return $result;
- }
- function file_wechat_upload($file, $type = 'image', $name = '') {
- $harmtype = array('asp', 'php', 'jsp', 'js', 'css', 'php3', 'php4', 'php5', 'ashx', 'aspx', 'exe', 'cgi');
- if (empty($file)) {
- return error(-1, '没有上传内容');
- }
- if (!in_array($type, array('image', 'thumb', 'voice', 'video', 'audio'))) {
- return error(-2, '未知的上传类型');
- }
- global $_W;
- $ext = pathinfo($file['name'], PATHINFO_EXTENSION);
- $ext = strtolower($ext);
- if (in_array(strtolower($ext), $harmtype)) {
- return error(-3, '不允许上传此类文件');
- }
- $result = array();
- if (empty($name) || 'auto' == $name) {
- $uniacid = intval($_W['uniacid']);
- $path = "{$type}s/{$uniacid}/" . date('Y/m/');
- mkdirs(ATTACHMENT_ROOT . '/' . $path);
- $filename = file_random_name(ATTACHMENT_ROOT . '/' . $path, $ext);
- $result['path'] = $path . $filename;
- } else {
- mkdirs(dirname(ATTACHMENT_ROOT . '/' . $name));
- if (!strexists($name, $ext)) {
- $name .= '.' . $ext;
- }
- $result['path'] = $name;
- }
- $save_path = ATTACHMENT_ROOT . '/' . $result['path'];
- if (!file_move($file['tmp_name'], $save_path)) {
- return error(-1, '保存上传文件失败');
- }
- if ('image' == $type) {
-
- file_image_quality($save_path, $save_path, $ext);
- }
- $result['success'] = true;
- return $result;
- }
- function file_remote_upload($filename, $auto_delete_local = true) {
- global $_W;
- if (empty($_W['setting']['remote']['type'])) {
- return false;
- }
- if ($_W['setting']['remote']['type'] == ATTACH_FTP) {
- load()->library('ftp');
- $ftp_config = array(
- 'hostname' => $_W['setting']['remote']['ftp']['hostname'] ?: $_W['setting']['remote']['ftp']['host'],
- 'username' => $_W['setting']['remote']['ftp']['username'],
- 'password' => $_W['setting']['remote']['ftp']['password'],
- 'port' => $_W['setting']['remote']['ftp']['port'],
- 'ssl' => $_W['setting']['remote']['ftp']['ssl'],
- 'passive' => $_W['setting']['remote']['ftp']['passive'] ?: $_W['setting']['remote']['ftp']['pasv'],
- 'timeout' => $_W['setting']['remote']['ftp']['timeout'] ?: $_W['setting']['remote']['ftp']['overtime'],
- 'rootdir' => $_W['setting']['remote']['ftp']['rootdir'] ?: $_W['setting']['remote']['ftp']['dir'],
- );
- $ftp = new Ftp($ftp_config);
- if (true === $ftp->connect()) {
- $response = $ftp->upload(ATTACHMENT_ROOT . '/' . $filename, $filename);
- if ($auto_delete_local) {
- file_delete($filename);
- }
- if (!empty($response)) {
- return true;
- } else {
- return error(1, '远程附件上传失败,请检查配置并重新上传');
- }
- } else {
- return error(1, '远程附件上传失败,请检查配置并重新上传');
- }
- } elseif ($_W['setting']['remote']['type'] == ATTACH_OSS) {
- load()->library('oss');
- load()->model('attachment');
- $buckets = attachment_alioss_buctkets($_W['setting']['remote']['alioss']['key'], $_W['setting']['remote']['alioss']['secret']);
- $host_name = $_W['setting']['remote']['alioss']['internal'] ? '-internal.aliyuncs.com' : '.aliyuncs.com';
- $endpoint = 'http://' . $buckets[$_W['setting']['remote']['alioss']['bucket']]['location'] . $host_name;
- try {
- $ossClient = new \OSS\OssClient($_W['setting']['remote']['alioss']['key'], $_W['setting']['remote']['alioss']['secret'], $endpoint);
- $ossClient->uploadFile($_W['setting']['remote']['alioss']['bucket'], $filename, ATTACHMENT_ROOT . $filename);
- } catch (\OSS\Core\OssException $e) {
- return error(1, $e->getMessage());
- }
- if ($auto_delete_local) {
- file_delete($filename);
- }
- } elseif ($_W['setting']['remote']['type'] == ATTACH_QINIU) {
- load()->library('qiniu');
- $auth = new Qiniu\Auth($_W['setting']['remote']['qiniu']['accesskey'], $_W['setting']['remote']['qiniu']['secretkey']);
- $config = new Qiniu\Config();
- $uploadmgr = new Qiniu\Storage\UploadManager($config);
-
- $putpolicy = Qiniu\base64_urlSafeEncode(json_encode(array(
- 'scope' => $_W['setting']['remote']['qiniu']['bucket'] . ':' . $filename,
- )));
- $uploadtoken = $auth->uploadToken($_W['setting']['remote']['qiniu']['bucket'], $filename, 3600, $putpolicy);
- list($ret, $err) = $uploadmgr->putFile($uploadtoken, $filename, ATTACHMENT_ROOT . '/' . $filename);
- if ($auto_delete_local) {
- file_delete($filename);
- }
- if (null !== $err) {
- return error(1, '远程附件上传失败,请检查配置并重新上传');
- } else {
- return true;
- }
- } elseif ($_W['setting']['remote']['type'] == ATTACH_COS) {
- load()->library('cosv5');
- try {
- $bucket = $_W['setting']['remote']['cos']['bucket'] . '-' . $_W['setting']['remote']['cos']['appid'];
- $cosClient = new Qcloud\Cos\Client(
- array(
- 'region' => $_W['setting']['remote']['cos']['local'],
- 'credentials' => array(
- 'secretId' => $_W['setting']['remote']['cos']['secretid'],
- 'secretKey' => $_W['setting']['remote']['cos']['secretkey']))
- );
- $cosClient->Upload($bucket, $filename, fopen(ATTACHMENT_ROOT . $filename, 'rb'));
- if ($auto_delete_local) {
- file_delete($filename);
- }
- } catch (\Exception $e) {
- return error(1, $e->getMessage());
- }
- }
- return true;
- }
- function file_dir_remote_upload($dir_path, $limit = 200) {
- global $_W;
- if (empty($_W['setting']['remote']['type'])) {
- return error(1, '未开启远程附件');
- }
- $dir_path = safe_gpc_path($dir_path);
- if (!empty($dir_path)) {
- $local_attachment = file_tree_limit($dir_path, $limit);
- } else {
- $local_attachment = array();
- }
- if (is_array($local_attachment) && !empty($local_attachment)) {
- foreach ($local_attachment as $attachment) {
- $filename = str_replace(ATTACHMENT_ROOT, '', $attachment);
- list($image_dir, $file_account) = explode('/', $filename);
- if ('global' == $file_account || !file_is_image($attachment)) {
- continue;
- }
- $result = file_remote_upload($filename);
- if (is_error($result)) {
- return $result;
- }
- }
- }
- return true;
- }
- function file_random_name($dir, $ext) {
- do {
- $filename = random(30) . '.' . $ext;
- } while (file_exists($dir . $filename));
- return $filename;
- }
- function file_delete($file) {
- global $_W;
- if (empty($file)) {
- return false;
- }
- $file = safe_gpc_path($file);
- $file_extension = pathinfo($file, PATHINFO_EXTENSION);
- if (in_array($file_extension, array('php', 'html', 'js', 'css', 'ttf', 'otf', 'eot', 'svg', 'woff'))) {
- return false;
- }
- $uni_remote_setting = uni_setting_load('remote');
- if (empty($uni_remote_setting['remote']) && empty($_W['setting']['remote']['type'])) {
- if (file_exists(ATTACHMENT_ROOT . '/' . $file) && file_is_uni_attach(ATTACHMENT_ROOT . '/' . $file)) {
- file_change_uni_attchsize(ATTACHMENT_ROOT . '/' . $file, false);
- }
- }
- if (file_exists($file)) {
- @unlink($file);
- }
- if (file_exists(ATTACHMENT_ROOT . '/' . $file)) {
- @unlink(ATTACHMENT_ROOT . '/' . $file);
- }
- return true;
- }
- function file_remote_delete($file) {
- global $_W;
- $result = true;
- if (empty($file)) {
- return $result;
- }
- if (!empty($_W['setting']['remote']['type'])) {
- switch ($_W['setting']['remote']['type']) {
- case ATTACH_FTP:
- load()->library('ftp');
- $ftp_config = array(
- 'hostname' => $_W['setting']['remote']['ftp']['hostname'] ?: $_W['setting']['remote']['ftp']['host'],
- 'username' => $_W['setting']['remote']['ftp']['username'],
- 'password' => $_W['setting']['remote']['ftp']['password'],
- 'port' => $_W['setting']['remote']['ftp']['port'],
- 'ssl' => $_W['setting']['remote']['ftp']['ssl'],
- 'passive' => $_W['setting']['remote']['ftp']['passive'] ?: $_W['setting']['remote']['ftp']['pasv'],
- 'timeout' => $_W['setting']['remote']['ftp']['timeout'] ?: $_W['setting']['remote']['ftp']['overtime'],
- 'rootdir' => $_W['setting']['remote']['ftp']['rootdir'] ?: $_W['setting']['remote']['ftp']['dir'],
- );
- $ftp = new Ftp($ftp_config);
- if (true === $ftp->connect()) {
- if (!$ftp->delete_file($file)) {
- $result = error(1, '删除附件失败,请检查配置并重新删除');
- }
- } else {
- $result = error(1, '删除附件失败,请检查配置并重新删除');
- }
- break;
- case ATTACH_OSS:
- load()->model('attachment');
- load()->library('oss');
- $buckets = attachment_alioss_buctkets($_W['setting']['remote']['alioss']['key'], $_W['setting']['remote']['alioss']['secret']);
- $endpoint = 'http://' . $buckets[$_W['setting']['remote']['alioss']['bucket']]['location'] . '.aliyuncs.com';
- try {
- $ossClient = new \OSS\OssClient($_W['setting']['remote']['alioss']['key'], $_W['setting']['remote']['alioss']['secret'], $endpoint);
- $ossClient->deleteObject($_W['setting']['remote']['alioss']['bucket'], $file);
- } catch (\OSS\Core\OssException $e) {
- $result = error(1, '删除oss远程文件失败');
- }
- break;
- case ATTACH_QINIU:
- load()->library('qiniu');
- $auth = new Qiniu\Auth($_W['setting']['remote']['qiniu']['accesskey'], $_W['setting']['remote']['qiniu']['secretkey']);
- $bucketMgr = new Qiniu\Storage\BucketManager($auth);
- $error = $bucketMgr->delete($_W['setting']['remote']['qiniu']['bucket'], $file);
- if ($error instanceof Qiniu\Http\Error) {
- if (612 != $error->code()) {
- $result = error(1, '删除七牛远程文件失败');
- }
- }
- break;
- case ATTACH_COS:
- load()->library('cosv5');
- try {
- $key = $file;
- $bucket = $_W['setting']['remote']['cos']['bucket'] . '-' . $_W['setting']['remote']['cos']['appid'];
- $cosClient = new Qcloud\Cos\Client(
- array(
- 'region' => $_W['setting']['remote']['cos']['local'],
- 'credentials' => array(
- 'secretId' => $_W['setting']['remote']['cos']['secretid'],
- 'secretKey' => $_W['setting']['remote']['cos']['secretkey']))
- );
- $cosClient->deleteObjects(array(
- 'Bucket' => $bucket,
- 'Objects' => array(array('Key' => $key))
- ));
- } catch (\Exception $e) {
- $result = error(1, '删除cos远程文件失败');
- }
- break;
- }
- }
- return $result;
- }
- function file_image_thumb($srcfile, $desfile = '', $width = 0) {
- global $_W;
- load()->classs('image');
- if (0 == intval($width)) {
- load()->model('setting');
- $width = intval($_W['setting']['upload']['image']['width']);
- }
- if (empty($desfile)) {
- $ext = pathinfo($srcfile, PATHINFO_EXTENSION);
- $srcdir = dirname($srcfile);
- do {
- $desfile = $srcdir . '/' . random(30) . ".{$ext}";
- } while (file_exists($desfile));
- }
- $des = dirname($desfile);
-
- if (!file_exists($des)) {
- if (!mkdirs($des)) {
- return error('-1', '创建目录失败');
- }
- } elseif (!is_writable($des)) {
- return error('-1', '目录无法写入');
- }
-
- $org_info = @getimagesize($srcfile);
- if ($org_info) {
- if (0 == $width || $width > $org_info[0]) {
- copy($srcfile, $desfile);
- return str_replace(ATTACHMENT_ROOT . '/', '', $desfile);
- }
- }
-
- $scale_org = $org_info[0] / $org_info[1];
-
- $height = $width / $scale_org;
- $desfile = Image::create($srcfile)->resize($width, $height)->saveTo($desfile);
- if (!$desfile) {
- return false;
- }
- return str_replace(ATTACHMENT_ROOT . '/', '', $desfile);
- }
- function file_image_crop($src, $desfile, $width = 400, $height = 300, $position = 1) {
- load()->classs('image');
- $des = dirname($desfile);
-
- if (!file_exists($des)) {
- if (!mkdirs($des)) {
- return error('-1', '创建目录失败');
- }
- } elseif (!is_writable($des)) {
- return error('-1', '目录无法写入');
- }
- return Image::create($src)
- ->crop($width, $height, $position)
- ->saveTo($desfile);
- }
- function file_lists($filepath, $subdir = 1, $ex = '', $isdir = 0, $md5 = 0, $enforcement = 0) {
- static $file_list = array();
- if ($enforcement) {
- $file_list = array();
- }
- $flags = $isdir ? GLOB_ONLYDIR : 0;
- $list = glob($filepath . '*' . (!empty($ex) && empty($subdir) ? '.' . $ex : ''), $flags);
- if (!empty($ex)) {
- $ex_num = strlen($ex);
- }
- foreach ($list as $k => $v) {
- $v = str_replace('\\', '/', $v);
- $v1 = str_replace(IA_ROOT . '/', '', $v);
- if ($subdir && is_dir($v)) {
- file_lists($v . '/', $subdir, $ex, $isdir, $md5);
- continue;
- }
- if (!empty($ex) && strtolower(substr($v, -$ex_num, $ex_num)) == $ex) {
- if ($md5) {
- $file_list[$v1] = md5_file($v);
- } else {
- $file_list[] = $v1;
- }
- continue;
- } elseif (!empty($ex) && strtolower(substr($v, -$ex_num, $ex_num)) != $ex) {
- unset($list[$k]);
- continue;
- }
- }
- return $file_list;
- }
- function file_remote_attach_fetch($url, $limit = 0, $path = '') {
- global $_W;
- $url = trim($url);
- if (empty($url)) {
- return error(-1, '文件地址不存在');
- }
- $get_headers = file_media_content_type($url);
- if (empty($get_headers)) {
- return error(-1, '提取资源失败, 资源文件类型错误.');
- } else {
- $ext = $get_headers['ext'];
- $type = $get_headers['type'];
- }
- if (empty($path)) {
- $path = $type . "/{$_W['uniacid']}/" . date('Y/m/');
- } else {
- $path = parse_path($path);
- }
- if (!$path) {
- return error(-1, '提取文件失败: 上传路径配置有误.');
- }
- if (!is_dir(ATTACHMENT_ROOT . $path)) {
- if (!mkdirs(ATTACHMENT_ROOT . $path, 0700, true)) {
- return error(-1, '提取文件失败: 权限不足.');
- }
- }
-
- $resp = ihttp_get($url);
- if (is_error($resp)) {
- return error(-1, '提取文件失败, 错误信息: ' . $resp['message']);
- }
- if (200 != intval($resp['code'])) {
- return error(-1, '提取文件失败: 未找到该资源文件.');
- }
-
- if (!$limit) {
- if ('images' == $type) {
- $limit = $_W['setting']['upload']['image']['limit'] * 1024;
- } else {
- $limit = $_W['setting']['upload']['audio']['limit'] * 1024;
- }
- } else {
- $limit = $limit * 1024;
- }
- if (intval($resp['headers']['Content-Length']) > $limit) {
- return error(-1, '上传的媒体文件过大(' . sizecount($resp['headers']['Content-Length']) . ' > ' . sizecount($limit));
- }
- $filename = file_random_name(ATTACHMENT_ROOT . $path, $ext);
- $pathname = $path . $filename;
- $fullname = ATTACHMENT_ROOT . $pathname;
- if (false == file_put_contents($fullname, $resp['content'])) {
- return error(-1, '提取失败.');
- }
- return $pathname;
- }
- function file_media_content_type($url) {
- $file_header = iget_headers($url, 1);
- if (empty($url) || !is_array($file_header)) {
- return false;
- }
- switch ($file_header['Content-Type']) {
- case 'application/x-jpg':
- case 'image/jpg':
- case 'image/jpeg':
- $ext = 'jpg';
- $type = 'images';
- break;
- case 'image/png':
- $ext = 'png';
- $type = 'images';
- break;
- case 'image/gif':
- $ext = 'gif';
- $type = 'images';
- break;
- case 'video/mp4':
- case 'video/mpeg4':
- $ext = 'mp4';
- $type = 'videos';
- break;
- case 'video/x-ms-wmv':
- $ext = 'wmv';
- $type = 'videos';
- break;
- case 'audio/mpeg':
- $ext = 'mp3';
- $type = 'audios';
- break;
- case 'audio/mp4':
- $ext = 'mp4';
- $type = 'audios';
- break;
- case 'audio/x-ms-wma':
- $ext = 'wma';
- $type = 'audios';
- break;
- default:
- return false;
- break;
- }
- return array('ext' => $ext, 'type' => $type);
- }
- function file_allowed_media($type) {
- global $_W;
- if (!in_array($type, array('image', 'audio'))) {
- return array();
- }
- if (empty($_W['setting']['upload'][$type]['extention']) || !is_array($_W['setting']['upload'][$type]['extention'])) {
- return $_W['config']['upload'][$type]['extentions'];
- }
- return $_W['setting']['upload'][$type]['extention'];
- }
- function file_is_image($url) {
- global $_W;
- $allowed_media = file_allowed_media('image');
- if ('//' == substr($url, 0, 2)) {
- $url = 'http:' . $url;
- }
-
- if (0 == strpos($url, $_W['siteroot'] . 'attachment/')) {
- $url = str_replace($_W['siteroot'] . 'attachment/', ATTACHMENT_ROOT, $url);
- }
- $lower_url = strtolower($url);
- if (('http://' == substr($lower_url, 0, 7)) || ('https://' == substr($lower_url, 0, 8))) {
- $analysis_url = parse_url($lower_url);
- $preg_str = '/.*(\.' . implode('|\.', $allowed_media) . ')$/';
- if (!empty($analysis_url['query']) || !preg_match($preg_str, $lower_url) || !preg_match($preg_str, $analysis_url['path'])) {
- return false;
- }
- $img_headers = file_media_content_type($url);
- if (empty($img_headers) || !in_array($img_headers['ext'], $allowed_media)) {
- return false;
- }
- }
- $info = igetimagesize($url);
- if (!is_array($info)) {
- return false;
- }
- return true;
- }
- function file_image_quality($src, $to_path, $ext) {
- load()->classs('image');
- global $_W;
-
- if ('gif' == strtolower($ext)) {
- return;
- }
- $quality = intval($_W['setting']['upload']['image']['zip_percentage']);
- if ($quality <= 0 || $quality >= 100) {
- return;
- }
-
- if (filesize($src) / 1024 > 5120) {
- return;
- }
- $result = Image::create($src, $ext)->saveTo($to_path, $quality);
- return $result;
- }
- function file_is_uni_attach($file) {
- global $_W;
- if (!is_file($file)) {
- return error(-1, '未找到的文件。');
- }
- return strpos($file, "/{$_W['uniacid']}/") > 0;
- }
- function file_check_uni_space($file) {
- global $_W;
- if (!is_file($file)) {
- return error(-1, '未找到上传的文件。');
- }
- $uni_remote_setting = uni_setting_load('remote');
- if (empty($uni_remote_setting['remote']['type'])) {
- $uni_setting = uni_setting_load(array('attachment_limit', 'attachment_size'));
- $attachment_limit = intval($uni_setting['attachment_limit']);
- if (0 == $attachment_limit) {
- $upload = setting_load('upload');
- $attachment_limit = empty($upload['upload']['attachment_limit']) ? 0 : intval($upload['upload']['attachment_limit']);
- }
- if ($attachment_limit > 0) {
- $file_size = max(1, round(filesize($file) / 1024));
- if (($file_size + $uni_setting['attachment_size']) > ($attachment_limit * 1024)) {
- return error(-1, '上传失败,可使用的附件空间不足!');
- }
- }
- }
- return true;
- }
- function file_change_uni_attchsize($file, $is_add = true) {
- global $_W;
- if (!is_file($file)) {
- return error(-1, '未找到的文件。');
- }
- $file_size = round(filesize($file) / 1024);
- $file_size = max(1, $file_size);
- $result = true;
- $uni_remote_setting = uni_setting_load('remote');
- if (empty($uni_remote_setting['remote']['type'])) {
- $uniacid = pdo_getcolumn('uni_settings', array('uniacid' => $_W['uniacid']), 'uniacid');
- if (empty($uniacid)) {
- $result = pdo_insert('uni_settings', array('attachment_size' => $file_size, 'uniacid' => $_W['uniacid']));
- } else {
- if (!$is_add) {
- $file_size = -$file_size;
- }
- $result = pdo_update('uni_settings', array('attachment_size +=' => $file_size), array('uniacid' => $_W['uniacid']));
- }
- $cachekey = cache_system_key('unisetting', array('uniacid' => $uniacid));
- $unisetting = cache_load($cachekey);
- $unisetting['attachment_size'] += $file_size;
- $unisetting['attachment_size'] = max(0, $unisetting['attachment_size']);
- cache_write($cachekey, $unisetting);
- }
- return $result;
- }
|