User.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\common\model;
  13. use cores\BaseModel;
  14. use think\model\relation\HasOne;
  15. use think\model\relation\HasMany;
  16. use think\model\relation\BelongsTo;
  17. use app\common\model\user\PointsLog as PointsLogModel;
  18. /**
  19. * 用户模型类
  20. * Class User
  21. * @package app\common\model
  22. */
  23. class User extends BaseModel
  24. {
  25. // 定义表名
  26. protected $name = 'user';
  27. // 定义主键
  28. protected $pk = 'user_id';
  29. // 性别
  30. private $gender = [0 => '未知', 1 => '男', 2 => '女'];
  31. /**
  32. * 关联用户头像表
  33. * @return HasOne
  34. */
  35. public function avatar(): HasOne
  36. {
  37. return $this->hasOne('UploadFile', 'file_id', 'avatar_id')
  38. ->bind(['avatar_url' => 'preview_url']);
  39. }
  40. /**
  41. * 用户资料表
  42. * @return HasOne
  43. */
  44. public function info(): HasOne
  45. {
  46. $module = self::getCalledModule();
  47. return $this->hasOne("app\\{$module}\\model\\userInfo", 'user_id', 'user_id');
  48. }
  49. /**
  50. * 关联会员等级表
  51. * @return BelongsTo
  52. */
  53. public function grade(): BelongsTo
  54. {
  55. $module = self::getCalledModule();
  56. return $this->belongsTo("app\\{$module}\\model\\user\\Grade", 'grade_id');
  57. }
  58. /**
  59. * 关联收货地址表
  60. * @return HasMany
  61. */
  62. public function address(): HasMany
  63. {
  64. return $this->hasMany('UserAddress');
  65. }
  66. /**
  67. * 关联收货地址表 (默认地址)
  68. * @return BelongsTo
  69. */
  70. public function addressDefault(): BelongsTo
  71. {
  72. return $this->belongsTo('UserAddress', 'address_id');
  73. }
  74. /**
  75. * 获取器:显示性别
  76. * @param $value
  77. * @return string
  78. */
  79. public function getGenderAttr($value): string
  80. {
  81. return $this->gender[$value];
  82. }
  83. /**
  84. * 获取用户信息
  85. * @param $where
  86. * @param array $with
  87. * @return static|array|false|null
  88. */
  89. public static function detail($where, array $with = [])
  90. {
  91. $filter = ['is_delete' => 0];
  92. if (is_array($where)) {
  93. $filter = array_merge($filter, $where);
  94. } else {
  95. $filter['user_id'] = (int)$where;
  96. }
  97. return static::get($filter, $with);
  98. }
  99. /**
  100. * 累积用户的实际消费金额
  101. * @param int $userId
  102. * @param float $expendMoney
  103. * @return mixed
  104. */
  105. public static function setIncUserExpend(int $userId, float $expendMoney)
  106. {
  107. return (new static)->setInc($userId, 'expend_money', $expendMoney);
  108. }
  109. /**
  110. * 累积用户可用余额
  111. * @param int $userId
  112. * @param float $money
  113. * @return mixed
  114. */
  115. public static function setIncBalance(int $userId, float $money)
  116. {
  117. return (new static)->setInc($userId, 'balance', $money);
  118. }
  119. /**
  120. * 消减用户可用余额
  121. * @param int $userId
  122. * @param float $money
  123. * @return mixed
  124. */
  125. public static function setDecBalance(int $userId, float $money)
  126. {
  127. return (new static)->setDec([['user_id', '=', $userId]], 'balance', $money);
  128. }
  129. /**
  130. * 指定会员等级下是否存在用户
  131. * @param int $gradeId
  132. * @return bool
  133. */
  134. public static function checkExistByGradeId(int $gradeId): bool
  135. {
  136. $model = new static;
  137. return (bool)$model->where('grade_id', '=', (int)$gradeId)
  138. ->where('is_delete', '=', 0)
  139. ->value($model->getPk());
  140. }
  141. /**
  142. * 指定的手机号是否已存在
  143. * @param string $mobile
  144. * @return bool
  145. */
  146. public static function checkExistByMobile(string $mobile): bool
  147. {
  148. $model = new static;
  149. return (bool)$model->where('mobile', '=', $mobile)
  150. ->where('is_delete', '=', 0)
  151. ->value($model->getPk());
  152. }
  153. /**
  154. * 累积用户总消费金额
  155. * @param int $userId
  156. * @param float $money
  157. * @return mixed
  158. */
  159. public static function setIncPayMoney(int $userId, float $money)
  160. {
  161. return (new static)->setInc($userId, 'pay_money', $money);
  162. }
  163. /**
  164. * 累积用户实际消费的金额 (批量)
  165. * @param array $data
  166. * @return bool
  167. */
  168. public function onBatchIncExpendMoney(array $data): bool
  169. {
  170. foreach ($data as $userId => $expendMoney) {
  171. static::setIncUserExpend($userId, (float)$expendMoney);
  172. }
  173. return true;
  174. }
  175. /**
  176. * 累积用户的可用积分数量 (批量)
  177. * @param array $data
  178. * @return bool
  179. */
  180. public function onBatchIncPoints(array $data): bool
  181. {
  182. foreach ($data as $userId => $value) {
  183. $this->setInc($userId, 'points', $value);
  184. }
  185. return true;
  186. }
  187. /**
  188. * 累积用户的可用积分
  189. * @param int $userId 用户ID
  190. * @param int $points 累计的积分
  191. * @param string $describe
  192. * @return mixed
  193. */
  194. public static function setIncPoints(int $userId, int $points, string $describe)
  195. {
  196. // 新增积分变动明细
  197. PointsLogModel::add([
  198. 'user_id' => $userId,
  199. 'value' => $points,
  200. 'describe' => $describe,
  201. ]);
  202. // 更新用户可用积分
  203. return (new static)->setInc($userId, 'points', $points);
  204. }
  205. }