Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Base.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller\v1;
  14. use think\Db;
  15. use app\api\logic\v1\ApiLogic;
  16. class Base extends \app\api\controller\Base
  17. {
  18. public $appId = 0;
  19. /**
  20. * 实例化业务逻辑对象
  21. */
  22. public $apiLogic;
  23. /**
  24. * 系统配置
  25. */
  26. public $globalConfig = [];
  27. public $usersConfig = [];
  28. public $php_servicemeal = 0;
  29. /**
  30. * 初始化操作
  31. */
  32. public function _initialize() {
  33. parent::_initialize();
  34. $dataConf = tpSetting("OpenMinicode.conf", [], $this->main_lang);
  35. $dataConf = json_decode($dataConf, true);
  36. if (!empty($dataConf['apiopen'])) {
  37. $this->error('API接口已关闭不可用!');
  38. } else {
  39. if (!empty($dataConf['apiverify'])) {
  40. $times = getTime();
  41. $apikey_token = input('param.apikey_token/s');
  42. $arr = explode('-', $apikey_token);
  43. $request_token = !empty($arr[0]) ? $arr[0] : '';
  44. $request_time = !empty($arr[1]) ? intval($arr[1]) : 0;
  45. $new_request_token = md5($request_time.md5($dataConf['apikey']));
  46. $request_token_arr = [$new_request_token];
  47. /* 修改接口密钥后,小程序发布审核需要一定的时间,旧密钥在7天内继续可用,延期将不可用 start */
  48. $apikey_uptime = !empty($dataConf['apikey_uptime']) ? intval($dataConf['apikey_uptime']) : 0; // 新密钥修改时间
  49. $apikey_uptime += (7 * 86400);
  50. if (!empty($dataConf['old_apikey']) && $apikey_uptime > getTime()) {
  51. $old_request_token = md5($request_time.md5($dataConf['old_apikey']));
  52. array_push($request_token_arr, $old_request_token);
  53. }
  54. /* end */
  55. if (!in_array($request_token, $request_token_arr)) {
  56. $this->error('API请求验证不通过!');
  57. } else if ($times - $request_time > 300) { // 每个接口时效是5分钟
  58. $this->error('当前API请求已过期!');
  59. }
  60. }
  61. }
  62. $this->appId = input('param.appId/s');
  63. $this->apiLogic = new ApiLogic;
  64. $this->globalConfig = tpCache('global');
  65. $this->php_servicemeal = $this->globalConfig['php_servicemeal'];
  66. $this->get_name();
  67. $this->usersConfig = getUsersConfigData('all');
  68. }
  69. /**
  70. * 获取当前用户信息
  71. * @param bool $is_force 是否返回报错提示,还是直接返回值
  72. * @return UserModel|bool|null
  73. * @throws BaseException
  74. * @throws \think\exception\DbException
  75. */
  76. protected function getUser($is_force = true)
  77. {
  78. $token = $this->request->param('token');
  79. if (empty($token)) {
  80. $is_force && $this->error('缺少必要的参数:token', null, ['code'=>-1]);
  81. return false;
  82. }
  83. $users = model('v1.User')->getUser();
  84. if (empty($users)) {
  85. $is_force && $this->error('没有找到用户信息', null, ['code'=>-1]);
  86. return false;
  87. }
  88. return $users;
  89. }
  90. /**
  91. * 返回操作成功(附带一些后台配置等数据)
  92. * @param array $data
  93. * @param string|array $msg
  94. * @return array
  95. */
  96. protected function renderSuccess($data = [], $msg = 'success', $url = null)
  97. {
  98. if (!empty($url) && is_array($data)) {
  99. $data['url'] = $url;
  100. }
  101. $usersConf = [];
  102. // 开启商城中心才生效
  103. if (!empty($this->usersConfig['shop_open'])) {
  104. $users = $this->getUser(false);
  105. if (!empty($users['users_id'])){
  106. $data['cart_total_num'] = Db::name('shop_cart')->where(['users_id' => $users['users_id']])->sum('product_num');
  107. }else{
  108. $data['cart_total_num'] = 0;
  109. }
  110. }
  111. $usersConf['shop_open'] = empty($this->usersConfig['shop_open']) ? 0 : intval($this->usersConfig['shop_open']);
  112. $usersConf['dealer_open'] = empty($this->usersConfig['dealer_open']) ? 0 : intval($this->usersConfig['dealer_open']);
  113. $data['usersConf'] = $usersConf;
  114. return $this->result($data, 1, $msg);
  115. }
  116. //获取信息
  117. private function get_name(){
  118. if ($this->php_servicemeal <= 1){
  119. $controller = $this->request->param("c");
  120. $action = $this->request->param("a");
  121. $arr = [
  122. "djEuVXNlcnNAb3JkZXJfbGlzdHM=",
  123. "djEuVXNlcnNAaGFuZGxlT3JkZXJTZXJ2aWNlQWN0aW9u",
  124. "djEuVXNlcnNASGFuZGxlVXNlck1vbmV5QWN0aW9u"
  125. ];
  126. if (in_array(base64_encode($controller."@".$action),$arr)){
  127. $this->error(base64_decode('6K+35YWI5byA5ZCv5ZWG5Z+O5Lit5b+D'), null, ['code'=>0]);
  128. return false;
  129. }
  130. }
  131. }
  132. /**
  133. * 返回操作失败
  134. * @param array $data
  135. * @param string|array $msg
  136. * @return array
  137. */
  138. protected function renderError($msg = '', $url = null, $data = [], $wait = 1, array $header = [], $target = '_self')
  139. {
  140. if (!empty($url) && is_array($data)) {
  141. $data['url'] = $url;
  142. }
  143. return $this->result($data, 0, $msg);
  144. }
  145. /**
  146. * 返回操作成功
  147. * @param array $data
  148. * @param string|array $msg
  149. * @return array
  150. */
  151. protected function success($msg = '', $url = null, $data = [], $wait = 1, array $header = [], $target = '_self')
  152. {
  153. if (!empty($url) && is_array($data)) {
  154. $data['url'] = $url;
  155. }
  156. return $this->result($data, 1, $msg);
  157. }
  158. /**
  159. * 返回操作失败
  160. * @param array $data
  161. * @param string|array $msg
  162. * @return array
  163. */
  164. protected function error($msg = '', $url = null, $data = [], $wait = 1, array $header = [], $target = '_self')
  165. {
  166. if (!empty($url) && is_array($data)) {
  167. $data['url'] = $url;
  168. }
  169. return $this->result($data, 0, $msg);
  170. }
  171. }