WechatUser.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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. }
  94. } else if ($routine['spid']) {
  95. $spid = $routine['spid'];
  96. }
  97. // 判断unionid 存在根据unionid判断
  98. if ($routineInfo['unionid'] != '' && ($uid = self::where(['unionid' => $routineInfo['unionid']])->where('user_type', '<>', 'h5')->value('uid'))) {
  99. self::edit($routineInfo, $uid, 'uid');
  100. $routineInfo['code'] = $spid;
  101. $routineInfo['isPromoter'] = $isCOde;
  102. if ($routine['login_type']) $routineInfo['login_type'] = $routine['login_type'];
  103. User::updateWechatUser($routineInfo, $uid);
  104. } else if ($uid = self::where(['routine_openid' => $routineInfo['routine_openid']])->where('user_type', '<>', 'h5')->value('uid')) { //根据小程序openid判断
  105. self::edit($routineInfo, $uid, 'uid');
  106. $routineInfo['code'] = $spid;
  107. $routineInfo['isPromoter'] = $isCOde;
  108. if ($routine['login_type']) {
  109. $routineInfo['login_type'] = $routine['login_type'];
  110. }
  111. User::updateWechatUser($routineInfo, $uid);
  112. } else {
  113. $routineInfo['add_time'] = time();//用户添加时间
  114. $routineInfo = self::create($routineInfo);
  115. $res = User::setRoutineUser($routineInfo, $spid);
  116. $uid = $res->uid;
  117. }
  118. return $uid;
  119. }
  120. /**
  121. * 判断是否是小程序用户
  122. * @param int $uid
  123. * @return bool|int|string
  124. */
  125. public static function isRoutineUser($uid = 0)
  126. {
  127. if (!$uid) return false;
  128. return self::where('uid', $uid)->where('user_type', 'routine')->count();
  129. }
  130. /**
  131. * @param int $uid
  132. * @return int
  133. */
  134. public static function isUserStatus($uid = 0)
  135. {
  136. if (!$uid) return 0;
  137. $user = User::getUserInfo($uid);
  138. return $user['status'];
  139. }
  140. /**
  141. * .添加新用户
  142. * @param $openid
  143. * @return object
  144. */
  145. public static function setNewUser($openid)
  146. {
  147. $userInfo = WechatService::getUserInfo($openid);
  148. if (!isset($userInfo['subscribe']) || !$userInfo['subscribe'] || !isset($userInfo['openid']))
  149. exception('请关注公众号!');
  150. $userInfo['tagid_list'] = implode(',', $userInfo['tagid_list']);
  151. //判断 unionid 是否存在
  152. if (isset($userInfo['unionid'])) {
  153. $wechatInfo = self::where('unionid', $userInfo['unionid'])->find();
  154. unset($userInfo['qr_scene'], $userInfo['qr_scene_str'], $userInfo['qr_scene_str'], $userInfo['subscribe_scene']);
  155. if ($wechatInfo) {
  156. return self::edit($userInfo->toArray(), $userInfo['unionid'], 'unionid');
  157. }
  158. }
  159. self::beginTrans();
  160. $wechatUser = self::create(is_object($userInfo) ? $userInfo->toArray() : $userInfo);
  161. if (!$wechatUser) {
  162. self::rollbackTrans();
  163. exception('用户储存失败!');
  164. }
  165. if (!User::setWechatUser($wechatUser)) {
  166. self::rollbackTrans();
  167. exception('用户信息储存失败!');
  168. }
  169. self::commitTrans();
  170. self::userFirstSubGiveCoupon($openid);
  171. return $wechatUser;
  172. }
  173. /**
  174. * TODO 关注送优惠券
  175. * @param $openid
  176. */
  177. public static function userFirstSubGiveCoupon($openid)
  178. {
  179. $couponIds = StoreCouponIssue::where('status', 1)
  180. ->where('is_give_subscribe', 1)
  181. ->where('is_del', 0)
  182. ->column('id,cid');
  183. if ($couponIds)
  184. foreach ($couponIds as $couponId)
  185. if ($couponId) {
  186. $uid = self::openidToUid($openid);
  187. StoreCouponUser::addUserCoupon($uid, $couponId['cid']);
  188. StoreCouponIssueUser::addUserIssue($uid, $couponId['id']);
  189. }
  190. }
  191. /**
  192. * 订单金额达到预设金额赠送优惠卷
  193. * @param $uid
  194. */
  195. public static function userTakeOrderGiveCoupon($uid, $total_price)
  196. {
  197. $couponIds = StoreCouponIssue::where('status', 1)
  198. ->where('is_full_give', 1)
  199. ->where('is_del', 0)
  200. ->where('status', 1)
  201. ->where('start_time', '<=', time())
  202. ->where('end_time', '>=', time())
  203. ->column('id,cid,full_reduction,remain_count,is_permanent');
  204. if ($couponIds) {
  205. $couponIssueIds = StoreCouponIssueUser::where('uid', $uid)
  206. ->whereIn('issue_coupon_id', array_column($couponIds, 'id'))
  207. ->column('issue_coupon_id');
  208. foreach ($couponIds as $couponId)
  209. if ($couponId && !in_array($couponId['id'], $couponIssueIds))
  210. if ($total_price >= $couponId['full_reduction'] && (!$couponId['is_permanent'] || $couponId['remain_count'] >= 1)) {
  211. StoreCouponUser::addUserCoupon($uid, $couponId['cid']);
  212. StoreCouponIssueUser::addUserIssue($uid, $couponId['id']);
  213. StoreCouponIssue::where('id', $couponId['id'])->update(['remain_count' => $couponId['remain_count'] - 1]);
  214. }
  215. }
  216. }
  217. /**
  218. * 更新用户信息
  219. * @param $openid
  220. * @return bool
  221. */
  222. public static function updateUser($openid)
  223. {
  224. $userInfo = WechatService::getUserInfo($openid);
  225. $userInfo['tagid_list'] = implode(',', $userInfo['tagid_list']);
  226. return self::edit($userInfo->toArray(), $openid, 'openid');
  227. }
  228. /**
  229. * 用户存在就更新 不存在就添加
  230. * @param $openid
  231. */
  232. public static function saveUser($openid)
  233. {
  234. self::be($openid, 'openid') == true ? self::updateUser($openid) : self::setNewUser($openid);
  235. }
  236. /**
  237. * 用户取消关注
  238. * @param $openid
  239. * @return bool
  240. */
  241. public static function unSubscribe($openid)
  242. {
  243. return self::edit(['subscribe' => 0], $openid, 'openid');
  244. }
  245. /**
  246. * TODO 用uid获得Unionid
  247. * @param $uid
  248. * @return mixed
  249. */
  250. public static function uidToUnionid($uid)
  251. {
  252. return self::where('uid', $uid)->value('unionid');
  253. }
  254. /**
  255. * TODO 获取用户信息
  256. * @param $openid
  257. * @param $openidType
  258. * @return array
  259. * @throws \think\db\exception\DataNotFoundException
  260. * @throws \think\db\exception\ModelNotFoundException
  261. * @throws \think\exception\DbException
  262. */
  263. public static function getWechatInfo($openid, $openidType)
  264. {
  265. if (is_numeric($openid)) $openid = self::uidToOpenid($openid);
  266. $wechatInfo = self::where($openidType, $openid)->find();
  267. if (!$wechatInfo) {
  268. self::setNewUser($openid);
  269. $wechatInfo = self::where($openidType, $openid)->find();
  270. }
  271. if (!$wechatInfo) exception('获取用户信息失败!');
  272. return $wechatInfo->toArray();
  273. }
  274. }