Api.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <?php
  2. namespace app\common\controller;
  3. use app\common\library\Auth;
  4. use think\Config;
  5. use think\exception\HttpResponseException;
  6. use think\exception\ValidateException;
  7. use think\Hook;
  8. use think\Lang;
  9. use think\Loader;
  10. use think\Request;
  11. use think\Response;
  12. use think\Route;
  13. /**
  14. * API控制器基类
  15. */
  16. class Api
  17. {
  18. /**
  19. * @var Request Request 实例
  20. */
  21. protected $request;
  22. /**
  23. * @var bool 验证失败是否抛出异常
  24. */
  25. protected $failException = false;
  26. /**
  27. * @var bool 是否批量验证
  28. */
  29. protected $batchValidate = false;
  30. /**
  31. * @var array 前置操作方法列表
  32. */
  33. protected $beforeActionList = [];
  34. /**
  35. * 无需登录的方法,同时也就不需要鉴权了
  36. * @var array
  37. */
  38. protected $noNeedLogin = [];
  39. /**
  40. * 无需鉴权的方法,但需要登录
  41. * @var array
  42. */
  43. protected $noNeedRight = [];
  44. /**
  45. * 权限Auth
  46. * @var Auth
  47. */
  48. protected $auth = null;
  49. /**
  50. * 默认响应输出类型,支持json/xml
  51. * @var string
  52. */
  53. protected $responseType = 'json';
  54. /**
  55. * 构造方法
  56. * @access public
  57. * @param Request $request Request 对象
  58. */
  59. public function __construct(Request $request = null)
  60. {
  61. $this->request = is_null($request) ? Request::instance() : $request;
  62. // 控制器初始化
  63. $this->_initialize();
  64. // 前置操作方法
  65. if ($this->beforeActionList) {
  66. foreach ($this->beforeActionList as $method => $options) {
  67. is_numeric($method) ?
  68. $this->beforeAction($options) :
  69. $this->beforeAction($method, $options);
  70. }
  71. }
  72. }
  73. /**
  74. * 初始化操作
  75. * @access protected
  76. */
  77. protected function _initialize()
  78. {
  79. if (Config::get('url_domain_deploy')) {
  80. $domain = Route::rules('domain');
  81. if (isset($domain['api'])) {
  82. if (isset($_SERVER['HTTP_ORIGIN'])) {
  83. header("Access-Control-Allow-Origin: " . $this->request->server('HTTP_ORIGIN'));
  84. header('Access-Control-Allow-Credentials: true');
  85. header('Access-Control-Max-Age: 86400');
  86. }
  87. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
  88. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
  89. header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
  90. }
  91. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  92. header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
  93. }
  94. }
  95. }
  96. }
  97. //移除HTML标签
  98. $this->request->filter('trim,strip_tags,htmlspecialchars');
  99. $this->auth = Auth::instance();
  100. $modulename = $this->request->module();
  101. $controllername = strtolower($this->request->controller());
  102. $actionname = strtolower($this->request->action());
  103. // token
  104. $token = $this->request->server('HTTP_TOKEN', $this->request->request('token', \think\Cookie::get('token')));
  105. $path = str_replace('.', '/', $controllername) . '/' . $actionname;
  106. // 设置当前请求的URI
  107. $this->auth->setRequestUri($path);
  108. // 检测是否需要验证登录
  109. if (!$this->auth->match($this->noNeedLogin)) {
  110. //初始化
  111. $this->auth->init($token);
  112. //检测是否登录
  113. if (!$this->auth->isLogin()) {
  114. $this->error(__('Please login first'), null, 401);
  115. }
  116. // 判断是否需要验证权限
  117. if (!$this->auth->match($this->noNeedRight)) {
  118. // 判断控制器和方法判断是否有对应权限
  119. if (!$this->auth->check($path)) {
  120. $this->error(__('You have no permission'), null, 403);
  121. }
  122. }
  123. } else {
  124. // 如果有传递token才验证是否登录状态
  125. if ($token) {
  126. $this->auth->init($token);
  127. }
  128. }
  129. $upload = \app\common\model\Config::upload();
  130. // 上传信息配置后
  131. Hook::listen("upload_config_init", $upload);
  132. Config::set('upload', array_merge(Config::get('upload'), $upload));
  133. // 加载当前控制器语言包
  134. $this->loadlang($controllername);
  135. }
  136. /**
  137. * 加载语言文件
  138. * @param string $name
  139. */
  140. protected function loadlang($name)
  141. {
  142. Lang::load(APP_PATH . $this->request->module() . '/lang/' . $this->request->langset() . '/' . str_replace('.', '/', $name) . '.php');
  143. }
  144. /**
  145. * 操作成功返回的数据
  146. * @param string $msg 提示信息
  147. * @param mixed $data 要返回的数据
  148. * @param int $code 错误码,默认为1
  149. * @param string $type 输出类型
  150. * @param array $header 发送的 Header 信息
  151. */
  152. protected function success($msg = '', $data = null, $code = 1, $type = null, array $header = [])
  153. {
  154. $this->result($msg, $data, $code, $type, $header);
  155. }
  156. /**
  157. * 操作失败返回的数据
  158. * @param string $msg 提示信息
  159. * @param mixed $data 要返回的数据
  160. * @param int $code 错误码,默认为0
  161. * @param string $type 输出类型
  162. * @param array $header 发送的 Header 信息
  163. */
  164. protected function error($msg = '', $data = null, $code = 0, $type = null, array $header = [])
  165. {
  166. $this->result($msg, $data, $code, $type, $header);
  167. }
  168. /**
  169. * 返回封装后的 API 数据到客户端
  170. * @access protected
  171. * @param mixed $msg 提示信息
  172. * @param mixed $data 要返回的数据
  173. * @param int $code 错误码,默认为0
  174. * @param string $type 输出类型,支持json/xml/jsonp
  175. * @param array $header 发送的 Header 信息
  176. * @return void
  177. * @throws HttpResponseException
  178. */
  179. protected function result($msg, $data = null, $code = 0, $type = null, array $header = [])
  180. {
  181. $result = [
  182. 'code' => $code,
  183. 'msg' => $msg,
  184. 'time' => Request::instance()->server('REQUEST_TIME'),
  185. 'data' => $data,
  186. ];
  187. // 如果未设置类型则自动判断
  188. $type = $type ? $type : ($this->request->param(config('var_jsonp_handler')) ? 'jsonp' : $this->responseType);
  189. if (isset($header['statuscode'])) {
  190. $code = $header['statuscode'];
  191. unset($header['statuscode']);
  192. } else {
  193. //未设置状态码,根据code值判断
  194. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  195. }
  196. $response = Response::create($result, $type, $code)->header($header);
  197. throw new HttpResponseException($response);
  198. }
  199. /**
  200. * 前置操作
  201. * @access protected
  202. * @param string $method 前置操作方法名
  203. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  204. * @return void
  205. */
  206. protected function beforeAction($method, $options = [])
  207. {
  208. if (isset($options['only'])) {
  209. if (is_string($options['only'])) {
  210. $options['only'] = explode(',', $options['only']);
  211. }
  212. if (!in_array($this->request->action(), $options['only'])) {
  213. return;
  214. }
  215. } elseif (isset($options['except'])) {
  216. if (is_string($options['except'])) {
  217. $options['except'] = explode(',', $options['except']);
  218. }
  219. if (in_array($this->request->action(), $options['except'])) {
  220. return;
  221. }
  222. }
  223. call_user_func([$this, $method]);
  224. }
  225. /**
  226. * 设置验证失败后是否抛出异常
  227. * @access protected
  228. * @param bool $fail 是否抛出异常
  229. * @return $this
  230. */
  231. protected function validateFailException($fail = true)
  232. {
  233. $this->failException = $fail;
  234. return $this;
  235. }
  236. /**
  237. * 验证数据
  238. * @access protected
  239. * @param array $data 数据
  240. * @param string|array $validate 验证器名或者验证规则数组
  241. * @param array $message 提示信息
  242. * @param bool $batch 是否批量验证
  243. * @param mixed $callback 回调方法(闭包)
  244. * @return array|string|true
  245. * @throws ValidateException
  246. */
  247. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  248. {
  249. if (is_array($validate)) {
  250. $v = Loader::validate();
  251. $v->rule($validate);
  252. } else {
  253. // 支持场景
  254. if (strpos($validate, '.')) {
  255. list($validate, $scene) = explode('.', $validate);
  256. }
  257. $v = Loader::validate($validate);
  258. !empty($scene) && $v->scene($scene);
  259. }
  260. // 批量验证
  261. if ($batch || $this->batchValidate) {
  262. $v->batch(true);
  263. }
  264. // 设置错误信息
  265. if (is_array($message)) {
  266. $v->message($message);
  267. }
  268. // 使用回调验证
  269. if ($callback && is_callable($callback)) {
  270. call_user_func_array($callback, [$v, &$data]);
  271. }
  272. if (!$v->check($data)) {
  273. if ($this->failException) {
  274. throw new ValidateException($v->getError());
  275. }
  276. return $v->getError();
  277. }
  278. return true;
  279. }
  280. //商品图片处理
  281. public function commodityimage ($commodity,$field) {
  282. foreach ($commodity as &$v) {
  283. $v[$field] = explode(',',$v[$field]);
  284. }
  285. return $commodity;
  286. }
  287. }