Api.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. <?php
  2. namespace app\common\controller;
  3. use app\common\library\Auth;
  4. use think\Config;
  5. use think\Db;
  6. use think\exception\HttpResponseException;
  7. use think\exception\ValidateException;
  8. use think\Hook;
  9. use think\Lang;
  10. use think\Loader;
  11. use think\Request;
  12. use think\Response;
  13. use think\Route;
  14. use think\Validate;
  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. protected $page;
  58. //每页展示数量
  59. protected $pagenum;
  60. /**
  61. * 构造方法
  62. * @access public
  63. * @param Request $request Request 对象
  64. */
  65. public function __construct(Request $request = null)
  66. {
  67. $this->request = is_null($request) ? Request::instance() : $request;
  68. $this->page = input('page', 1, 'intval');
  69. $this->pagenum = input('pagenum', 10, 'intval');
  70. // 控制器初始化
  71. $this->_initialize();
  72. // 前置操作方法
  73. if ($this->beforeActionList) {
  74. foreach ($this->beforeActionList as $method => $options) {
  75. is_numeric($method) ?
  76. $this->beforeAction($options) :
  77. $this->beforeAction($method, $options);
  78. }
  79. }
  80. }
  81. /**
  82. * 初始化操作
  83. * @access protected
  84. */
  85. protected function _initialize()
  86. {
  87. //跨域请求检测
  88. check_cors_request();
  89. // 检测IP是否允许
  90. check_ip_allowed();
  91. //移除HTML标签
  92. $this->request->filter('trim,strip_tags,htmlspecialchars');
  93. $this->auth = Auth::instance();
  94. $modulename = $this->request->module();
  95. $controllername = Loader::parseName($this->request->controller());
  96. $actionname = strtolower($this->request->action());
  97. // token
  98. $token = $this->request->server('HTTP_TOKEN', $this->request->request('token', \think\Cookie::get('token')));
  99. $path = str_replace('.', '/', $controllername) . '/' . $actionname;
  100. // 设置当前请求的URI
  101. $this->auth->setRequestUri($path);
  102. // 检测是否需要验证登录
  103. if (!$this->auth->match($this->noNeedLogin)) {
  104. //初始化
  105. $this->auth->init($token);
  106. //检测是否登录
  107. if (!$this->auth->isLogin()) {
  108. $this->error(__('Please login first'), null, 401);
  109. }
  110. // 判断是否需要验证权限
  111. if (!$this->auth->match($this->noNeedRight)) {
  112. // 判断控制器和方法判断是否有对应权限
  113. if (!$this->auth->check($path)) {
  114. $this->error(__('You have no permission'), null, 403);
  115. }
  116. }
  117. } else {
  118. // 如果有传递token才验证是否登录状态
  119. if ($token) {
  120. $this->auth->init($token);
  121. }
  122. }
  123. $upload = \app\common\model\Config::upload();
  124. // 上传信息配置后
  125. Hook::listen("upload_config_init", $upload);
  126. Config::set('upload', array_merge(Config::get('upload'), $upload));
  127. // 加载当前控制器语言包
  128. $this->loadlang($controllername);
  129. //记录请求地址
  130. if ($controllername != 'notify') {
  131. $user_log = [
  132. 'user_id' => $this->auth->id ?: '',
  133. 'username' => $this->auth->mobile ?: '',
  134. 'url' => $modulename . '/' . $controllername . '/' . $actionname,
  135. 'content' => json_encode(request()->param('', null, 'trim,strip_tags,htmlspecialchars'), JSON_UNESCAPED_UNICODE),
  136. 'ip' => request()->ip(),
  137. 'useragent' => substr(request()->server('HTTP_USER_AGENT'), 0, 255),
  138. 'createtime' => time()
  139. ];
  140. Db::name('user_log')->insert($user_log);
  141. }
  142. }
  143. /**
  144. * 加载语言文件
  145. * @param string $name
  146. */
  147. protected function loadlang($name)
  148. {
  149. $name = Loader::parseName($name);
  150. Lang::load(APP_PATH . $this->request->module() . '/lang/' . $this->request->langset() . '/' . str_replace('.', '/', $name) . '.php');
  151. }
  152. /**
  153. * 操作成功返回的数据
  154. * @param string $msg 提示信息
  155. * @param mixed $data 要返回的数据
  156. * @param int $code 错误码,默认为1
  157. * @param string $type 输出类型
  158. * @param array $header 发送的 Header 信息
  159. */
  160. protected function success($msg = '', $data = null, $code = 1, $type = null, array $header = [])
  161. {
  162. $this->result($msg, $data, $code, $type, $header);
  163. }
  164. /**
  165. * 操作失败返回的数据
  166. * @param string $msg 提示信息
  167. * @param mixed $data 要返回的数据
  168. * @param int $code 错误码,默认为0
  169. * @param string $type 输出类型
  170. * @param array $header 发送的 Header 信息
  171. */
  172. protected function error($msg = '', $data = null, $code = 0, $type = null, array $header = [])
  173. {
  174. $this->result($msg, $data, $code, $type, $header);
  175. }
  176. /**
  177. * 返回封装后的 API 数据到客户端
  178. * @access protected
  179. * @param mixed $msg 提示信息
  180. * @param mixed $data 要返回的数据
  181. * @param int $code 错误码,默认为0
  182. * @param string $type 输出类型,支持json/xml/jsonp
  183. * @param array $header 发送的 Header 信息
  184. * @return void
  185. * @throws HttpResponseException
  186. */
  187. protected function result($msg, $data = null, $code = 0, $type = null, array $header = [])
  188. {
  189. $result = [
  190. 'code' => $code,
  191. 'msg' => $msg,
  192. 'time' => Request::instance()->server('REQUEST_TIME'),
  193. 'data' => $data,
  194. ];
  195. // 如果未设置类型则自动判断
  196. $type = $type ? $type : ($this->request->param(config('var_jsonp_handler')) ? 'jsonp' : $this->responseType);
  197. if (isset($header['statuscode'])) {
  198. $code = $header['statuscode'];
  199. unset($header['statuscode']);
  200. } else {
  201. //未设置状态码,根据code值判断
  202. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  203. }
  204. $response = Response::create($result, $type, $code)->header($header);
  205. throw new HttpResponseException($response);
  206. }
  207. /**
  208. * 前置操作
  209. * @access protected
  210. * @param string $method 前置操作方法名
  211. * @param array $options 调用参数 ['only'=>[...]] 或者 ['except'=>[...]]
  212. * @return void
  213. */
  214. protected function beforeAction($method, $options = [])
  215. {
  216. if (isset($options['only'])) {
  217. if (is_string($options['only'])) {
  218. $options['only'] = explode(',', $options['only']);
  219. }
  220. if (!in_array($this->request->action(), $options['only'])) {
  221. return;
  222. }
  223. } elseif (isset($options['except'])) {
  224. if (is_string($options['except'])) {
  225. $options['except'] = explode(',', $options['except']);
  226. }
  227. if (in_array($this->request->action(), $options['except'])) {
  228. return;
  229. }
  230. }
  231. call_user_func([$this, $method]);
  232. }
  233. /**
  234. * 设置验证失败后是否抛出异常
  235. * @access protected
  236. * @param bool $fail 是否抛出异常
  237. * @return $this
  238. */
  239. protected function validateFailException($fail = true)
  240. {
  241. $this->failException = $fail;
  242. return $this;
  243. }
  244. /**
  245. * 验证数据
  246. * @access protected
  247. * @param array $data 数据
  248. * @param string|array $validate 验证器名或者验证规则数组
  249. * @param array $message 提示信息
  250. * @param bool $batch 是否批量验证
  251. * @param mixed $callback 回调方法(闭包)
  252. * @return array|string|true
  253. * @throws ValidateException
  254. */
  255. protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
  256. {
  257. if (is_array($validate)) {
  258. $v = Loader::validate();
  259. $v->rule($validate);
  260. } else {
  261. // 支持场景
  262. if (strpos($validate, '.')) {
  263. list($validate, $scene) = explode('.', $validate);
  264. }
  265. $v = Loader::validate($validate);
  266. !empty($scene) && $v->scene($scene);
  267. }
  268. // 批量验证
  269. if ($batch || $this->batchValidate) {
  270. $v->batch(true);
  271. }
  272. // 设置错误信息
  273. if (is_array($message)) {
  274. $v->message($message);
  275. }
  276. // 使用回调验证
  277. if ($callback && is_callable($callback)) {
  278. call_user_func_array($callback, [$v, &$data]);
  279. }
  280. if (!$v->check($data)) {
  281. if ($this->failException) {
  282. throw new ValidateException($v->getError());
  283. }
  284. return $v->getError();
  285. }
  286. return true;
  287. }
  288. /**
  289. * 刷新Token
  290. */
  291. protected function token()
  292. {
  293. $token = $this->request->param('__token__');
  294. //验证Token
  295. if (!Validate::make()->check(['__token__' => $token], ['__token__' => 'require|token'])) {
  296. $this->error(__('Token verification error'), ['__token__' => $this->request->token()]);
  297. }
  298. //刷新Token
  299. $this->request->token();
  300. }
  301. /*检查今日是否登录赠送过成长值*/
  302. protected function checklogingrowth($id = 0) {
  303. if ($id) {
  304. $user_info = Db::name('user')->find($id);
  305. //查询今日是否登录赠送过成长值
  306. $time = strtotime(date('Y-m-d', time()));
  307. $logingrowth = config('site.logingrowth') ? (int)config('site.logingrowth') : 0;//登录成长值
  308. if ($logingrowth) {
  309. $growth_log = Db::name('user_growth_log')->where(['user_id' => $user_info['id'], 'type' => 1])->order('id', 'desc')->find();
  310. if (!$growth_log || ($growth_log['after'] == $user_info['growthvalue'] && $growth_log['createtime'] < $time)) {
  311. Db::startTrans();
  312. $rs = create_growth_log($logingrowth, '登录', $id, 1);
  313. if ($rs != 1) {
  314. Db::rollback();
  315. } else {
  316. Db::commit();
  317. }
  318. /*$growth_data['user_id'] = $user_info['id'];
  319. $growth_data['growth'] = $logingrowth;
  320. $growth_data['before'] = $user_info['growthvalue'];
  321. $growth_data['after'] = $user_info['growthvalue'] + $logingrowth;
  322. $growth_data['memo'] = '登录';
  323. $growth_data['createtime'] = time();
  324. Db::startTrans();
  325. $rt = Db::name('user_growth_log')->insertGetId($growth_data);
  326. $rs = Db::name('user')->where(['id' => $user_info['id'], 'growthvalue' => $user_info['growthvalue']])->setField('growthvalue', $growth_data['after']);
  327. if ($rt && $rs) {
  328. Db::commit();
  329. } else {
  330. Db::rollback();
  331. }*/
  332. }
  333. }
  334. }
  335. }
  336. /*检查会员等级*/
  337. protected function checkviplevel($id = 0) {
  338. if ($id) {
  339. $user_info = Db::name('user')->find($id);
  340. //检查更新会员等级
  341. $growthvalue = $user_info['growthvalue'];
  342. $vip_info = Db::name('vip')->where(['growthvalue' => ['elt', $growthvalue]])->order('id', 'desc')->find();
  343. $user_data = [];
  344. if ($vip_info['id'] != $user_info['growthlevel']) {
  345. $user_data['growthlevel'] = $vip_info['id'];
  346. //当前会员信息
  347. $last_vip_info = Db::name('vip')->find($user_info['growthlevel']);
  348. $freenumber = $user_info['freenumber'] + $vip_info['free'] - $last_vip_info['free'];
  349. $user_data['freenumber'] = $freenumber > 0 ? $freenumber : 0;//免费次数
  350. }
  351. //检查体验会员
  352. if ($user_info['experiencetime'] < time()) {
  353. //体验会员到期
  354. if ($vip_info['id'] != $user_info['growthlevel']) { //成长值会员等级更新
  355. $user_data['maxlevel'] = $vip_info['id'];
  356. } elseif ($user_info['maxlevel'] != $user_info['growthlevel']) {
  357. $user_data['maxlevel'] = $user_info['growthlevel'];
  358. }
  359. } else {
  360. //体验会员没到期
  361. if ($vip_info['id'] > $user_info['maxlevel']) {
  362. $user_data['maxlevel'] = $vip_info['id'];
  363. }
  364. }
  365. if ($user_data) {
  366. Db::startTrans();
  367. $res = Db::name('user')->where(['id' => $user_info['id']])->setField($user_data);
  368. if (!$res) {
  369. Db::rollback();
  370. } else {
  371. Db::commit();
  372. }
  373. }
  374. }
  375. }
  376. //base16编码
  377. public function base16_encode($string = '')
  378. {
  379. $encode = '';
  380. $chars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'];
  381. for ($i = 0; $i < strlen($string); $i++) {
  382. $encode .= $chars[(ord($string[$i]) & 0b11110000) >> 4] . $chars[ord($string[$i]) & 0b00001111];
  383. }
  384. return $encode;
  385. }
  386. }