Base.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use Firebase\JWT\JWT;
  16. use think\Controller;
  17. use think\Db;
  18. use think\Exception;
  19. use think\exception\HttpResponseException;
  20. use think\Request;
  21. use think\Response;
  22. use function AlibabaCloud\Client\value;
  23. /**
  24. * 会员管理基类
  25. * Class Member
  26. * @package app\store\controller\api
  27. */
  28. class Base extends Controller
  29. {
  30. protected $user_id;
  31. protected $page; // 页数
  32. protected $page_num;// 每页多少
  33. protected $off_set;
  34. protected $is_commit = true; // 事务是否提交
  35. protected $ret_msg = ''; // 返回提示信息
  36. protected $is_test = false;
  37. protected $need_login = [];
  38. public function initialize(){
  39. $this->page = input('page',1);
  40. $this->page_num = input('page_num',20);
  41. $this->off_set = $this->page * $this->page_num - $this->page_num;
  42. $this->is_test = input('test',0);// 测试用的
  43. $path = explode('/',$this->request->path());
  44. if( input('user_id')) $this->user_id = input('user_id');
  45. if(!empty($this->need_login) && in_array(end($path),$this->need_login)) $this->checkLogin();
  46. }
  47. //校验jwt权限API
  48. protected function checkLogin()
  49. {
  50. $authorization = app()->request->header('Authorization');
  51. if(empty($authorization) || $authorization == null){
  52. if($this->is_test == 1) {
  53. $this->user_id = input('user_id') ? input('user_id') : 22;
  54. return true;
  55. }
  56. $this->error('Token不存在,拒绝访问--','',0,-1);
  57. }
  58. $key = md5(config('app.jwt'));
  59. try {
  60. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  61. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  62. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  63. if (!empty($authInfo['uid'])) {
  64. $member = Db::name('store_member')->where('id',$authInfo['uid'])->find();
  65. if(empty($member) || $member['is_deleted']) $this->error('会员不存在','',0);
  66. //if(!empty($authInfo['facility_code']) && !in_array($authInfo['facility_code'],[$member['facility_1'],$member['facility_2'],$member['facility_3'],$member['facility_4'],$member['facility_5']])) $this->error('该设备已被禁用','',0,-1);
  67. if($member['status']){
  68. $this->user_id = $authInfo['uid'];
  69. return $this->user_id;
  70. }else{
  71. $this->error('该会员已被禁用','',0,-1);
  72. }
  73. } else {
  74. $this->error('Token验证不通过,用户不存在','',0,-1);
  75. }
  76. } catch (\Exception $e) {
  77. $this->error($e->getMessage(),'',0,-1);
  78. }
  79. }
  80. protected function setUid(){
  81. $authorization = app()->request->header('Authorization');
  82. $key = md5(config('app.jwt'));
  83. if(empty($authorization) || $authorization == null) return false;
  84. try {
  85. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  86. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  87. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  88. if (!empty($authInfo['uid'])) {
  89. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  90. if($member['status']){
  91. $this->user_id = $authInfo['uid'];
  92. $this->user_id;
  93. return true;
  94. }
  95. }
  96. } catch (\Exception $e) {
  97. return false;
  98. //$this->error($e->getMessage(),'',0,-1);
  99. }
  100. }
  101. // 获取用户信息
  102. function userInfo($field =''){
  103. if(!$this->user_id) return [];
  104. return $field ? Db::name('store_member')->field($field)->find($this->user_id) : Db::name('store_member')->find($this->user_id);
  105. }
  106. // 验证短信验证码
  107. protected function checkPhoneCode($phone,$code){
  108. //return true;
  109. $sel_time =date('Y-m-d H:i:s',time()-600);
  110. $store_member_sms = Db::name('store_member_sms')
  111. ->field('id,code')->where('phone',$phone)
  112. ->where('create_at','> time',$sel_time)
  113. ->where('used',0)->order('id desc')->find();
  114. return !empty($store_member_sms) && $store_member_sms['code'] == $code ? $store_member_sms['id'] :0;
  115. }
  116. // 更新验证码状态
  117. protected function updatePhoneCode($code_id){
  118. Db::name('store_member_sms')->where('id',$code_id)->update(['used'=>1]);
  119. }
  120. /**
  121. * 操作成功返回的数据
  122. * @param string $msg 提示信息
  123. * @param mixed $data 要返回的数据
  124. * @param int $code 错误码,默认为1
  125. * @param string $type 输出类型
  126. * @param array $header 发送的 Header 信息
  127. */
  128. protected function success($msg = 'ok', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  129. {
  130. $this->results($msg, $data, $is_login, $code, $type, $header);
  131. }
  132. /**
  133. * 操作失败返回的数据
  134. * @param string $msg 提示信息
  135. * @param mixed $data 要返回的数据
  136. * @param int $code 错误码,默认为0
  137. * @param string $type 输出类型
  138. * @param array $header 发送的 Header 信息
  139. */
  140. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  141. {
  142. if(empty($this->user_id)){
  143. $is_login = 0;
  144. }
  145. $this->results($msg, $data, $is_login, $code, $type, $header);
  146. }
  147. /**
  148. * 返回封装后的 API 数据到客户端
  149. * @access protected
  150. * @param mixed $msg 提示信息
  151. * @param mixed $data 要返回的数据
  152. * @param int $code 错误码,默认为0
  153. * @param string $type 输出类型,支持json/xml/jsonp
  154. * @param array $header 发送的 Header 信息
  155. * @return void
  156. * @throws HttpResponseException
  157. */
  158. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  159. {
  160. $result = [
  161. 'code' => $code,
  162. 'is_login' => $is_login,
  163. 'msg' => $msg,
  164. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  165. 'data' => $data,
  166. ];
  167. // 如果未设置类型则自动判断
  168. $type = $type ? $type : 'json';
  169. if (isset($header['statuscode']))
  170. {
  171. $code = $header['statuscode'];
  172. unset($header['statuscode']);
  173. }
  174. else
  175. {
  176. //未设置状态码,根据code值判断
  177. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  178. }
  179. $response = Response::create($result, $type, $code)->header($header);
  180. throw new HttpResponseException($response);
  181. }
  182. //token加密
  183. public function createJwt($uid,$facility_code='')
  184. {
  185. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  186. $time = time(); //签发时间
  187. $expire = $time + config('app.jwt_time'); //过期时间
  188. $token = array(
  189. "uid" => $uid,
  190. "iss" => "https://zain.com",//签发组织
  191. "aud" => "https://zain.com", //签发作者
  192. "iat" => $time,
  193. "nbf" => $time,
  194. "exp" => $expire,
  195. "facility_code" => $facility_code,
  196. );
  197. $jwt = JWT::encode($token, $key);
  198. return $jwt;
  199. }
  200. protected function exception($msg){
  201. throw new Exception($msg);
  202. }
  203. // 事务返回
  204. protected function transReturn($data = []){
  205. $this->is_commit ? $this->success($this->ret_msg,$data):$this->error($this->ret_msg);
  206. }
  207. }