Uploader.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <?php
  2. namespace App\Services;
  3. class Uploader
  4. {
  5. private $fileField; //文件域名
  6. private $file; //文件上传对象
  7. private $base64; //文件上传对象
  8. private $config; //配置信息
  9. private $oriName; //原始文件名
  10. private $fileName; //新文件名
  11. private $fullName; //完整文件名,即从当前配置目录开始的URL
  12. private $filePath; //完整文件名,即从当前配置目录开始的URL
  13. private $fileSize; //文件大小
  14. private $fileType; //文件类型
  15. private $stateInfo; //上传状态信息,
  16. private $stateMap = array( //上传状态映射表,国际化用户需考虑此处数据的国际化
  17. "SUCCESS", //上传成功标记,在UEditor中内不可改变,否则flash判断会出错
  18. "文件大小超出 upload_max_filesize 限制",
  19. "文件大小超出 MAX_FILE_SIZE 限制",
  20. "文件未被完整上传",
  21. "没有文件被上传",
  22. "上传文件为空",
  23. "ERROR_TMP_FILE" => "临时文件错误",
  24. "ERROR_TMP_FILE_NOT_FOUND" => "找不到临时文件",
  25. "ERROR_SIZE_EXCEED" => "文件大小超出网站限制",
  26. "ERROR_TYPE_NOT_ALLOWED" => "文件类型不允许",
  27. "ERROR_CREATE_DIR" => "目录创建失败",
  28. "ERROR_DIR_NOT_WRITEABLE" => "目录没有写权限",
  29. "ERROR_FILE_MOVE" => "文件保存时出错",
  30. "ERROR_FILE_NOT_FOUND" => "找不到上传文件",
  31. "ERROR_WRITE_CONTENT" => "写入文件内容错误",
  32. "ERROR_UNKNOWN" => "未知错误",
  33. "ERROR_DEAD_LINK" => "链接不可用",
  34. "ERROR_HTTP_LINK" => "链接不是http链接",
  35. "ERROR_HTTP_CONTENTTYPE" => "链接contentType不正确",
  36. "INVALID_URL" => "非法 URL",
  37. "INVALID_IP" => "非法 IP"
  38. );
  39. /**
  40. * 构造函数
  41. * @param string $fileField 表单名称
  42. * @param array $config 配置项
  43. * @param bool $base64 是否解析base64编码,可省略。若开启,则$fileField代表的是base64编码的字符串表单名
  44. */
  45. public function __construct($fileField, $config, $type = "upload")
  46. {
  47. $this->fileField = $fileField;
  48. $this->config = $config;
  49. $this->type = $type;
  50. if ($type == "remote") {
  51. $this->saveRemote();
  52. } else if($type == "base64") {
  53. $this->upBase64();
  54. } else {
  55. $this->upFile();
  56. }
  57. // $this->stateMap['ERROR_TYPE_NOT_ALLOWED'] = iconv('unicode', 'utf-8', $this->stateMap['ERROR_TYPE_NOT_ALLOWED']);
  58. }
  59. /**
  60. * 上传文件的主处理方法
  61. * @return mixed
  62. */
  63. private function upFile()
  64. {
  65. $file = $this->file = $_FILES[$this->fileField];
  66. if (!$file) {
  67. $this->stateInfo = $this->getStateInfo("ERROR_FILE_NOT_FOUND");
  68. return;
  69. }
  70. if ($this->file['error']) {
  71. $this->stateInfo = $this->getStateInfo($file['error']);
  72. return;
  73. } else if (!file_exists($file['tmp_name'])) {
  74. $this->stateInfo = $this->getStateInfo("ERROR_TMP_FILE_NOT_FOUND");
  75. return;
  76. } else if (!is_uploaded_file($file['tmp_name'])) {
  77. $this->stateInfo = $this->getStateInfo("ERROR_TMPFILE");
  78. return;
  79. }
  80. $this->oriName = $file['name'];
  81. $this->fileSize = $file['size'];
  82. $this->fileType = $this->getFileExt();
  83. $this->fullName = $this->getFullName();
  84. $this->filePath = $this->getFilePath();
  85. $this->fileName = $this->getFileName();
  86. $dirname = dirname($this->filePath);
  87. //检查文件大小是否超出限制
  88. if (!$this->checkSize()) {
  89. $this->stateInfo = $this->getStateInfo("ERROR_SIZE_EXCEED");
  90. return;
  91. }
  92. //检查是否不允许的文件格式
  93. if (!$this->checkType()) {
  94. $this->stateInfo = $this->getStateInfo("ERROR_TYPE_NOT_ALLOWED");
  95. return;
  96. }
  97. //创建目录失败
  98. if (!file_exists($dirname) && !mkdir($dirname, 0777, true)) {
  99. $this->stateInfo = $this->getStateInfo("ERROR_CREATE_DIR");
  100. return;
  101. } else if (!is_writeable($dirname)) {
  102. $this->stateInfo = $this->getStateInfo("ERROR_DIR_NOT_WRITEABLE");
  103. return;
  104. }
  105. //移动文件
  106. if (!(move_uploaded_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移动失败
  107. $this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
  108. } else { //移动成功
  109. $this->stateInfo = $this->stateMap[0];
  110. }
  111. }
  112. /**
  113. * 处理base64编码的图片上传
  114. * @return mixed
  115. */
  116. private function upBase64()
  117. {
  118. $base64Data = $_POST[$this->fileField];
  119. $img = base64_decode($base64Data);
  120. $this->oriName = $this->config['oriName'];
  121. $this->fileSize = strlen($img);
  122. $this->fileType = $this->getFileExt();
  123. $this->fullName = $this->getFullName();
  124. $this->filePath = $this->getFilePath();
  125. $this->fileName = $this->getFileName();
  126. $dirname = dirname($this->filePath);
  127. //检查文件大小是否超出限制
  128. if (!$this->checkSize()) {
  129. $this->stateInfo = $this->getStateInfo("ERROR_SIZE_EXCEED");
  130. return;
  131. }
  132. //创建目录失败
  133. if (!file_exists($dirname) && !mkdir($dirname, 0777, true)) {
  134. $this->stateInfo = $this->getStateInfo("ERROR_CREATE_DIR");
  135. return;
  136. } else if (!is_writeable($dirname)) {
  137. $this->stateInfo = $this->getStateInfo("ERROR_DIR_NOT_WRITEABLE");
  138. return;
  139. }
  140. //移动文件
  141. if (!(file_put_contents($this->filePath, $img) && file_exists($this->filePath))) { //移动失败
  142. $this->stateInfo = $this->getStateInfo("ERROR_WRITE_CONTENT");
  143. } else { //移动成功
  144. $this->stateInfo = $this->stateMap[0];
  145. }
  146. }
  147. /**
  148. * 拉取远程图片
  149. * @return mixed
  150. */
  151. private function saveRemote()
  152. {
  153. $imgUrl = htmlspecialchars($this->fileField);
  154. $imgUrl = str_replace("&amp;", "&", $imgUrl);
  155. //http开头验证
  156. if (strpos($imgUrl, "http") !== 0) {
  157. $this->stateInfo = $this->getStateInfo("ERROR_HTTP_LINK");
  158. return;
  159. }
  160. preg_match('/(^https*:\/\/[^:\/]+)/', $imgUrl, $matches);
  161. $host_with_protocol = count($matches) > 1 ? $matches[1] : '';
  162. // 判断是否是合法 url
  163. if (!filter_var($host_with_protocol, FILTER_VALIDATE_URL)) {
  164. $this->stateInfo = $this->getStateInfo("INVALID_URL");
  165. return;
  166. }
  167. preg_match('/^https*:\/\/(.+)/', $host_with_protocol, $matches);
  168. $host_without_protocol = count($matches) > 1 ? $matches[1] : '';
  169. // 此时提取出来的可能是 ip 也有可能是域名,先获取 ip
  170. $ip = gethostbyname($host_without_protocol);
  171. // 判断是否是私有 ip
  172. if(!filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE)) {
  173. $this->stateInfo = $this->getStateInfo("INVALID_IP");
  174. return;
  175. }
  176. //获取请求头并检测死链
  177. $heads = get_headers($imgUrl, 1);
  178. if (!(stristr($heads[0], "200") && stristr($heads[0], "OK"))) {
  179. $this->stateInfo = $this->getStateInfo("ERROR_DEAD_LINK");
  180. return;
  181. }
  182. //格式验证(扩展名验证和Content-Type验证)
  183. $fileType = strtolower(strrchr($imgUrl, '.'));
  184. if (!in_array($fileType, $this->config['allowFiles']) || !isset($heads['Content-Type']) || !stristr($heads['Content-Type'], "image")) {
  185. $this->stateInfo = $this->getStateInfo("ERROR_HTTP_CONTENTTYPE");
  186. return;
  187. }
  188. //打开输出缓冲区并获取远程图片
  189. ob_start();
  190. $context = stream_context_create(
  191. array('http' => array(
  192. 'follow_location' => false // don't follow redirects
  193. ))
  194. );
  195. readfile($imgUrl, false, $context);
  196. $img = ob_get_contents();
  197. ob_end_clean();
  198. preg_match("/[\/]([^\/]*)[\.]?[^\.\/]*$/", $imgUrl, $m);
  199. $this->oriName = $m ? $m[1]:"";
  200. $this->fileSize = strlen($img);
  201. $this->fileType = $this->getFileExt();
  202. $this->fullName = $this->getFullName();
  203. $this->filePath = $this->getFilePath();
  204. $this->fileName = $this->getFileName();
  205. $dirname = dirname($this->filePath);
  206. //检查文件大小是否超出限制
  207. if (!$this->checkSize()) {
  208. $this->stateInfo = $this->getStateInfo("ERROR_SIZE_EXCEED");
  209. return;
  210. }
  211. //创建目录失败
  212. if (!file_exists($dirname) && !mkdir($dirname, 0777, true)) {
  213. $this->stateInfo = $this->getStateInfo("ERROR_CREATE_DIR");
  214. return;
  215. } else if (!is_writeable($dirname)) {
  216. $this->stateInfo = $this->getStateInfo("ERROR_DIR_NOT_WRITEABLE");
  217. return;
  218. }
  219. //移动文件
  220. if (!(file_put_contents($this->filePath, $img) && file_exists($this->filePath))) { //移动失败
  221. $this->stateInfo = $this->getStateInfo("ERROR_WRITE_CONTENT");
  222. } else { //移动成功
  223. $this->stateInfo = $this->stateMap[0];
  224. }
  225. }
  226. /**
  227. * 上传错误检查
  228. * @param $errCode
  229. * @return string
  230. */
  231. private function getStateInfo($errCode)
  232. {
  233. return !$this->stateMap[$errCode] ? $this->stateMap["ERROR_UNKNOWN"] : $this->stateMap[$errCode];
  234. }
  235. /**
  236. * 获取文件扩展名
  237. * @return string
  238. */
  239. private function getFileExt()
  240. {
  241. return strtolower(strrchr($this->oriName, '.'));
  242. }
  243. /**
  244. * 重命名文件
  245. * @return string
  246. */
  247. private function getFullName()
  248. {
  249. //替换日期事件
  250. $t = time();
  251. $d = explode('-', date("Y-y-m-d-H-i-s"));
  252. $format = $this->config["pathFormat"];
  253. $format = str_replace("{yyyy}", $d[0], $format);
  254. $format = str_replace("{yy}", $d[1], $format);
  255. $format = str_replace("{mm}", $d[2], $format);
  256. $format = str_replace("{dd}", $d[3], $format);
  257. $format = str_replace("{hh}", $d[4], $format);
  258. $format = str_replace("{ii}", $d[5], $format);
  259. $format = str_replace("{ss}", $d[6], $format);
  260. $format = str_replace("{time}", $t, $format);
  261. //过滤文件名的非法自负,并替换文件名
  262. $oriName = substr($this->oriName, 0, strrpos($this->oriName, '.'));
  263. $oriName = preg_replace("/[\|\?\"\<\>\/\*\\\\]+/", '', $oriName);
  264. $format = str_replace("{filename}", $oriName, $format);
  265. //替换随机字符串
  266. $randNum = rand(1, 10000000000) . rand(1, 10000000000);
  267. if (preg_match("/\{rand\:([\d]*)\}/i", $format, $matches)) {
  268. $format = preg_replace("/\{rand\:[\d]*\}/i", substr($randNum, 0, $matches[1]), $format);
  269. }
  270. $ext = $this->getFileExt();
  271. return $format . $ext;
  272. }
  273. /**
  274. * 获取文件名
  275. * @return string
  276. */
  277. private function getFileName () {
  278. return substr($this->filePath, strrpos($this->filePath, '/') + 1);
  279. }
  280. /**
  281. * 获取文件完整路径
  282. * @return string
  283. */
  284. private function getFilePath()
  285. {
  286. $fullname = $this->fullName;
  287. $rootPath = $_SERVER['DOCUMENT_ROOT'];
  288. if (substr($fullname, 0, 1) != '/') {
  289. $fullname = '/' . $fullname;
  290. }
  291. return $rootPath . $fullname;
  292. }
  293. /**
  294. * 文件类型检测
  295. * @return bool
  296. */
  297. private function checkType()
  298. {
  299. return in_array($this->getFileExt(), $this->config["allowFiles"]);
  300. }
  301. /**
  302. * 文件大小检测
  303. * @return bool
  304. */
  305. private function checkSize()
  306. {
  307. return $this->fileSize <= ($this->config["maxSize"]);
  308. }
  309. /**
  310. * 获取当前上传成功文件的各项信息
  311. * @return array
  312. */
  313. public function getFileInfo()
  314. {
  315. return array(
  316. "state" => $this->stateInfo,
  317. "url" => $this->fullName,
  318. "title" => $this->fileName,
  319. "original" => $this->oriName,
  320. "type" => $this->fileType,
  321. "size" => $this->fileSize
  322. );
  323. }
  324. }