Apitv.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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. use think\Db;
  16. /**
  17. * API控制器基类
  18. */
  19. class Apitv
  20. {
  21. /**
  22. * @var Request Request 实例
  23. */
  24. protected $request;
  25. /**
  26. * @var bool 验证失败是否抛出异常
  27. */
  28. protected $failException = false;
  29. /**
  30. * @var bool 是否批量验证
  31. */
  32. protected $batchValidate = false;
  33. /**
  34. * @var array 前置操作方法列表
  35. */
  36. protected $beforeActionList = [];
  37. /**
  38. * 无需登录的方法,同时也就不需要鉴权了
  39. * @var array
  40. */
  41. protected $noNeedLogin = [];
  42. /**
  43. * 无需鉴权的方法,但需要登录
  44. * @var array
  45. */
  46. protected $noNeedRight = [];
  47. /**
  48. * 权限Auth
  49. * @var Auth
  50. */
  51. protected $auth = null;
  52. /**
  53. * 默认响应输出类型,支持json/xml
  54. * @var string
  55. */
  56. protected $responseType = 'json';
  57. /**
  58. * @var int 日志类型 1 文件;2sql
  59. */
  60. public $logType = 2;
  61. /**
  62. * 构造方法
  63. * @access public
  64. * @param Request $request Request 对象
  65. */
  66. public function __construct(Request $request = null)
  67. {
  68. $this->request = is_null($request) ? Request::instance() : $request;
  69. // 控制器初始化
  70. $this->_initialize();
  71. //日志
  72. $this->request_log();
  73. // 前置操作方法
  74. if ($this->beforeActionList) {
  75. foreach ($this->beforeActionList as $method => $options) {
  76. is_numeric($method) ?
  77. $this->beforeAction($options) :
  78. $this->beforeAction($method, $options);
  79. }
  80. }
  81. }
  82. //电视盒子用户登录
  83. private function tvuser_login(){
  84. $tv_userid = input('tv_userid','');
  85. $tv_sign = input('tv_sign','');
  86. if(empty($tv_userid) || empty($tv_sign)){
  87. $this->error('登录参数缺失');
  88. }
  89. //验签
  90. $salt = 'be7bcf1499b0fec801406f6aafbd04c4';
  91. $get_sign = md5(md5($tv_userid) . $salt);
  92. if($tv_sign != $get_sign){
  93. $this->error('验签失败');
  94. }
  95. //找到用户
  96. $user = Db::name('user')->where('tv_userid',$tv_userid)->find();
  97. if ($user) {
  98. if ($user['status'] == -1) {
  99. $this->error('账号已注销');
  100. }
  101. if ($user['status'] != 1) {
  102. $this->error(__('Account is locked'));
  103. }
  104. //如果已经有账号则直接登录
  105. $ret = $this->auth->direct($user['id']);
  106. } else {
  107. $ret = $this->auth->tv_register($tv_userid);
  108. }
  109. if ($ret) {
  110. } else {
  111. $this->error($this->auth->getError());
  112. }
  113. }
  114. /**
  115. * 初始化操作
  116. * @access protected
  117. */
  118. protected function _initialize()
  119. {
  120. //跨域请求检测
  121. check_cors_request();
  122. // 检测IP是否允许
  123. check_ip_allowed();
  124. //移除HTML标签
  125. $this->request->filter('trim,strip_tags,htmlspecialchars');
  126. $this->auth = Auth::instance();
  127. $modulename = $this->request->module();
  128. $controllername = Loader::parseName($this->request->controller());
  129. $actionname = strtolower($this->request->action());
  130. // token
  131. //$token = $this->request->server('HTTP_TOKEN', $this->request->request('token', \think\Cookie::get('token')));
  132. $this->tvuser_login();
  133. $path = str_replace('.', '/', $controllername) . '/' . $actionname;
  134. // 设置当前请求的URI
  135. $this->auth->setRequestUri($path);
  136. // 检测是否需要验证登录
  137. if (!$this->auth->match($this->noNeedLogin)) {
  138. //初始化
  139. //$this->auth->init($token);
  140. //检测是否登录
  141. if (!$this->auth->isLogin()) {
  142. $this->error(__('Please login first'), null, 401);
  143. }
  144. // 判断是否需要验证权限
  145. /*if (!$this->auth->match($this->noNeedRight)) {
  146. // 判断控制器和方法判断是否有对应权限
  147. if (!$this->auth->check($path)) {
  148. $this->error(__('You have no permission'), null, 403);
  149. }
  150. }*/
  151. } else {
  152. }
  153. $upload = \app\common\model\Config::upload();
  154. // 上传信息配置后
  155. Hook::listen("upload_config_init", $upload);
  156. Config::set('upload', array_merge(Config::get('upload'), $upload));
  157. // 加载当前控制器语言包
  158. $this->loadlang($controllername);
  159. }
  160. /**
  161. * 加载语言文件
  162. * @param string $name
  163. */
  164. protected function loadlang($name)
  165. {
  166. $name = Loader::parseName($name);
  167. $name = preg_match("/^([a-zA-Z0-9_\.\/]+)\$/i", $name) ? $name : 'index';
  168. $lang = $this->request->langset();
  169. $lang = preg_match("/^([a-zA-Z\-_]{2,10})\$/i", $lang) ? $lang : 'zh-cn';
  170. Lang::load(APP_PATH . $this->request->module() . '/lang/' . $lang . '/' . str_replace('.', '/', $name) . '.php');
  171. }
  172. /**
  173. * 操作成功返回的数据
  174. * @param string $msg 提示信息
  175. * @param mixed $data 要返回的数据
  176. * @param int $code 错误码,默认为1
  177. * @param string $type 输出类型
  178. * @param array $header 发送的 Header 信息
  179. */
  180. protected function success($msg = '', $data = null, $code = 1, $type = null, array $header = [])
  181. {
  182. if($msg == 1){
  183. $msg = 'success';
  184. }
  185. if(empty($msg)){
  186. $msg = '操作成功';
  187. }
  188. $this->result($msg, $data, $code, $type, $header);
  189. }
  190. /**
  191. * 操作失败返回的数据
  192. * @param string $msg 提示信息
  193. * @param mixed $data 要返回的数据
  194. * @param int $code 错误码,默认为0
  195. * @param string $type 输出类型
  196. * @param array $header 发送的 Header 信息
  197. */
  198. protected function error($msg = '', $data = null, $code = 0, $type = null, array $header = [])
  199. {
  200. if(empty($msg)){
  201. $msg = __('Invalid parameters');
  202. }
  203. $this->result($msg, $data, $code, $type, $header);
  204. }
  205. /**
  206. * 返回封装后的 API 数据到客户端
  207. * @access protected
  208. * @param mixed $msg 提示信息
  209. * @param mixed $data 要返回的数据
  210. * @param int $code 错误码,默认为0
  211. * @param string $type 输出类型,支持json/xml/jsonp
  212. * @param array $header 发送的 Header 信息
  213. * @return void
  214. * @throws HttpResponseException
  215. */
  216. protected function result($msg, $data = null, $code = 0, $type = null, array $header = [])
  217. {
  218. $result = [
  219. 'code' => $code,
  220. 'msg' => $msg,
  221. 'time' => Request::instance()->server('REQUEST_TIME'),
  222. 'data' => $data,
  223. ];
  224. //日志
  225. $this->request_log_update($result);
  226. // 如果未设置类型则使用默认类型判断
  227. $type = $type ? : $this->responseType;
  228. if (isset($header['statuscode'])) {
  229. $code = $header['statuscode'];
  230. unset($header['statuscode']);
  231. } else {
  232. //未设置状态码,根据code值判断
  233. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  234. }
  235. $response = Response::create($result, $type, $code)->header($header);
  236. throw new HttpResponseException($response);
  237. }
  238. /**
  239. * 前置操作
  240. * @access protected
  241. * @param string $method 前置操作方法名
  242. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  243. * @return void
  244. */
  245. protected function beforeAction($method, $options = [])
  246. {
  247. if (isset($options['only'])) {
  248. if (is_string($options['only'])) {
  249. $options['only'] = explode(',', $options['only']);
  250. }
  251. if (!in_array($this->request->action(), $options['only'])) {
  252. return;
  253. }
  254. } elseif (isset($options['except'])) {
  255. if (is_string($options['except'])) {
  256. $options['except'] = explode(',', $options['except']);
  257. }
  258. if (in_array($this->request->action(), $options['except'])) {
  259. return;
  260. }
  261. }
  262. call_user_func([$this, $method]);
  263. }
  264. /**
  265. * 设置验证失败后是否抛出异常
  266. * @access protected
  267. * @param bool $fail 是否抛出异常
  268. * @return $this
  269. */
  270. protected function validateFailException($fail = true)
  271. {
  272. $this->failException = $fail;
  273. return $this;
  274. }
  275. /**
  276. * 验证数据
  277. * @access protected
  278. * @param array $data 数据
  279. * @param string|array $validate 验证器名或者验证规则数组
  280. * @param array $message 提示信息
  281. * @param bool $batch 是否批量验证
  282. * @param mixed $callback 回调方法(闭包)
  283. * @return array|string|true
  284. * @throws ValidateException
  285. */
  286. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  287. {
  288. if (is_array($validate)) {
  289. $v = Loader::validate();
  290. $v->rule($validate);
  291. } else {
  292. // 支持场景
  293. if (strpos($validate, '.')) {
  294. list($validate, $scene) = explode('.', $validate);
  295. }
  296. $v = Loader::validate($validate);
  297. !empty($scene) && $v->scene($scene);
  298. }
  299. // 批量验证
  300. if ($batch || $this->batchValidate) {
  301. $v->batch(true);
  302. }
  303. // 设置错误信息
  304. if (is_array($message)) {
  305. $v->message($message);
  306. }
  307. // 使用回调验证
  308. if ($callback && is_callable($callback)) {
  309. call_user_func_array($callback, [$v, &$data]);
  310. }
  311. if (!$v->check($data)) {
  312. if ($this->failException) {
  313. throw new ValidateException($v->getError());
  314. }
  315. return $v->getError();
  316. }
  317. return true;
  318. }
  319. /**
  320. * 刷新Token
  321. */
  322. protected function token()
  323. {
  324. $token = $this->request->param('__token__');
  325. //验证Token
  326. if (!Validate::make()->check(['__token__' => $token], ['__token__' => 'require|token'])) {
  327. $this->error(__('Token verification error'), ['__token__' => $this->request->token()]);
  328. }
  329. //刷新Token
  330. $this->request->token();
  331. }
  332. /**
  333. * 接口请求限制
  334. * @param int $apiLimit
  335. * @param int $apiLimitTime
  336. * @param string $key
  337. * @return bool | true:通过 false:拒绝
  338. */
  339. public function apiLimit($apiLimit = 1, $apiLimitTime = 1000, $key = '')
  340. {
  341. $userId = $this->auth->id;
  342. $controller = request()->controller();
  343. $action = request()->action();
  344. if (!$key) {
  345. $key = strtolower($controller) . '_' . strtolower($action) . '_' . $userId;
  346. }
  347. $redis = new Redis();
  348. $redisconfig = config("redis");
  349. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  350. if ($redisconfig['redis_pwd']) {
  351. $redis->auth($redisconfig['redis_pwd']);
  352. }
  353. if($redisconfig['redis_selectdb'] > 0){
  354. $redis->select($redisconfig['redis_selectdb']);
  355. }
  356. //
  357. //指定键值新增+1 并获取
  358. $count = $redis->incr($key);
  359. if ($count > $apiLimit) {
  360. return false;
  361. }
  362. //设置过期时间
  363. if ($count == 1) {
  364. $redis->pExpire($key, $apiLimitTime);
  365. }
  366. return true;
  367. }
  368. /*
  369. * api 请求日志
  370. * */
  371. protected function request_log(){
  372. //api_request_log
  373. $modulename = $this->request->module();
  374. $controllername = $this->request->controller();
  375. $actionname = $this->request->action();
  376. if(strtolower($actionname) == 'callback'){
  377. return true;
  378. }
  379. defined('API_REQUEST_LOG_TYPE') or define('API_REQUEST_LOG_TYPE', $this->logType);
  380. $params = input();
  381. if ($this->logType === 1){
  382. //日志统一写入
  383. register_shutdown_function([new LogUtil, 'close']);
  384. LogUtil::getInstance('Api/'); //设置日志存入通道
  385. LogUtil::info('uid', 'Api-Middleware-Log', 'request_log', $this->auth->id);
  386. LogUtil::info('api', 'Api-Middleware-Log', 'request_log', $modulename . '/' . $controllername . '/' . $actionname);
  387. LogUtil::info('params', 'Api-Middleware-Log', 'request_log', json_encode($params));
  388. LogUtil::info('ip', 'Api-Middleware-Log', 'request_log', request()->ip());
  389. }else{
  390. $data = [
  391. 'uid' => $this->auth->id,
  392. 'api' => $modulename.'/'.$controllername.'/'.$actionname,
  393. 'params' => json_encode($params),
  394. 'addtime' => time(),
  395. 'adddatetime' => date('Y-m-d H:i:s'),
  396. 'ip' => request()->ip(),
  397. ];
  398. $request_id = db('api_request_log')->insertGetId($data);
  399. defined('API_REQUEST_ID') or define('API_REQUEST_ID', $request_id);
  400. }
  401. }
  402. protected function request_log_update($log_result){
  403. if ($this->logType === 1){
  404. if (strlen(json_encode($log_result['data'])) > 1000) {
  405. //$log_result['data'] = '数据太多,不记录';
  406. }
  407. LogUtil::info('result', 'Api-Middleware-Log', 'request_log', $log_result);
  408. }else{
  409. if(defined('API_REQUEST_ID')) { //记录app正常返回结果
  410. if(strlen(json_encode($log_result['data'])) > 1000) {
  411. //$log_result['data'] = '数据太多,不记录';
  412. }
  413. db('api_request_log')->where('id',API_REQUEST_ID)->update(['result'=>json_encode($log_result)]);
  414. }
  415. }
  416. }
  417. //是否关注
  418. protected function is_follow($uid,$follow_uid){
  419. $where = [
  420. 'uid' => $uid,
  421. 'follow_uid' => $follow_uid,
  422. ];
  423. $check = db('user_follow')->where($where)->find();
  424. if($check){
  425. return 1;
  426. }else{
  427. return 0;
  428. }
  429. }
  430. //实名认证限制功能
  431. //true 不需要实名认证,不受限
  432. //false 需要实名认证,受限
  433. protected function user_auth_limit(){
  434. if($this->auth->idcard_status == 1){
  435. return true; //已实名,不受限
  436. }else{
  437. return false;
  438. }
  439. }
  440. }