Нема описа
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.

UserBase.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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\model\v1;
  14. use think\Db;
  15. use think\Cache;
  16. /**
  17. * 微信小程序个人中心模型
  18. */
  19. class UserBase extends Base
  20. {
  21. public $users_id;
  22. public $session;
  23. //初始化
  24. protected function initialize()
  25. {
  26. // 需要调用`Model`的`initialize`方法
  27. parent::initialize();
  28. $token = input('param.token/s');
  29. if (!empty($token)) {
  30. $tokenDecode = mchStrCode($token, 'DECODE', '#!@diyminipro#!$');
  31. if (preg_match_all('/^([0-9a-zA-Z]{8})eyoucms(\d{1,})eyoucms(.+)eyoucms([a-z]{8})eyoucms(.+)eyoucms_token_salt$/i', $tokenDecode, $matches)) {
  32. $this->users_id = !empty($matches[2][0]) ? intval($matches[2][0]) : 0;
  33. $openid = !empty($matches[3][0]) ? $matches[3][0] : '';
  34. $session_key = !empty($matches[5][0]) ? $matches[5][0] : '';
  35. // 记录缓存, 7天
  36. $this->session = [
  37. 'openid' => $openid,
  38. 'session_key' => $session_key,
  39. 'users_id' => $this->users_id,
  40. ];
  41. Cache::set($token, $this->session, 86400 * 7);
  42. }
  43. }
  44. // 订单预处理 (自动关闭未付款订单 发货后自动确认收货 收货后超过维权时间则关闭维权入口 消费赠送)
  45. if (!empty($this->users_id)) {
  46. // 调用传参
  47. // users_id 会员ID,传入则处理指定会员的订单数据,为空则处理所有会员订单数据
  48. // usersConfig 配置信息,为空则在后续处理中自动查询
  49. model('OrderPreHandle')->eyou_shopOrderPreHandle($this->users_id);
  50. }
  51. }
  52. }