Api.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  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. /**
  57. * 构造方法
  58. * @access public
  59. * @param Request $request Request 对象
  60. */
  61. public function __construct(Request $request = null)
  62. {
  63. $this->request = is_null($request) ? Request::instance() : $request;
  64. // 验签
  65. //$this->apiverifysign();
  66. // 控制器初始化
  67. $this->_initialize();
  68. //日志
  69. $this->request_log();
  70. // 前置操作方法
  71. if ($this->beforeActionList) {
  72. foreach ($this->beforeActionList as $method => $options) {
  73. is_numeric($method) ?
  74. $this->beforeAction($options) :
  75. $this->beforeAction($method, $options);
  76. }
  77. }
  78. }
  79. //验签,2048位,265截取
  80. public function apiverifysign(){
  81. $ip = request()->ip();
  82. if($ip == '127.0.0.1' || $ip == '112.6.63.60'){
  83. return true;
  84. }
  85. //解密签名开始
  86. $sign = $this->request->request('sign','','trim');
  87. if(empty($sign)){
  88. $this->error('缺少签名');
  89. }
  90. $sign = base64_decode($sign);
  91. $private_key_str = config('app_rsa.private_key');
  92. $private_key = "-----BEGIN RSA PRIVATE KEY-----" .PHP_EOL.
  93. wordwrap($private_key_str, 64, PHP_EOL, true) .
  94. PHP_EOL."-----END RSA PRIVATE KEY-----";
  95. $signgetdata = []; //被解密出来的数据
  96. $split_len = 256;
  97. $sign_split = str_split($sign, $split_len);
  98. foreach($sign_split as $key => $sign_val){
  99. $signgetdata_child = null;
  100. openssl_private_decrypt($sign_val, $signgetdata_child, $private_key); // 使用私钥解密数据
  101. $signgetdata[] = $signgetdata_child;
  102. }
  103. $signgetdata = implode('',$signgetdata);
  104. if (!$signgetdata) {
  105. $this->error('签名错误1');
  106. }
  107. //dump($signgetdata);
  108. //解密签名结束
  109. //接收到的参数,组成我自己的验签体string
  110. $request_all = $this->request->request();
  111. unset($request_all['s']);
  112. unset($request_all['sign']);
  113. ksort($request_all);
  114. $request_str = '';
  115. foreach($request_all as $key => $param){
  116. $request_str .= $key.'='.$param.'&';
  117. }
  118. $request_str .= 'signkey=F_dC923_35270PdsIIUIUTRERYTYYU';
  119. //dump($request_str);
  120. //作对比
  121. if($request_str != $signgetdata){
  122. $this->error('验签错误');
  123. }
  124. //echo '验签正确';
  125. return true;
  126. }
  127. /**
  128. * 初始化操作
  129. * @access protected
  130. */
  131. protected function _initialize()
  132. {
  133. header('Content-Type: text/html;charset=utf-8');
  134. header('Access-Control-Allow-Origin:*'); // *代表允许任何网址请求
  135. header('Access-Control-Allow-Methods:POST,GET,OPTIONS,DELETE'); // 允许请求的类型
  136. header('Access-Control-Allow-Credentials: true'); // 设置是否允许发送 cookies
  137. header('Access-Control-Allow-Headers: Content-Type,Content-Length,Accept-Encoding,X-Requested-with, Origin');
  138. //跨域请求检测
  139. // check_cors_request();
  140. //移除HTML标签
  141. $this->request->filter('trim,strip_tags,htmlspecialchars');
  142. $this->auth = Auth::instance();
  143. $modulename = $this->request->module();
  144. $controllername = Loader::parseName($this->request->controller());
  145. $actionname = strtolower($this->request->action());
  146. // token
  147. $token = $this->request->server('HTTP_TOKEN', $this->request->request('token', \think\Cookie::get('token')));
  148. $path = str_replace('.', '/', $controllername) . '/' . $actionname;
  149. // 设置当前请求的URI
  150. $this->auth->setRequestUri($path);
  151. // 检测是否需要验证登录
  152. if (!$this->auth->match($this->noNeedLogin)) {
  153. //初始化
  154. $this->auth->init($token);
  155. //检测是否登录
  156. if (!$this->auth->isLogin()) {
  157. $this->error(__('Please login first'), null, 401);
  158. }
  159. // 判断是否需要验证权限
  160. /*if (!$this->auth->match($this->noNeedRight)) {
  161. // 判断控制器和方法判断是否有对应权限
  162. if (!$this->auth->check($path)) {
  163. $this->error(__('You have no permission'), null, 403);
  164. }
  165. }*/
  166. } else {
  167. // 如果有传递token才验证是否登录状态
  168. if ($token) {
  169. $this->auth->init($token);
  170. }
  171. }
  172. $upload = \app\common\model\Config::upload();
  173. // 上传信息配置后
  174. Hook::listen("upload_config_init", $upload);
  175. Config::set('upload', array_merge(Config::get('upload'), $upload));
  176. // 加载当前控制器语言包
  177. $this->loadlang($controllername);
  178. }
  179. /**
  180. * 加载语言文件
  181. * @param string $name
  182. */
  183. protected function loadlang($name)
  184. {
  185. $name = Loader::parseName($name);
  186. Lang::load(APP_PATH . $this->request->module() . '/lang/' . $this->request->langset() . '/' . str_replace('.', '/', $name) . '.php');
  187. }
  188. /**
  189. * 操作成功返回的数据
  190. * @param string $msg 提示信息
  191. * @param mixed $data 要返回的数据
  192. * @param int $code 错误码,默认为1
  193. * @param string $type 输出类型
  194. * @param array $header 发送的 Header 信息
  195. */
  196. protected function success($msg = '', $data = null, $code = 1, $type = null, array $header = [])
  197. {
  198. if($msg == 1){
  199. $msg = 'success';
  200. }
  201. $this->result($msg, $data, $code, $type, $header);
  202. }
  203. /**
  204. * 操作失败返回的数据
  205. * @param string $msg 提示信息
  206. * @param mixed $data 要返回的数据
  207. * @param int $code 错误码,默认为0
  208. * @param string $type 输出类型
  209. * @param array $header 发送的 Header 信息
  210. */
  211. protected function error($msg = '', $data = null, $code = 0, $type = null, array $header = [])
  212. {
  213. $this->result($msg, $data, $code, $type, $header);
  214. }
  215. /**
  216. * 返回封装后的 API 数据到客户端
  217. * @access protected
  218. * @param mixed $msg 提示信息
  219. * @param mixed $data 要返回的数据
  220. * @param int $code 错误码,默认为0
  221. * @param string $type 输出类型,支持json/xml/jsonp
  222. * @param array $header 发送的 Header 信息
  223. * @return void
  224. * @throws HttpResponseException
  225. */
  226. protected function result($msg, $data = null, $code = 0, $type = null, array $header = [])
  227. {
  228. $result = [
  229. 'code' => $code,
  230. 'msg' => $msg,
  231. 'time' => Request::instance()->server('REQUEST_TIME'),
  232. 'data' => $data,
  233. ];
  234. //日志
  235. $this->request_log_update($result);
  236. // 如果未设置类型则自动判断
  237. $type = $type ? $type : ($this->request->param(config('var_jsonp_handler')) ? 'jsonp' : $this->responseType);
  238. if (isset($header['statuscode'])) {
  239. $code = $header['statuscode'];
  240. unset($header['statuscode']);
  241. } else {
  242. //未设置状态码,根据code值判断
  243. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  244. }
  245. $response = Response::create($result, $type, $code)->header($header);
  246. throw new HttpResponseException($response);
  247. }
  248. /**
  249. * 前置操作
  250. * @access protected
  251. * @param string $method 前置操作方法名
  252. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  253. * @return void
  254. */
  255. protected function beforeAction($method, $options = [])
  256. {
  257. if (isset($options['only'])) {
  258. if (is_string($options['only'])) {
  259. $options['only'] = explode(',', $options['only']);
  260. }
  261. if (!in_array($this->request->action(), $options['only'])) {
  262. return;
  263. }
  264. } elseif (isset($options['except'])) {
  265. if (is_string($options['except'])) {
  266. $options['except'] = explode(',', $options['except']);
  267. }
  268. if (in_array($this->request->action(), $options['except'])) {
  269. return;
  270. }
  271. }
  272. call_user_func([$this, $method]);
  273. }
  274. /**
  275. * 设置验证失败后是否抛出异常
  276. * @access protected
  277. * @param bool $fail 是否抛出异常
  278. * @return $this
  279. */
  280. protected function validateFailException($fail = true)
  281. {
  282. $this->failException = $fail;
  283. return $this;
  284. }
  285. /**
  286. * 验证数据
  287. * @access protected
  288. * @param array $data 数据
  289. * @param string|array $validate 验证器名或者验证规则数组
  290. * @param array $message 提示信息
  291. * @param bool $batch 是否批量验证
  292. * @param mixed $callback 回调方法(闭包)
  293. * @return array|string|true
  294. * @throws ValidateException
  295. */
  296. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  297. {
  298. if (is_array($validate)) {
  299. $v = Loader::validate();
  300. $v->rule($validate);
  301. } else {
  302. // 支持场景
  303. if (strpos($validate, '.')) {
  304. list($validate, $scene) = explode('.', $validate);
  305. }
  306. $v = Loader::validate($validate);
  307. !empty($scene) && $v->scene($scene);
  308. }
  309. // 批量验证
  310. if ($batch || $this->batchValidate) {
  311. $v->batch(true);
  312. }
  313. // 设置错误信息
  314. if (is_array($message)) {
  315. $v->message($message);
  316. }
  317. // 使用回调验证
  318. if ($callback && is_callable($callback)) {
  319. call_user_func_array($callback, [$v, &$data]);
  320. }
  321. if (!$v->check($data)) {
  322. if ($this->failException) {
  323. throw new ValidateException($v->getError());
  324. }
  325. return $v->getError();
  326. }
  327. return true;
  328. }
  329. /**
  330. * 刷新Token
  331. */
  332. protected function token()
  333. {
  334. $token = $this->request->param('__token__');
  335. //验证Token
  336. if (!Validate::make()->check(['__token__' => $token], ['__token__' => 'require|token'])) {
  337. $this->error(__('Token verification error'), ['__token__' => $this->request->token()]);
  338. }
  339. //刷新Token
  340. $this->request->token();
  341. }
  342. /**
  343. * 判断当前url是否为全路径,并返回全路径
  344. */
  345. public function httpurl($path) {
  346. // 获取当前域名
  347. if(strpos($path,'http://') === false && strpos($path,'https://') === false) {
  348. $host = config("cos")['url'];
  349. $url = $host.$path;
  350. } else {
  351. $url = $path;
  352. }
  353. return $url;
  354. }
  355. /**
  356. * 判断当前url是否为全路径,并返回全路径
  357. */
  358. public function httpurlLocal($path) {
  359. // 获取当前域名
  360. if(strpos($path,'http://') === false && strpos($path,'https://') === false) {
  361. $host = $_SERVER["REQUEST_SCHEME"]."://".$_SERVER["HTTP_HOST"];
  362. $url = $host.$path;
  363. } else {
  364. $url = $path;
  365. }
  366. return $url;
  367. }
  368. /**
  369. * 接口请求限制
  370. * @param int $apiLimit
  371. * @param int $apiLimitTime
  372. * @param string $key
  373. * @return bool | true:通过 false:拒绝
  374. */
  375. public function apiLimit($apiLimit = 1, $apiLimitTime = 1000, $key = '')
  376. {
  377. $userId = $this->auth->id;
  378. $controller = request()->controller();
  379. $action = request()->action();
  380. if (!$key) {
  381. $key = strtolower($controller) . '_' . strtolower($action) . '_' . $userId;
  382. }
  383. $redis = new Redis();
  384. $redisconfig = config("redis");
  385. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  386. if ($redisconfig['redis_pwd']) {
  387. $redis->auth($redisconfig['redis_pwd']);
  388. }
  389. if($redisconfig['redis_selectdb'] > 0){
  390. $redis->select($redisconfig['redis_selectdb']);
  391. }
  392. $check = $redis->exists($key);
  393. if ($check) {
  394. $redis->incr($key);
  395. $count = $redis->get($key);
  396. if ($count > $apiLimit) {
  397. return false;
  398. }
  399. } else {
  400. $redis->incr($key);
  401. $redis->pExpire($key, $apiLimitTime);
  402. }
  403. return true;
  404. }
  405. /*
  406. * api 请求日志
  407. * */
  408. protected function request_log(){
  409. //api_request_log
  410. $modulename = $this->request->module();
  411. $controllername = $this->request->controller();
  412. $actionname = $this->request->action();
  413. if(strtolower($actionname) == 'givegifttoyou'){
  414. return true;
  415. }
  416. $data = [
  417. 'uid' => $this->auth->id,
  418. 'api' => $modulename.'/'.$controllername.'/'.$actionname,
  419. 'params' => json_encode($this->request->request()),
  420. 'addtime' => time(),
  421. 'adddatetime' => date('Y-m-d H:i:s'),
  422. 'ip' => request()->ip(),
  423. ];
  424. $request_id = db('api_request_log')->insertGetId($data);
  425. defined('API_REQUEST_ID') or define('API_REQUEST_ID', $request_id);
  426. }
  427. protected function request_log_update($log_result){
  428. $actionname = $this->request->action();
  429. if(strtolower($actionname) == 'givegifttoyou'){
  430. return true;
  431. }
  432. if(defined('API_REQUEST_ID')) { //记录app正常返回结果
  433. if(strlen(json_encode($log_result['data'])) > 10000) {
  434. $log_result['data'] = '数据太多,不记录';
  435. }
  436. db('api_request_log')->where('id',API_REQUEST_ID)->update(['result'=>json_encode($log_result)]);
  437. }
  438. }
  439. }