Base.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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 app\common\model\UserFacility;
  16. use app\common\service\UserSynth;
  17. use Firebase\JWT\JWT;
  18. use think\cache\driver\Redis;
  19. use think\Controller;
  20. use think\Db;
  21. use think\Exception;
  22. use think\exception\HttpResponseException;
  23. use think\Request;
  24. use think\Response;
  25. use function AlibabaCloud\Client\value;
  26. use think\facade\Hook;
  27. /**
  28. * 会员管理基类
  29. * Class Member
  30. * @package app\store\controller\api
  31. */
  32. class Base extends Controller
  33. {
  34. protected $user_id;// 权限id
  35. protected $page; // 页数
  36. protected $page_num;// 每页多少
  37. protected $off_set;
  38. protected $is_commit = true; // 事务是否提交
  39. protected $ret_msg = ''; // 返回提示信息
  40. protected $is_test = false;
  41. protected $need_login = [];
  42. protected $account_id;// 账号id
  43. public function initialize(){
  44. $this->page = input('page',1);
  45. $this->page_num = input('page_num',20);
  46. $this->off_set = $this->page * $this->page_num - $this->page_num;
  47. $this->is_test = input('test',0);// 测试用的
  48. $path = explode('/',$this->request->path());
  49. if( input('user_id')) $this->user_id = input('user_id');
  50. if(!empty($this->need_login) && in_array(end($path),$this->need_login)) $this->checkLogin();
  51. //if($this->user_id == 97) $this->user_id = 83;
  52. // 钩子注册
  53. $tags = config('tags.');
  54. var_dump($tags);
  55. if(!empty($tags)) {
  56. foreach ($tags as $tag => $behavior) {
  57. // 数组反转 保证最上面的行为优先级最高
  58. $behavior = array_reverse($behavior);
  59. foreach ($behavior as $be) {
  60. Hook::add($tag, $be, true);
  61. }
  62. }
  63. }
  64. }
  65. //校验jwt权限API
  66. protected function checkLogin()
  67. {
  68. $authorization = app()->request->header('Authorization');
  69. if(empty($authorization) || $authorization == null){
  70. if($this->is_test == 1) {
  71. $this->user_id = input('user_id') ? input('user_id') : 22;
  72. return true;
  73. }
  74. $this->error('Token不存在,拒绝访问--','',0,-1);
  75. }
  76. $key = md5(config('app.jwt'));
  77. try {
  78. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  79. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  80. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  81. if (!empty($authInfo['uid'])) {
  82. $this->account_id = $authInfo['uid'];
  83. //设备号验证 start
  84. /* if(empty($authInfo['facility_type']) || empty($authInfo['login_type'])) $this->exception('请重新登录');
  85. $redis = new Redis();
  86. if(!in_array($authInfo['facility_type'],[1,2,3,4])) {// H5 redis验证
  87. $check_redis = $redis->get('TOKEN_'.$authInfo['uid'].'_'.$authInfo['facility_type']);
  88. if($authorization != $check_redis) $this->exception('请重新登录');
  89. }else{
  90. $redis = new Redis();
  91. $check_redis = $redis->get('TOKEN_APP'.$authInfo['uid'].'_'.$authInfo['facility_type']);
  92. if(!$check_redis) {
  93. $facility_id = UserFacility::where(['user_id'=>$authInfo['uid'],'type'=>$authInfo['facility_type'],'facility'=>$authInfo['facility_code']])->value('id');
  94. if(!$facility_id) $this->exception('该设备已被禁用');
  95. $redis->set('TOKEN_APP'.$authInfo['uid'].'_'.$authInfo['facility_type'],600);// 设置10分钟缓存
  96. }
  97. }*/
  98. // 设备号验证end
  99. $member = Db::name('store_member')->where('id',$authInfo['uid'])->find();
  100. if(empty($member) || $member['is_deleted']) $this->exception('会员不存在');
  101. //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);
  102. // 企业用户绑定验证
  103. if($member['account_type'] == 1 && empty($member['bind_id']) && $this->request->action() != 'modifyPhone') $this->error('请绑定手机号');
  104. if($member['status']){
  105. if($member['account_type'] == 1){
  106. $this->user_id = $member['bind_id'];
  107. return true;
  108. }
  109. $this->user_id = $authInfo['uid'];
  110. // 会员活跃度增加
  111. if(!empty($authInfo['login_type'])) UserSynth::vitality( $this->user_id,$authInfo['login_type']);
  112. return $this->user_id;
  113. }else{
  114. $this->exception('该会员已被禁用');
  115. }
  116. } else {
  117. $this->exception('Token验证不通过,用户不存在');
  118. }
  119. } catch (\Exception $e) {
  120. $this->error($e->getMessage(),'',0,-1);
  121. }
  122. //if($this->user_id == 97) $this->user_id = 83;
  123. }
  124. protected function setUid(){
  125. $authorization = app()->request->header('Authorization');
  126. $key = md5(config('app.jwt'));
  127. if(empty($authorization) || $authorization == null) return false;
  128. try {
  129. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  130. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  131. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  132. if (!empty($authInfo['uid'])) {
  133. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  134. if($member['status']){
  135. $this->user_id = $authInfo['uid'];
  136. $this->user_id;
  137. return true;
  138. }
  139. }
  140. } catch (\Exception $e) {
  141. return false;
  142. //$this->error($e->getMessage(),'',0,-1);
  143. }
  144. }
  145. // 获取用户信息
  146. function userInfo($field =''){
  147. if(!$this->user_id) return [];
  148. return $field ? Db::name('store_member')->field($field)->find($this->user_id) : Db::name('store_member')->find($this->user_id);
  149. }
  150. // 验证短信验证码
  151. protected function checkPhoneCode($phone,$code){
  152. //return true;
  153. $sel_time =date('Y-m-d H:i:s',time()-600);
  154. $store_member_sms = Db::name('store_member_sms')
  155. ->field('id,code')->where('phone',$phone)
  156. ->where('create_at','> time',$sel_time)
  157. ->where('used',0)->order('id desc')->find();
  158. return !empty($store_member_sms) && $store_member_sms['code'] == $code ? $store_member_sms['id'] :0;
  159. }
  160. // 更新验证码状态
  161. protected function updatePhoneCode($code_id){
  162. Db::name('store_member_sms')->where('id',$code_id)->update(['used'=>1]);
  163. }
  164. /**
  165. * 操作成功返回的数据
  166. * @param string $msg 提示信息
  167. * @param mixed $data 要返回的数据
  168. * @param int $code 错误码,默认为1
  169. * @param string $type 输出类型
  170. * @param array $header 发送的 Header 信息
  171. */
  172. protected function success($msg = 'ok', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  173. {
  174. $this->results($msg, $data, $is_login, $code, $type, $header);
  175. }
  176. /**
  177. * 操作失败返回的数据
  178. * @param string $msg 提示信息
  179. * @param mixed $data 要返回的数据
  180. * @param int $code 错误码,默认为0
  181. * @param string $type 输出类型
  182. * @param array $header 发送的 Header 信息
  183. */
  184. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  185. {
  186. if(empty($this->user_id)){
  187. $is_login = 0;
  188. }
  189. $this->results($msg, $data, $is_login, $code, $type, $header);
  190. }
  191. /**
  192. * 返回封装后的 API 数据到客户端
  193. * @access protected
  194. * @param mixed $msg 提示信息
  195. * @param mixed $data 要返回的数据
  196. * @param int $code 错误码,默认为0
  197. * @param string $type 输出类型,支持json/xml/jsonp
  198. * @param array $header 发送的 Header 信息
  199. * @return void
  200. * @throws HttpResponseException
  201. */
  202. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  203. {
  204. $result = [
  205. 'code' => $code,
  206. 'is_login' => $is_login,
  207. 'msg' => $msg,
  208. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  209. 'data' => $data,
  210. ];
  211. // 如果未设置类型则自动判断
  212. $type = $type ? $type : 'json';
  213. if (isset($header['statuscode']))
  214. {
  215. $code = $header['statuscode'];
  216. unset($header['statuscode']);
  217. }
  218. else
  219. {
  220. //未设置状态码,根据code值判断
  221. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  222. }
  223. $response = Response::create($result, $type, $code)->header($header);
  224. throw new HttpResponseException($response);
  225. }
  226. /**
  227. * 生成token
  228. * @param $uid 会有id
  229. * @param string $facility_code 设备号
  230. * @param int $port 登录类型
  231. * @return string
  232. */
  233. public function createJwt($uid,$facility_code='',$login_type=0)
  234. {
  235. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  236. $time = time(); //签发时间
  237. $expire = $time + config('app.jwt_time'); //过期时间
  238. $token = array(
  239. "uid" => $uid,
  240. "iss" => "https://zain.com",//签发组织
  241. "aud" => "https://zain.com", //签发作者
  242. "iat" => $time,
  243. "nbf" => $time,
  244. "exp" => $expire,
  245. "facility_code" => $facility_code,
  246. "login_type" => $login_type,
  247. );
  248. $jwt = JWT::encode($token, $key);
  249. return $jwt;
  250. }
  251. protected function exception($msg){
  252. throw new Exception($msg);
  253. }
  254. // 事务返回
  255. protected function transReturn($data = []){
  256. $this->is_commit ? $this->success($this->ret_msg,$data):$this->error($this->ret_msg);
  257. }
  258. }