123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- <?php
- error_reporting(E_ERROR);
- /**
- * Created by JetBrains PhpStorm.
- * User: taoqili
- * Date: 12-7-18
- * Time: 上午11: 32
- * UEditor编辑器通用上传类
- */
- class Uploader
- {
- private $fileField; //文件域名
- private $file; //文件上传对象
- private $base64; //文件上传对象
- private $config; //配置信息
- private $oriName; //原始文件名
- private $fileName; //新文件名
- private $fullName; //完整文件名,即从当前配置目录开始的URL
- private $filePath; //完整文件名,即从当前配置目录开始的URL
- private $fileSize; //文件大小
- private $fileType; //文件类型
- private $stateInfo; //上传状态信息,
- private $stateMap = array( //上传状态映射表,国际化用户需考虑此处数据的国际化
- "SUCCESS", //上传成功标记,在UEditor中内不可改变,否则flash判断会出错
- "文件大小超出 upload_max_filesize 限制",
- "文件大小超出 MAX_FILE_SIZE 限制",
- "文件未被完整上传",
- "没有文件被上传",
- "上传文件为空",
- "ERROR_TMP_FILE" => "临时文件错误",
- "ERROR_TMP_FILE_NOT_FOUND" => "找不到临时文件",
- "ERROR_SIZE_EXCEED" => "文件大小超出网站限制",
- "ERROR_TYPE_NOT_ALLOWED" => "文件类型不允许",
- "ERROR_CREATE_DIR" => "目录创建失败",
- "ERROR_DIR_NOT_WRITEABLE" => "目录没有写权限",
- "ERROR_FILE_MOVE" => "文件保存时出错",
- "ERROR_FILE_NOT_FOUND" => "找不到上传文件",
- "ERROR_WRITE_CONTENT" => "写入文件内容错误",
- "ERROR_UNKNOWN" => "未知错误",
- "ERROR_DEAD_LINK" => "链接不可用",
- "ERROR_HTTP_LINK" => "链接不是http链接",
- "ERROR_HTTP_CONTENTTYPE" => "链接contentType不正确"
- );
- /**
- * 构造函数
- * @param string $fileField 表单名称
- * @param array $config 配置项
- * @param bool $base64 是否解析base64编码,可省略。若开启,则$fileField代表的是base64编码的字符串表单名
- */
- public function __construct($fileField, $config, $type = "upload")
- {
- $this->fileField = $fileField;
- $this->config = $config;
- $this->type = $type;
- if ($type == "remote") {
- $this->saveRemote();
- } else if($type == "base64") {
- $this->upBase64();
- } else {
- $this->upFile();
- }
- $this->stateMap['ERROR_TYPE_NOT_ALLOWED'] = iconv('unicode', 'utf-8', $this->stateMap['ERROR_TYPE_NOT_ALLOWED']);
- }
- /**
- * 上传文件的主处理方法
- * @return mixed
- */
- private function upFile()
- {
- $file = $this->file = $_FILES[$this->fileField];
- if (!$file) {
- $this->stateInfo = $this->getStateInfo("ERROR_FILE_NOT_FOUND");
- return;
- }
- if ($this->file['error']) {
- $this->stateInfo = $this->getStateInfo($file['error']);
- return;
- } else if (!file_exists($file['tmp_name'])) {
- $this->stateInfo = $this->getStateInfo("ERROR_TMP_FILE_NOT_FOUND");
- return;
- } else if (!is_uploaded_file($file['tmp_name'])) {
- $this->stateInfo = $this->getStateInfo("ERROR_TMPFILE");
- return;
- }
- $this->oriName = $file['name'];
- $this->fileSize = $file['size'];
- $this->fileType = $this->getFileExt();
- $this->fullName = $this->getFullName();
- $this->filePath = $this->getFilePath();
- $this->fileName = $this->getFileName();
- $dirname = dirname($this->filePath);
- //检查文件大小是否超出限制
- if (!$this->checkSize()) {
- $this->stateInfo = $this->getStateInfo("ERROR_SIZE_EXCEED");
- return;
- }
- //检查是否不允许的文件格式
- if (!$this->checkType()) {
- $this->stateInfo = $this->getStateInfo("ERROR_TYPE_NOT_ALLOWED");
- return;
- }
- //创建目录失败
- if (!file_exists($dirname) && !mkdir($dirname, 0777, true)) {
- $this->stateInfo = $this->getStateInfo("ERROR_CREATE_DIR");
- return;
- } else if (!is_writeable($dirname)) {
- $this->stateInfo = $this->getStateInfo("ERROR_DIR_NOT_WRITEABLE");
- return;
- }
- //移动文件
- if (!(move_uploaded_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移动失败
- $this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
- } else { //移动成功
- $this->stateInfo = $this->stateMap[0];
- $this->watermark($this->filePath,$this->filePath);
- }
- }
- /**
- * 处理base64编码的图片上传
- * @return mixed
- */
- private function upBase64()
- {
- $base64Data = $_POST[$this->fileField];
- $img = base64_decode($base64Data);
- $this->oriName = $this->config['oriName'];
- $this->fileSize = strlen($img);
- $this->fileType = $this->getFileExt();
- $this->fullName = $this->getFullName();
- $this->filePath = $this->getFilePath();
- $this->fileName = $this->getFileName();
- $dirname = dirname($this->filePath);
- //检查文件大小是否超出限制
- if (!$this->checkSize()) {
- $this->stateInfo = $this->getStateInfo("ERROR_SIZE_EXCEED");
- return;
- }
- //创建目录失败
- if (!file_exists($dirname) && !mkdir($dirname, 0777, true)) {
- $this->stateInfo = $this->getStateInfo("ERROR_CREATE_DIR");
- return;
- } else if (!is_writeable($dirname)) {
- $this->stateInfo = $this->getStateInfo("ERROR_DIR_NOT_WRITEABLE");
- return;
- }
- //移动文件
- if (!(file_put_contents($this->filePath, $img) && file_exists($this->filePath))) { //移动失败
- $this->stateInfo = $this->getStateInfo("ERROR_WRITE_CONTENT");
- } else { //移动成功
- $this->stateInfo = $this->stateMap[0];
- $this->watermark($this->filePath,$this->filePath);
- }
- }
- /**
- * 拉取远程图片
- * @return mixed
- */
- private function saveRemote()
- {
- $imgUrl = htmlspecialchars($this->fileField);
- $imgUrl = str_replace("&", "&", $imgUrl);
- //http开头验证
- if (strpos($imgUrl, "http") !== 0) {
- $this->stateInfo = $this->getStateInfo("ERROR_HTTP_LINK");
- return;
- }
- //获取请求头并检测死链
- $heads = get_headers($imgUrl, 1);
- if (!(stristr($heads[0], "200") && stristr($heads[0], "OK"))) {
- $this->stateInfo = $this->getStateInfo("ERROR_DEAD_LINK");
- return;
- }
- //格式验证(扩展名验证和Content-Type验证)
- $fileType = strtolower(strrchr($imgUrl, '.'));
- if (!in_array($fileType, $this->config['allowFiles']) || !isset($heads['Content-Type']) || !stristr($heads['Content-Type'], "image")) {
- $this->stateInfo = $this->getStateInfo("ERROR_HTTP_CONTENTTYPE");
- return;
- }
- //打开输出缓冲区并获取远程图片
- ob_start();
- $context = stream_context_create(
- array('http' => array(
- 'follow_location' => false // don't follow redirects
- ))
- );
- readfile($imgUrl, false, $context);
- $img = ob_get_contents();
- ob_end_clean();
- preg_match("/[\/]([^\/]*)[\.]?[^\.\/]*$/", $imgUrl, $m);
- $this->oriName = $m ? $m[1]:"";
- $this->fileSize = strlen($img);
- $this->fileType = $this->getFileExt();
- $this->fullName = $this->getFullName();
- $this->filePath = $this->getFilePath();
- $this->fileName = $this->getFileName();
- $dirname = dirname($this->filePath);
- //检查文件大小是否超出限制
- if (!$this->checkSize()) {
- $this->stateInfo = $this->getStateInfo("ERROR_SIZE_EXCEED");
- return;
- }
- //创建目录失败
- if (!file_exists($dirname) && !mkdir($dirname, 0777, true)) {
- $this->stateInfo = $this->getStateInfo("ERROR_CREATE_DIR");
- return;
- } else if (!is_writeable($dirname)) {
- $this->stateInfo = $this->getStateInfo("ERROR_DIR_NOT_WRITEABLE");
- return;
- }
- //移动文件
- if (!(file_put_contents($this->filePath, $img) && file_exists($this->filePath))) { //移动失败
- $this->stateInfo = $this->getStateInfo("ERROR_WRITE_CONTENT");
- } else { //移动成功
- $this->stateInfo = $this->stateMap[0];
- $this->watermark($this->filePath,$this->filePath);
- }
- }
- /**
- * 上传错误检查
- * @param $errCode
- * @return string
- */
- private function getStateInfo($errCode)
- {
- return !$this->stateMap[$errCode] ? $this->stateMap["ERROR_UNKNOWN"] : $this->stateMap[$errCode];
- }
- /**
- * 获取文件扩展名
- * @return string
- */
- private function getFileExt()
- {
- return strtolower(strrchr($this->oriName, '.'));
- }
- /**
- * 重命名文件
- * @return string
- */
- private function getFullName()
- {
- //替换日期事件
- $t = time();
- $d = explode('-', date("Y-y-m-d-H-i-s"));
- $format = $this->config["pathFormat"];
- $format = str_replace("{yyyy}", $d[0], $format);
- $format = str_replace("{yy}", $d[1], $format);
- $format = str_replace("{mm}", $d[2], $format);
- $format = str_replace("{dd}", $d[3], $format);
- $format = str_replace("{hh}", $d[4], $format);
- $format = str_replace("{ii}", $d[5], $format);
- $format = str_replace("{ss}", $d[6], $format);
- $format = str_replace("{time}", $t, $format);
- //过滤文件名的非法自负,并替换文件名
- $oriName = substr($this->oriName, 0, strrpos($this->oriName, '.'));
- $oriName = preg_replace("/[\|\?\"\<\>\/\*\\\\]+/", '', $oriName);
- $format = str_replace("{filename}", $oriName, $format);
- //替换随机字符串
- $randNum = rand(1, 10000000000) . rand(1, 10000000000);
- if (preg_match("/\{rand\:([\d]*)\}/i", $format, $matches)) {
- $format = preg_replace("/\{rand\:[\d]*\}/i", substr($randNum, 0, $matches[1]), $format);
- }
- if($this->fileType){
- $ext = $this->fileType;
- } else {
- $ext = $this->getFileExt();
- }
- return $format . $ext;
- }
- /**
- * 获取文件名
- * @return string
- */
- private function getFileName () {
- return substr($this->filePath, strrpos($this->filePath, '/') + 1);
- }
- /**
- * 获取文件完整路径
- * @return string
- */
- private function getFilePath()
- {
- $fullname = $this->fullName;
- $rootPath = $_SERVER['DOCUMENT_ROOT'];
- if (substr($fullname, 0, 1) != '/') {
- $fullname = '/' . $fullname;
- }
- return $rootPath . $fullname;
- }
- /**
- * 文件类型检测
- * @return bool
- */
- private function checkType()
- {
- return in_array($this->getFileExt(), $this->config["allowFiles"]);
- }
- /**
- * 文件大小检测
- * @return bool
- */
- private function checkSize()
- {
- return $this->fileSize <= ($this->config["maxSize"]);
- }
- /**
- * 获取当前上传成功文件的各项信息
- * @return array
- */
- public function getFileInfo()
- {
- return array(
- "state" => $this->stateInfo,
- "url" => $this->fullName,
- "title" => $this->fileName,
- "original" => $this->oriName,
- "type" => $this->fileType,
- "size" => $this->fileSize
- );
- }
- //图片加水印
- public function watermark($source, $target = '', $w_pos = '', $w_img = '', $w_text = 'prfmun',$w_font = 8, $w_color = '#ff0000') {
- $configs = include "../../../../caches/configs/system.php";
- $uploaders_configs = include "../../../../caches/caches_commons/caches_data/sitelist.cache.php";
- $siteid = $this->config["siteid"] ? $this->config["siteid"] : 1;
- $uploaders_configs = json_decode($uploaders_configs[$siteid]["setting"],true);
- $this->w_img = "../../../../".str_replace("//","/",$uploaders_configs["watermark_img"]);
- $this->w_pos = $uploaders_configs["watermark_pos"];
- $this->w_minwidth = $uploaders_configs["watermark_minwidth"];
- $this->w_minheight = $uploaders_configs["watermark_minheight"];
- $this->w_quality = $uploaders_configs["watermark_quality"];
- $this->w_pct = $uploaders_configs["watermark_pct"];
- $this->watermark_enable = $uploaders_configs["watermark_enable"];
- $w_pos = $w_pos ? $w_pos : $this->w_pos;
- $w_img = $w_img ? $w_img : $this->w_img;
- if(!$this->watermark_enable || !$this->check($source)) return false;
- if(!$target) $target = $source;
- //$w_img = PHPCMS_PATH.$w_img;
- //define('WWW_PATH', dirname(dirname(dirname(__FILE__)));
- $source_info = getimagesize($source);
- $source_w = $source_info[0];
- $source_h = $source_info[1];
- if($source_w < $this->w_minwidth || $source_h < $this->w_minheight) return false;
- switch($source_info[2]) {
- case 1 :
- $source_img = imagecreatefromgif($source);
- break;
- case 2 :
- $source_img = imagecreatefromjpeg($source);
- break;
- case 3 :
- $source_img = imagecreatefrompng($source);
- break;
- default :
- return false;
- }
- if(!empty($w_img) && file_exists($w_img)) {
- $ifwaterimage = 1;
- $water_info = getimagesize($w_img);
- $width = $water_info[0];
- $height = $water_info[1];
- switch($water_info[2]) {
- case 1 :
- $water_img = imagecreatefromgif($w_img);
- break;
- case 2 :
- $water_img = imagecreatefromjpeg($w_img);
- break;
- case 3 :
- $water_img = imagecreatefrompng($w_img);
- break;
- default :
- return;
- }
- } else {
- $ifwaterimage = 0;
- $temp = imagettfbbox(ceil($w_font*2.5), 0, PC_PATH.'libs/data/font/elephant.ttf', $w_text);
- $width = $temp[2] - $temp[6];
- $height = $temp[3] - $temp[7];
- unset($temp);
- }
- switch($w_pos) {
- case 1:
- $wx = 5;
- $wy = 5;
- break;
- case 2:
- $wx = ($source_w - $width) / 2;
- $wy = 0;
- break;
- case 3:
- $wx = $source_w - $width;
- $wy = 0;
- break;
- case 4:
- $wx = 0;
- $wy = ($source_h - $height) / 2;
- break;
- case 5:
- $wx = ($source_w - $width) / 2;
- $wy = ($source_h - $height) / 2;
- break;
- case 6:
- $wx = $source_w - $width;
- $wy = ($source_h - $height) / 2;
- break;
- case 7:
- $wx = 0;
- $wy = $source_h - $height;
- break;
- case 8:
- $wx = ($source_w - $width) / 2;
- $wy = $source_h - $height;
- break;
- case 9:
- $wx = $source_w - $width;
- $wy = $source_h - $height;
- break;
- case 10:
- $wx = rand(0,($source_w - $width));
- $wy = rand(0,($source_h - $height));
- break;
- default:
- $wx = rand(0,($source_w - $width));
- $wy = rand(0,($source_h - $height));
- break;
- }
- if($ifwaterimage) {
- if($water_info[2] == 3) {
- imagecopy($source_img, $water_img, $wx, $wy, 0, 0, $width, $height);
- } else {
- imagecopymerge($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $this->w_pct);
- }
- } else {
- if(!empty($w_color) && (strlen($w_color)==7)) {
- $r = hexdec(substr($w_color,1,2));
- $g = hexdec(substr($w_color,3,2));
- $b = hexdec(substr($w_color,5));
- } else {
- return;
- }
- imagestring($source_img,$w_font,$wx,$wy,$w_text,imagecolorallocate($source_img,$r,$g,$b));
- }
- switch($source_info[2]) {
- case 1 :
- imagegif($source_img, $target);
- break;
- case 2 :
- imagejpeg($source_img, $target, $this->w_quality);
- break;
- case 3 :
- imagepng($source_img, $target);
- break;
- default :
- return;
- }
- if(isset($water_info)) {
- unset($water_info);
- }
- if(isset($water_img)) {
- imagedestroy($water_img);
- }
- unset($source_info);
- imagedestroy($source_img);
- return true;
- }
- public function check($image) {
- return extension_loaded('gd') && preg_match("/\.(jpg|jpeg|gif|png)/i", $image, $m) && file_exists($image) && function_exists('imagecreatefrom'.($m[1] == 'jpg' ? 'jpeg' : $m[1]));
- }
- }
|