Common.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. //
  3. //namespace app\api\controller;
  4. //
  5. //use app\common\controller\Api;
  6. //use app\common\model\Area;
  7. //use app\common\model\Version;
  8. //use fast\Random;
  9. //use think\Config;
  10. //
  11. ///**
  12. // * 公共接口
  13. // */
  14. //class Common extends Api
  15. //{
  16. // protected $noNeedLogin = ['init'];
  17. // protected $noNeedRight = '*';
  18. //
  19. // /**
  20. // * 加载初始化
  21. // *
  22. // * @param string $version 版本号
  23. // * @param string $lng 经度
  24. // * @param string $lat 纬度
  25. // */
  26. // public function init()
  27. // {
  28. // if ($version = $this->request->request('version')) {
  29. // $lng = $this->request->request('lng');
  30. // $lat = $this->request->request('lat');
  31. // $content = [
  32. // 'citydata' => Area::getCityFromLngLat($lng, $lat),
  33. // 'versiondata' => Version::check($version),
  34. // 'uploaddata' => Config::get('upload'),
  35. // 'coverdata' => Config::get("cover"),
  36. // ];
  37. // $this->success('', $content);
  38. // } else {
  39. // $this->error(__('Invalid parameters'));
  40. // }
  41. // }
  42. //
  43. // /**
  44. // * 上传文件
  45. // * @ApiMethod (POST)
  46. // * @param File $file 文件流
  47. // */
  48. // public function upload()
  49. // {
  50. // $file = $this->request->file('file');
  51. // if (empty($file)) {
  52. // $this->error(__('No file upload or server upload limit exceeded'));
  53. // }
  54. //
  55. // //判断是否已经存在附件
  56. // $sha1 = $file->hash();
  57. //
  58. // $upload = Config::get('upload');
  59. //
  60. // preg_match('/(\d+)(\w+)/', $upload['maxsize'], $matches);
  61. // $type = strtolower($matches[2]);
  62. // $typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
  63. // $size = (int)$upload['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
  64. // $fileInfo = $file->getInfo();
  65. // $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
  66. // $suffix = $suffix && preg_match("/^[a-zA-Z0-9]+$/", $suffix) ? $suffix : 'file';
  67. //
  68. // $mimetypeArr = explode(',', strtolower($upload['mimetype']));
  69. // $typeArr = explode('/', $fileInfo['type']);
  70. //
  71. // //禁止上传PHP和HTML文件
  72. // if (in_array($fileInfo['type'], ['text/x-php', 'text/html']) || in_array($suffix, ['php', 'html', 'htm'])) {
  73. // $this->error(__('Uploaded file format is limited'));
  74. // }
  75. // //验证文件后缀
  76. // if ($upload['mimetype'] !== '*' &&
  77. // (
  78. // !in_array($suffix, $mimetypeArr)
  79. // || (stripos($typeArr[0] . '/', $upload['mimetype']) !== false && (!in_array($fileInfo['type'], $mimetypeArr) && !in_array($typeArr[0] . '/*', $mimetypeArr)))
  80. // )
  81. // ) {
  82. // $this->error(__('Uploaded file format is limited'));
  83. // }
  84. // //验证是否为图片文件
  85. // $imagewidth = $imageheight = 0;
  86. // if (in_array($fileInfo['type'], ['image/gif', 'image/jpg', 'image/jpeg', 'image/bmp', 'image/png', 'image/webp']) || in_array($suffix, ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'webp'])) {
  87. // $imgInfo = getimagesize($fileInfo['tmp_name']);
  88. // if (!$imgInfo || !isset($imgInfo[0]) || !isset($imgInfo[1])) {
  89. // $this->error(__('Uploaded file is not a valid image'));
  90. // }
  91. // $imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
  92. // $imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
  93. // }
  94. // $replaceArr = [
  95. // '{year}' => date("Y"),
  96. // '{mon}' => date("m"),
  97. // '{day}' => date("d"),
  98. // '{hour}' => date("H"),
  99. // '{min}' => date("i"),
  100. // '{sec}' => date("s"),
  101. // '{random}' => Random::alnum(16),
  102. // '{random32}' => Random::alnum(32),
  103. // '{filename}' => $suffix ? substr($fileInfo['name'], 0, strripos($fileInfo['name'], '.')) : $fileInfo['name'],
  104. // '{suffix}' => $suffix,
  105. // '{.suffix}' => $suffix ? '.' . $suffix : '',
  106. // '{filemd5}' => md5_file($fileInfo['tmp_name']),
  107. // ];
  108. // $savekey = $upload['savekey'];
  109. // $savekey = str_replace(array_keys($replaceArr), array_values($replaceArr), $savekey);
  110. //
  111. // $uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
  112. // $fileName = substr($savekey, strripos($savekey, '/') + 1);
  113. // //
  114. // $splInfo = $file->validate(['size' => $size])->move(ROOT_PATH . '/public' . $uploadDir, $fileName);
  115. // if ($splInfo) {
  116. // $params = array(
  117. // 'admin_id' => 0,
  118. // 'user_id' => (int)$this->auth->id,
  119. // 'filesize' => $fileInfo['size'],
  120. // 'imagewidth' => $imagewidth,
  121. // 'imageheight' => $imageheight,
  122. // 'imagetype' => $suffix,
  123. // 'imageframes' => 0,
  124. // 'mimetype' => $fileInfo['type'],
  125. // 'url' => $uploadDir . $splInfo->getSaveName(),
  126. // 'uploadtime' => time(),
  127. // 'storage' => 'local',
  128. // 'sha1' => $sha1,
  129. // );
  130. // $attachment = model("attachment");
  131. // $attachment->data(array_filter($params));
  132. // $attachment->save();
  133. // \think\Hook::listen("upload_after", $attachment);
  134. // $this->success(__('Upload successful'), [
  135. // 'url' => $uploadDir . $splInfo->getSaveName()
  136. // ]);
  137. // } else {
  138. // // 上传失败获取错误信息
  139. // $this->error($file->getError());
  140. // }
  141. // }
  142. //}