User.php
6.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?php
namespace addons\groupon\model;
use addons\groupon\exception\Exception;
use think\Model;
use app\common\library\Auth;
use think\Db;
use think\Log;
use app\common\model\MoneyLog;
use app\common\model\ScoreLog;
use addons\groupon\library\notify\Notifiable;
/**
* 会员模型
*/
class User extends Model
{
use Notifiable;
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
// 追加属性
protected $append = [
'nickname_hide'
];
public static function info()
{
if(Auth::instance()->id) {
return Auth::instance();
}
return null;
}
/**
* 获取头像
* @param string $value
* @param array $data
* @return string
*/
public function getAvatarAttr($value, $data)
{
if (!$value) {
//如果不需要启用首字母头像,请使用
//$value = '/assets/img/avatar.png';
$config = json_decode(\addons\groupon\model\Config::get(['name' => 'user'])->value, true);
$value = $config['avatar'];
}
return cdnurl($value, true);
}
/**
* 获取会员的组别
*/
public function getGroupAttr($value, $data)
{
return UserGroup::get($data['group_id']);
}
/**
* 获取验证字段数组值
* @param string $value
* @param array $data
* @return object
*/
public function getVerificationAttr($value, $data)
{
$value = array_filter((array)json_decode($value, true));
$value = array_merge(['email' => 0, 'mobile' => 0], $value);
return (object)$value;
}
/**
* 设置验证字段
* @param mixed $value
* @return string
*/
public function setVerificationAttr($value)
{
$value = is_object($value) || is_array($value) ? json_encode($value) : $value;
return $value;
}
public function getNicknameHideAttr($value, $data) {
if (isset($data['nickname'])) {
if (mb_strlen($data['nickname']) > 2) {
$nickname = mb_substr($data['nickname'], 0, 2) . '***';
} else {
$nickname = $data['nickname'];
}
return $nickname;
}
return null;
}
/**
* @name 变更会员余额
* @param float $money 变更金额
* @param int|object $user 会员对象或会员ID
* @param string $type 变更类型
* @param int $item_id 变更ID
* @param string $memo 备注
* @param array $ext 扩展字段
* @return boolean
*/
public static function money($money, $user, $type = '', $type_id = 0, $memo = '', $ext = [])
{
// 判断用户
if (is_numeric($user)) {
$user = self::get($user);
}
if (!$user) {
throw new Exception('未找到用户');
}
// 判断金额
if ($money == 0) {
throw new Exception('请输入正确的金额');
}
$before = $user->money;
$after = $user->money + $money;
// 只有后台扣除用户余额和佣金退回,余额才可以是负值
if ($after < 0 && !in_array($type, ['admin_deduct', 'admin_recharge'])) {
throw new Exception('可用余额不足');
}
try {
// 更新会员余额信息
$user->money = Db::raw('money + ' . $money);
$user->save();
UserWalletLog::write($user, $money, $before, $after, $type, $type_id, "money", $memo, $ext);
} catch (\Exception $e) {
throw new Exception('您提交的数据不正确');
}
// 写入groupon日志
return true;
}
/**
* @name 变更会员积分
* @param int $score 变更积分数量
* @param int|object $user 会员对象或会员ID
* @param string $type 变更类型
* @param int $item_id 变更ID
* @param string $memo 备注
* @param array $ext 扩展字段
* @return boolean
*/
public static function score($score, $user, $type = '', $type_id = 0, $memo = '', $ext = [])
{
$score = intval($score);
// 判断用户
if (is_numeric($user)) {
$user = self::get($user);
}
if (!$user) {
new Exception('未找到用户');
}
// 判断积分
if ($score === 0) {
new Exception('请输入正确的积分数量');
}
$before = $user->score;
$after = $user->score + $score;
// 只有后台扣除用户余额和佣金退回,余额才可以是负值
if ($after < 0 && !in_array($type, ['admin_deduct', 'admin_recharge'])) {
new Exception('可用积分不足');
}
try {
// 更新会员余额信息
$user->score = Db::raw('score + ' . $score);
$user->save();
UserWalletLog::write($user, $score, $before, $after, $type, $type_id, "score", $memo, $ext);
} catch (\Exception $e) {
new Exception('您提交的数据不正确');
}
// 写入groupon日志
return true;
}
/**
* 根据积分获取等级
* @param int $score 积分
* @return int
*/
public static function nextlevel($score = 0)
{
$lv = array(1 => 0, 2 => 30, 3 => 100, 4 => 500, 5 => 1000, 6 => 2000, 7 => 3000, 8 => 5000, 9 => 8000, 10 => 10000);
$level = 1;
foreach ($lv as $key => $value) {
if ($score >= $value) {
$level = $key;
}
}
return $level;
}
/**
* 下级
*/
public function children()
{
return $this->hasMany(\addons\groupon\model\User::class, 'parent_user_id')->field('id,nickname,avatar,parent_user_id');
}
/**
* 分销商
*/
public function agent() {
return $this->hasOne(\addons\groupon\model\commission\Agent::class, 'user_id')->field('user_id,level,parent_agent_id,status,createtime');
}
}