Api.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  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. use think\Validate;
  14. use Redis;
  15. /**
  16. * API控制器基类
  17. */
  18. class Api
  19. {
  20. /**
  21. * @var Request Request 实例
  22. */
  23. protected $request;
  24. /**
  25. * @var bool 验证失败是否抛出异常
  26. */
  27. protected $failException = false;
  28. /**
  29. * @var bool 是否批量验证
  30. */
  31. protected $batchValidate = false;
  32. /**
  33. * @var array 前置操作方法列表
  34. */
  35. protected $beforeActionList = [];
  36. /**
  37. * 无需登录的方法,同时也就不需要鉴权了
  38. * @var array
  39. */
  40. protected $noNeedLogin = [];
  41. /**
  42. * 无需鉴权的方法,但需要登录
  43. * @var array
  44. */
  45. protected $noNeedRight = [];
  46. /**
  47. * 权限Auth
  48. * @var Auth
  49. */
  50. protected $auth = null;
  51. /**
  52. * 默认响应输出类型,支持json/xml
  53. * @var string
  54. */
  55. protected $responseType = 'json';
  56. public $page = 1;
  57. public $limit = 10;
  58. /**
  59. * 构造方法
  60. * @access public
  61. * @param Request $request Request 对象
  62. */
  63. public function __construct(Request $request = null)
  64. {
  65. $this->request = is_null($request) ? Request::instance() : $request;
  66. $this->page = input('page',1);
  67. // 控制器初始化
  68. $this->_initialize();
  69. //日志
  70. $this->request_log();
  71. // 前置操作方法
  72. if ($this->beforeActionList) {
  73. foreach ($this->beforeActionList as $method => $options) {
  74. is_numeric($method) ?
  75. $this->beforeAction($options) :
  76. $this->beforeAction($method, $options);
  77. }
  78. }
  79. }
  80. /**
  81. * 初始化操作
  82. * @access protected
  83. */
  84. protected function _initialize()
  85. {
  86. //跨域请求检测
  87. check_cors_request();
  88. // 检测IP是否允许
  89. check_ip_allowed();
  90. //移除HTML标签
  91. $this->request->filter('trim,strip_tags,htmlspecialchars');
  92. $this->auth = Auth::instance();
  93. $modulename = $this->request->module();
  94. $controllername = Loader::parseName($this->request->controller());
  95. $actionname = strtolower($this->request->action());
  96. // token
  97. $token = $this->request->server('HTTP_TOKEN', $this->request->request('token', \think\Cookie::get('token')));
  98. $path = str_replace('.', '/', $controllername) . '/' . $actionname;
  99. // 设置当前请求的URI
  100. $this->auth->setRequestUri($path);
  101. // 检测是否需要验证登录
  102. if (!$this->auth->match($this->noNeedLogin)) {
  103. //初始化
  104. $this->auth->init($token);
  105. //检测是否登录
  106. if (!$this->auth->isLogin()) {
  107. $this->error(__('Please login first'), null, 401);
  108. }
  109. // 判断是否需要验证权限
  110. if (!$this->auth->match($this->noNeedRight)) {
  111. // 判断控制器和方法判断是否有对应权限
  112. if (!$this->auth->check($path)) {
  113. $this->error(__('You have no permission'), null, 403);
  114. }
  115. }
  116. } else {
  117. // 如果有传递token才验证是否登录状态
  118. if ($token) {
  119. $this->auth->init($token);
  120. }
  121. }
  122. $upload = \app\common\model\Config::upload();
  123. // 上传信息配置后
  124. Hook::listen("upload_config_init", $upload);
  125. Config::set('upload', array_merge(Config::get('upload'), $upload));
  126. // 加载当前控制器语言包
  127. $this->loadlang($controllername);
  128. }
  129. /**
  130. * 加载语言文件
  131. * @param string $name
  132. */
  133. protected function loadlang($name)
  134. {
  135. $name = Loader::parseName($name);
  136. Lang::load(APP_PATH . $this->request->module() . '/lang/' . $this->request->langset() . '/' . str_replace('.', '/', $name) . '.php');
  137. }
  138. /**
  139. * 操作成功返回的数据
  140. * @param string $msg 提示信息
  141. * @param mixed $data 要返回的数据
  142. * @param int $code 错误码,默认为1
  143. * @param string $type 输出类型
  144. * @param array $header 发送的 Header 信息
  145. */
  146. protected function success($msg = '', $data = null, $code = 1, $type = null, array $header = [])
  147. {
  148. if(empty($msg)){
  149. $msg = '操作成功';
  150. }
  151. $this->result($msg, $data, $code, $type, $header);
  152. }
  153. /**
  154. * 操作失败返回的数据
  155. * @param string $msg 提示信息
  156. * @param mixed $data 要返回的数据
  157. * @param int $code 错误码,默认为0
  158. * @param string $type 输出类型
  159. * @param array $header 发送的 Header 信息
  160. */
  161. protected function error($msg = '', $data = null, $code = 0, $type = null, array $header = [])
  162. {
  163. if(empty($msg)){
  164. $msg = __('Invalid parameters');
  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. $this->request_log_update($result);
  189. // 如果未设置类型则自动判断
  190. $type = $type ? $type : ($this->request->param(config('var_jsonp_handler')) ? 'jsonp' : $this->responseType);
  191. if (isset($header['statuscode'])) {
  192. $code = $header['statuscode'];
  193. unset($header['statuscode']);
  194. } else {
  195. //未设置状态码,根据code值判断
  196. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  197. }
  198. $response = Response::create($result, $type, $code)->header($header);
  199. throw new HttpResponseException($response);
  200. }
  201. /**
  202. * 前置操作
  203. * @access protected
  204. * @param string $method 前置操作方法名
  205. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  206. * @return void
  207. */
  208. protected function beforeAction($method, $options = [])
  209. {
  210. if (isset($options['only'])) {
  211. if (is_string($options['only'])) {
  212. $options['only'] = explode(',', $options['only']);
  213. }
  214. if (!in_array($this->request->action(), $options['only'])) {
  215. return;
  216. }
  217. } elseif (isset($options['except'])) {
  218. if (is_string($options['except'])) {
  219. $options['except'] = explode(',', $options['except']);
  220. }
  221. if (in_array($this->request->action(), $options['except'])) {
  222. return;
  223. }
  224. }
  225. call_user_func([$this, $method]);
  226. }
  227. /**
  228. * 设置验证失败后是否抛出异常
  229. * @access protected
  230. * @param bool $fail 是否抛出异常
  231. * @return $this
  232. */
  233. protected function validateFailException($fail = true)
  234. {
  235. $this->failException = $fail;
  236. return $this;
  237. }
  238. /**
  239. * 验证数据
  240. * @access protected
  241. * @param array $data 数据
  242. * @param string|array $validate 验证器名或者验证规则数组
  243. * @param array $message 提示信息
  244. * @param bool $batch 是否批量验证
  245. * @param mixed $callback 回调方法(闭包)
  246. * @return array|string|true
  247. * @throws ValidateException
  248. */
  249. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  250. {
  251. if (is_array($validate)) {
  252. $v = Loader::validate();
  253. $v->rule($validate);
  254. } else {
  255. // 支持场景
  256. if (strpos($validate, '.')) {
  257. list($validate, $scene) = explode('.', $validate);
  258. }
  259. $v = Loader::validate($validate);
  260. !empty($scene) && $v->scene($scene);
  261. }
  262. // 批量验证
  263. if ($batch || $this->batchValidate) {
  264. $v->batch(true);
  265. }
  266. // 设置错误信息
  267. if (is_array($message)) {
  268. $v->message($message);
  269. }
  270. // 使用回调验证
  271. if ($callback && is_callable($callback)) {
  272. call_user_func_array($callback, [$v, &$data]);
  273. }
  274. if (!$v->check($data)) {
  275. if ($this->failException) {
  276. throw new ValidateException($v->getError());
  277. }
  278. return $v->getError();
  279. }
  280. return true;
  281. }
  282. /**
  283. * 刷新Token
  284. */
  285. protected function token()
  286. {
  287. $token = $this->request->param('__token__');
  288. //验证Token
  289. if (!Validate::make()->check(['__token__' => $token], ['__token__' => 'require|token'])) {
  290. $this->error(__('Token verification error'), ['__token__' => $this->request->token()]);
  291. }
  292. //刷新Token
  293. $this->request->token();
  294. }
  295. /*
  296. * api 请求日志
  297. * */
  298. protected function request_log(){
  299. //api_request_log
  300. $modulename = $this->request->module();
  301. $controllername = $this->request->controller();
  302. $actionname = $this->request->action();
  303. $data = [
  304. 'uid' => $this->auth->id,
  305. 'api' => $modulename.'/'.$controllername.'/'.$actionname,
  306. 'params' => json_encode($this->request->request()),
  307. 'addtime' => time(),
  308. 'adddatetime' => date('Y-m-d H:i:s'),
  309. 'ip' => request()->ip(),
  310. ];
  311. $request_id = db('api_request_log')->insertGetId($data);
  312. defined('API_REQUEST_ID') or define('API_REQUEST_ID', $request_id);
  313. }
  314. protected function request_log_update($log_result){
  315. if(defined('API_REQUEST_ID')) { //记录app正常返回结果
  316. if(strlen(json_encode($log_result['data'])) > 10000) {
  317. $log_result['data'] = '数据太多,不记录';
  318. }
  319. db('api_request_log')->where('id',API_REQUEST_ID)->update(['result'=>json_encode($log_result)]);
  320. }
  321. }
  322. /**
  323. * 接口请求限制
  324. * @param int $apiLimit
  325. * @param int $apiLimitTime
  326. * @param string $key
  327. * @return bool | true:通过 false:拒绝
  328. */
  329. public function apiLimit($apiLimit = 1, $apiLimitTime = 1000, $key = '')
  330. {
  331. $userId = $this->auth->id;
  332. $controller = request()->controller();
  333. $action = request()->action();
  334. if (!$key) {
  335. $key = strtolower($controller) . '_' . strtolower($action) . '_' . $userId;
  336. }
  337. $redis = new Redis();
  338. $redisconfig = config("redis");
  339. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  340. $check = $redis->exists($key);
  341. if ($check) {
  342. $redis->incr($key);
  343. $count = $redis->get($key);
  344. if ($count > $apiLimit) {
  345. return false;
  346. }
  347. } else {
  348. $redis->incr($key);
  349. $redis->pExpire($key, $apiLimitTime);
  350. }
  351. return true;
  352. }
  353. }