WechatUser.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <?php
  2. /**
  3. *
  4. * @author: xaboy<365615158@qq.com>
  5. * @day: 2017/12/21
  6. */
  7. namespace app\models\user;
  8. use app\models\store\StoreCouponIssue;
  9. use crmeb\basic\BaseModel;
  10. use crmeb\services\WechatService;
  11. use crmeb\traits\ModelTrait;
  12. use crmeb\services\SystemConfigService;
  13. use app\models\routine\RoutineQrcode;
  14. use app\models\store\StoreCouponUser;
  15. use app\models\store\StoreCouponIssueUser;
  16. /**
  17. * TODO 微信用户Model
  18. * Class WechatUser
  19. * @package app\models\user
  20. */
  21. class WechatUser extends BaseModel
  22. {
  23. /**
  24. * 数据表主键
  25. * @var string
  26. */
  27. protected $pk = 'uid';
  28. /**
  29. * 模型名称
  30. * @var string
  31. */
  32. protected $name = 'wechat_user';
  33. use ModelTrait;
  34. /**
  35. * uid获取小程序Openid
  36. * @param string $uid
  37. * @return bool|mixed
  38. */
  39. public static function getOpenId($uid = '')
  40. {
  41. if ($uid == '') return false;
  42. return self::where('uid', $uid)->value('routine_openid');
  43. }
  44. /**
  45. * TODO 用uid获得openid
  46. * @param $uid
  47. * @param string $openidType
  48. * @return mixed
  49. * @throws \Exception
  50. */
  51. public static function uidToOpenid($uid, $openidType = 'routine_openid')
  52. {
  53. $openid = self::where('uid', $uid)->value($openidType);
  54. return $openid;
  55. }
  56. /**
  57. * TODO 用openid获得uid
  58. * @param $openid
  59. * @param string $openidType
  60. * @return mixed
  61. */
  62. public static function openidTouid($openid, $openidType = 'openid')
  63. {
  64. return self::where($openidType, $openid)->where('user_type', '<>', 'h5')->value('uid');
  65. }
  66. /**
  67. * 小程序创建用户后返回uid
  68. * @param $routineInfo
  69. * @return mixed
  70. */
  71. public static function routineOauth($routine)
  72. {
  73. $routineInfo['nickname'] = filter_emoji($routine['nickName']);//姓名
  74. $routineInfo['sex'] = $routine['gender'];//性别
  75. $routineInfo['language'] = $routine['language'];//语言
  76. $routineInfo['city'] = $routine['city'];//城市
  77. $routineInfo['province'] = $routine['province'];//省份
  78. $routineInfo['country'] = $routine['country'];//国家
  79. $routineInfo['headimgurl'] = $routine['avatarUrl'];//头像
  80. $routineInfo['routine_openid'] = $routine['openId'];//openid
  81. $routineInfo['session_key'] = $routine['session_key'];//会话密匙
  82. $routineInfo['unionid'] = $routine['unionId'];//用户在开放平台的唯一标识符
  83. $routineInfo['user_type'] = 'routine';//用户类型
  84. $spid = 0;//绑定关系uid
  85. $isCOde = false;
  86. //获取是否有扫码进小程序
  87. if ($routine['code']) {
  88. if ($info = RoutineQrcode::getRoutineQrcodeFindType($routine['code'])) {
  89. $spid = $info['third_id'];
  90. $isCOde = true;
  91. } else
  92. $spid = $routine['spid'];
  93. } else if ($routine['spid'])
  94. $spid = $routine['spid'];
  95. // 判断unionid 存在根据unionid判断
  96. if ($routineInfo['unionid'] != '' && ($uid = self::where(['unionid' => $routineInfo['unionid']])->where('user_type', '<>', 'h5')->value('uid'))) {
  97. self::edit($routineInfo, $uid, 'uid');
  98. $routineInfo['code'] = $spid;
  99. $routineInfo['isPromoter'] = $isCOde;
  100. if ($routine['login_type']) $routineInfo['login_type'] = $routine['login_type'];
  101. User::updateWechatUser($routineInfo, $uid);
  102. } else if ($uid = self::where(['routine_openid' => $routineInfo['routine_openid']])->where('user_type', '<>', 'h5')->value('uid')) { //根据小程序openid判断
  103. self::edit($routineInfo, $uid, 'uid');
  104. $routineInfo['code'] = $spid;
  105. $routineInfo['isPromoter'] = $isCOde;
  106. if ($routine['login_type']) $routineInfo['login_type'] = $routine['login_type'];
  107. User::updateWechatUser($routineInfo, $uid);
  108. } else {
  109. $routineInfo['add_time'] = time();//用户添加时间
  110. $routineInfo = self::create($routineInfo);
  111. $res = User::setRoutineUser($routineInfo, $spid);
  112. $uid = $res->uid;
  113. }
  114. return $uid;
  115. }
  116. /**
  117. * 判断是否是小程序用户
  118. * @param int $uid
  119. * @return bool|int|string
  120. */
  121. public static function isRoutineUser($uid = 0)
  122. {
  123. if (!$uid) return false;
  124. return self::where('uid', $uid)->where('user_type', 'routine')->count();
  125. }
  126. /**
  127. * @param int $uid
  128. * @return int
  129. */
  130. public static function isUserStatus($uid = 0)
  131. {
  132. if (!$uid) return 0;
  133. $user = User::getUserInfo($uid);
  134. return $user['status'];
  135. }
  136. /**
  137. * .添加新用户
  138. * @param $openid
  139. * @return object
  140. */
  141. public static function setNewUser($openid)
  142. {
  143. $userInfo = WechatService::getUserInfo($openid);
  144. if (!isset($userInfo['subscribe']) || !$userInfo['subscribe'] || !isset($userInfo['openid']))
  145. exception('请关注公众号!');
  146. $userInfo['tagid_list'] = implode(',', $userInfo['tagid_list']);
  147. //判断 unionid 是否存在
  148. if (isset($userInfo['unionid'])) {
  149. $wechatInfo = self::where('unionid', $userInfo['unionid'])->find();
  150. unset($userInfo['qr_scene'],$userInfo['qr_scene_str'],$userInfo['qr_scene_str'],$userInfo['subscribe_scene']);
  151. if ($wechatInfo) {
  152. return self::edit($userInfo->toArray(), $userInfo['unionid'], 'unionid');
  153. }
  154. }
  155. self::beginTrans();
  156. $userInfo['uid'] = User::getkeytoid('uid');
  157. $wechatUser = self::create(is_object($userInfo) ? $userInfo->toArray() : $userInfo);
  158. if (!$wechatUser) {
  159. self::rollbackTrans();
  160. exception('用户储存失败!');
  161. }
  162. if (!User::setWechatUser($wechatUser)) {
  163. self::rollbackTrans();
  164. exception('用户信息储存失败!');
  165. }
  166. self::commitTrans();
  167. self::userFirstSubGiveCoupon($openid);
  168. return $wechatUser;
  169. }
  170. /**
  171. * TODO 关注送优惠券
  172. * @param $openid
  173. */
  174. public static function userFirstSubGiveCoupon($openid)
  175. {
  176. $couponIds = StoreCouponIssue::where('status', 1)
  177. ->where('is_give_subscribe', 1)
  178. ->where('is_del', 0)
  179. ->column('id,cid');
  180. if ($couponIds)
  181. foreach ($couponIds as $couponId)
  182. if ($couponId) {
  183. $uid = self::openidToUid($openid);
  184. StoreCouponUser::addUserCoupon($uid, $couponId['cid']);
  185. StoreCouponIssueUser::addUserIssue($uid, $couponId['id']);
  186. }
  187. }
  188. /**
  189. * 订单金额达到预设金额赠送优惠卷
  190. * @param $uid
  191. */
  192. public static function userTakeOrderGiveCoupon($uid, $total_price)
  193. {
  194. $couponIds = StoreCouponIssue::where('status', 1)
  195. ->where('is_full_give', 1)
  196. ->where('is_del', 0)
  197. ->where('status', 1)
  198. ->where('start_time', '<=', time())
  199. ->where('end_time', '>=', time())
  200. ->column('id,cid,full_reduction,remain_count,is_permanent');
  201. if ($couponIds) {
  202. $couponIssueIds = StoreCouponIssueUser::where('uid', $uid)
  203. ->whereIn('issue_coupon_id', array_column($couponIds, 'id'))
  204. ->column('issue_coupon_id');
  205. foreach ($couponIds as $couponId)
  206. if ($couponId && !in_array($couponId['id'], $couponIssueIds))
  207. if ($total_price >= $couponId['full_reduction'] && (!$couponId['is_permanent'] || $couponId['remain_count'] >= 1)) {
  208. StoreCouponUser::addUserCoupon($uid, $couponId['cid']);
  209. StoreCouponIssueUser::addUserIssue($uid, $couponId['id']);
  210. StoreCouponIssue::where('id', $couponId['id'])->update(['remain_count' => $couponId['remain_count'] - 1]);
  211. }
  212. }
  213. }
  214. /**
  215. * 更新用户信息
  216. * @param $openid
  217. * @return bool
  218. */
  219. public static function updateUser($openid)
  220. {
  221. $userInfo = WechatService::getUserInfo($openid);
  222. $userInfo['tagid_list'] = implode(',', $userInfo['tagid_list']);
  223. return self::edit($userInfo->toArray(), $openid, 'openid');
  224. }
  225. /**
  226. * 用户存在就更新 不存在就添加
  227. * @param $openid
  228. */
  229. public static function saveUser($openid)
  230. {
  231. self::be($openid, 'openid') == true ? self::updateUser($openid) : self::setNewUser($openid);
  232. }
  233. /**
  234. * 用户取消关注
  235. * @param $openid
  236. * @return bool
  237. */
  238. public static function unSubscribe($openid)
  239. {
  240. return self::edit(['subscribe' => 0], $openid, 'openid');
  241. }
  242. /**
  243. * TODO 用uid获得Unionid
  244. * @param $uid
  245. * @return mixed
  246. */
  247. public static function uidToUnionid($uid)
  248. {
  249. return self::where('uid', $uid)->value('unionid');
  250. }
  251. /**
  252. * TODO 获取用户信息
  253. * @param $openid
  254. * @param $openidType
  255. * @return array
  256. * @throws \think\db\exception\DataNotFoundException
  257. * @throws \think\db\exception\ModelNotFoundException
  258. * @throws \think\exception\DbException
  259. */
  260. public static function getWechatInfo($openid, $openidType)
  261. {
  262. if (is_numeric($openid)) $openid = self::uidToOpenid($openid);
  263. $wechatInfo = self::where($openidType, $openid)->find();
  264. if (!$wechatInfo) {
  265. self::setNewUser($openid);
  266. $wechatInfo = self::where($openidType, $openid)->find();
  267. }
  268. if (!$wechatInfo) exception('获取用户信息失败!');
  269. return $wechatInfo->toArray();
  270. }
  271. }