Api.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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. $token = $this->request->post('token');
  80. // if (isset($token)) {
  81. // $isset = \app\common\library\Token::get($token);
  82. // if(!$isset) {
  83. // return $this->result('token已过期,请重新登录',[],50);
  84. // }
  85. // }
  86. // if (!isset($token)) {
  87. // return $this->result('未回去token值',[],50);
  88. // }
  89. if (Config::get('url_domain_deploy')) {
  90. $domain = Route::rules('domain');
  91. if (isset($domain['api'])) {
  92. if (isset($_SERVER['HTTP_ORIGIN'])) {
  93. header("Access-Control-Allow-Origin: " . $this->request->server('HTTP_ORIGIN'));
  94. header('Access-Control-Allow-Credentials: true');
  95. header('Access-Control-Max-Age: 86400');
  96. }
  97. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
  98. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
  99. header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
  100. }
  101. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  102. header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
  103. }
  104. }
  105. }
  106. }
  107. //移除HTML标签
  108. $this->request->filter('trim,strip_tags,htmlspecialchars');
  109. $this->auth = Auth::instance();
  110. $modulename = $this->request->module();
  111. $controllername = strtolower($this->request->controller());
  112. $actionname = strtolower($this->request->action());
  113. // token
  114. $token = $this->request->server('HTTP_TOKEN', $this->request->request('token', \think\Cookie::get('token')));
  115. $path = str_replace('.', '/', $controllername) . '/' . $actionname;
  116. // 设置当前请求的URI
  117. $this->auth->setRequestUri($path);
  118. // 检测是否需要验证登录
  119. if (!$this->auth->match($this->noNeedLogin)) {
  120. //初始化
  121. $this->auth->init($token);
  122. //检测是否登录
  123. if (!$this->auth->isLogin()) {
  124. $this->error(__('Please login first'), null, 401);
  125. }
  126. // 判断是否需要验证权限
  127. if (!$this->auth->match($this->noNeedRight)) {
  128. // 判断控制器和方法判断是否有对应权限
  129. if (!$this->auth->check($path)) {
  130. $this->error(__('You have no permission'), null, 403);
  131. }
  132. }
  133. } else {
  134. // 如果有传递token才验证是否登录状态
  135. if ($token) {
  136. $this->auth->init($token);
  137. }
  138. }
  139. $upload = \app\common\model\Config::upload();
  140. // 上传信息配置后
  141. Hook::listen("upload_config_init", $upload);
  142. Config::set('upload', array_merge(Config::get('upload'), $upload));
  143. // 加载当前控制器语言包
  144. $this->loadlang($controllername);
  145. }
  146. /**
  147. * 加载语言文件
  148. * @param string $name
  149. */
  150. protected function loadlang($name)
  151. {
  152. Lang::load(APP_PATH . $this->request->module() . '/lang/' . $this->request->langset() . '/' . str_replace('.', '/', $name) . '.php');
  153. }
  154. /**
  155. * 操作成功返回的数据
  156. * @param string $msg 提示信息
  157. * @param mixed $data 要返回的数据
  158. * @param int $code 错误码,默认为1
  159. * @param string $type 输出类型
  160. * @param array $header 发送的 Header 信息
  161. */
  162. protected function success($msg = '', $data = null, $code = 1, $type = null, array $header = [])
  163. {
  164. $this->result($msg, $data, $code, $type, $header);
  165. }
  166. /**
  167. * 操作失败返回的数据
  168. * @param string $msg 提示信息
  169. * @param mixed $data 要返回的数据
  170. * @param int $code 错误码,默认为0
  171. * @param string $type 输出类型
  172. * @param array $header 发送的 Header 信息
  173. */
  174. protected function error($msg = '', $data = null, $code = 0, $type = null, array $header = [])
  175. {
  176. $this->result($msg, $data, $code, $type, $header);
  177. }
  178. /**
  179. * 返回封装后的 API 数据到客户端
  180. * @access protected
  181. * @param mixed $msg 提示信息
  182. * @param mixed $data 要返回的数据
  183. * @param int $code 错误码,默认为0
  184. * @param string $type 输出类型,支持json/xml/jsonp
  185. * @param array $header 发送的 Header 信息
  186. * @return void
  187. * @throws HttpResponseException
  188. */
  189. protected function result($msg, $data = null, $code = 0, $type = null, array $header = [])
  190. {
  191. $result = [
  192. 'code' => $code,
  193. 'msg' => $msg,
  194. 'time' => Request::instance()->server('REQUEST_TIME'),
  195. 'data' => $data,
  196. ];
  197. // 如果未设置类型则自动判断
  198. $type = $type ? $type : ($this->request->param(config('var_jsonp_handler')) ? 'jsonp' : $this->responseType);
  199. if (isset($header['statuscode'])) {
  200. $code = $header['statuscode'];
  201. unset($header['statuscode']);
  202. } else {
  203. //未设置状态码,根据code值判断
  204. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  205. }
  206. $response = Response::create($result, $type, $code)->header($header);
  207. throw new HttpResponseException($response);
  208. }
  209. /**
  210. * 前置操作
  211. * @access protected
  212. * @param string $method 前置操作方法名
  213. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  214. * @return void
  215. */
  216. protected function beforeAction($method, $options = [])
  217. {
  218. if (isset($options['only'])) {
  219. if (is_string($options['only'])) {
  220. $options['only'] = explode(',', $options['only']);
  221. }
  222. if (!in_array($this->request->action(), $options['only'])) {
  223. return;
  224. }
  225. } elseif (isset($options['except'])) {
  226. if (is_string($options['except'])) {
  227. $options['except'] = explode(',', $options['except']);
  228. }
  229. if (in_array($this->request->action(), $options['except'])) {
  230. return;
  231. }
  232. }
  233. call_user_func([$this, $method]);
  234. }
  235. /**
  236. * 设置验证失败后是否抛出异常
  237. * @access protected
  238. * @param bool $fail 是否抛出异常
  239. * @return $this
  240. */
  241. protected function validateFailException($fail = true)
  242. {
  243. $this->failException = $fail;
  244. return $this;
  245. }
  246. /**
  247. * 验证数据
  248. * @access protected
  249. * @param array $data 数据
  250. * @param string|array $validate 验证器名或者验证规则数组
  251. * @param array $message 提示信息
  252. * @param bool $batch 是否批量验证
  253. * @param mixed $callback 回调方法(闭包)
  254. * @return array|string|true
  255. * @throws ValidateException
  256. */
  257. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  258. {
  259. if (is_array($validate)) {
  260. $v = Loader::validate();
  261. $v->rule($validate);
  262. } else {
  263. // 支持场景
  264. if (strpos($validate, '.')) {
  265. list($validate, $scene) = explode('.', $validate);
  266. }
  267. $v = Loader::validate($validate);
  268. !empty($scene) && $v->scene($scene);
  269. }
  270. // 批量验证
  271. if ($batch || $this->batchValidate) {
  272. $v->batch(true);
  273. }
  274. // 设置错误信息
  275. if (is_array($message)) {
  276. $v->message($message);
  277. }
  278. // 使用回调验证
  279. if ($callback && is_callable($callback)) {
  280. call_user_func_array($callback, [$v, &$data]);
  281. }
  282. if (!$v->check($data)) {
  283. if ($this->failException) {
  284. throw new ValidateException($v->getError());
  285. }
  286. return $v->getError();
  287. }
  288. return true;
  289. }
  290. /**
  291. * 商品图片处理
  292. *
  293. * 可以通过@ApiInternal忽略请求的方法
  294. * @ApiInternal
  295. */
  296. public function commodityimage ($commodity,$field) {
  297. foreach ($commodity as &$v) {
  298. $v[$field] = explode(',',$v[$field]);
  299. }
  300. return $commodity;
  301. }
  302. }