User.php
13.7 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<?php
namespace app\admin\controller\shopro\user;
use app\common\controller\Backend;
use app\admin\model\shopro\user\Oauth;
use app\common\library\Auth;
use think\Db;
/**
* 会员管理
*
* @icon fa fa-user
*/
class User extends Backend
{
protected $relationSearch = true;
/**
* @var \app\admin\model\user\User
*/
protected $model = null;
public function _initialize()
{
parent::_initialize();
$this->model = new \app\admin\model\shopro\user\User;
}
/**
* 查看
*/
public function index()
{
//设置过滤方法
$this->request->filter(['strip_tags']);
if ($this->request->isAjax()) {
//如果发送的来源是Selectpage,则转发到Selectpage
if ($this->request->request('keyField')) {
return $this->selectpage();
}
$searchWhere = $this->request->request('searchWhere');
list($where, $sort, $order, $offset, $limit) = $this->buildparams();
$total = $this->model
->with('group')
->where($where)
->whereOr('user.id', '=', $searchWhere)
->whereOr('nickname', 'like', "%$searchWhere%")
->whereOr('mobile', 'like', "%$searchWhere%")
->order($sort, $order)
->count();
$list = $this->model
->with('group')
->where($where)
->whereOr('user.id', '=', $searchWhere)
->whereOr('nickname', 'like', "%$searchWhere%")
->whereOr('mobile', 'like', "%$searchWhere%")
->order($sort, $order)
->limit($offset, $limit)
->select();
foreach ($list as $k => $v) {
$v->hidden(['password', 'salt']);
$v->third_platform = Oauth::all(['user_id' => $v->id]);
}
$result = array("total" => $total, "rows" => $list);
$this->success('查看用户', null, $result);
}
return $this->view->fetch();
}
/**
* 用户详情
*/
public function profile($id)
{
$row = $this->model->get($id);
if (!$row) {
$this->error('未找到用户');
}
$row->hidden(['password','salt']);
$row->third_platform = Oauth::all(['user_id' => $row->id]);
if($this->request->isAjax()) {
$this->success('用户详情', null, $row);
}
$this->assignconfig('row', $row);
$this->assignconfig('groupList', \app\admin\model\UserGroup::field('id,name,status')->select());
return $this->view->fetch();
}
/**
* 更新信息
*/
public function update()
{
$params = $this->request->post('data');
$params = json_decode($params, true);
$user = $this->model->get($params['id']);
if (!$user) {
$this->error('未找到用户');
}
if(!empty($params['password'])) {
$salt = \fast\Random::alnum();
$user->password = \app\common\library\Auth::instance()->getEncryptPassword($params['password'], $salt);
$user->salt = $salt;
$user->save();
}
$result = $user->allowField('nickname,avatar,username,group_id,birthday,bio,mobile,email,level,gender,status')->save($params);
if($result) {
return $this->success('更新成功', null, $user);
}else{
return $this->error('更新失败');
}
}
/**
* 选择
*/
public function select()
{
//设置过滤方法
$this->request->filter(['strip_tags']);
if ($this->request->isAjax()) {
//如果发送的来源是Selectpage,则转发到Selectpage
if ($this->request->request('keyField')) {
return $this->selectpage();
}
list($where, $sort, $order, $offset, $limit) = $this->buildparams();
$searchWhere = $this->request->request('searchWhere');
$total = $this->model
->where($where)
->whereOr('id', '=', $searchWhere)
->whereOr('nickname', 'like', "%$searchWhere%")
->whereOr('mobile', 'like', "%$searchWhere%")
->order($sort, $order)
->field('id, nickname, mobile, avatar')
->count();
$list = $this->model
->where($where)
->whereOr('id', '=', $searchWhere)
->whereOr('nickname', 'like', "%$searchWhere%")
->whereOr('mobile', 'like', "%$searchWhere%")
->order($sort, $order)
->field('id, nickname, mobile, avatar')
->limit($offset, $limit)
->select();
$result = array("total" => $total, "rows" => $list);
$this->success('选择用户', null, $result);
}
return $this->view->fetch();
}
/**
* 用户余额充值
*/
public function money_recharge()
{
if($this->request->isAjax()) {
$params = $this->request->post();
$user = $this->model->get($params['user_id']);
if (!$user) {
$this->error(__('No Results were found'));
}
$res = \app\admin\model\shopro\user\User::walletChange($user, 'money', $params['money'], $params['remarks']);
if(isset($res['result'])) {
if(true === $res['result']) {
return $this->success($res['msg'], null);
}else{
return $this->error($res['msg']);
}
}
}
return $this->view->fetch();
}
/**
* 用户积分充值
*/
public function score_recharge()
{
if($this->request->isAjax()) {
$params = $this->request->post();
$user = $this->model->get($params['user_id']);
if (!$user) {
$this->error(__('No Results were found'));
}
$res = \app\admin\model\shopro\user\User::walletChange($user, 'score', $params['score'], $params['remarks']);
if(isset($res['result'])) {
if(true === $res['result']) {
return $this->success($res['msg'], null);
}else{
return $this->error($res['msg']);
}
}
}
return $this->view->fetch();
}
/**
* 余额明细
*/
public function money_log($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
$model = new \app\admin\model\shopro\user\MoneyLog;
$data = $model->where('user_id', $user_id)->order('id desc')->paginate($limit);
$this->success('余额明细', null, $data);
}
}
/**
* 积分明细
*/
public function score_log($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
$model = new \app\admin\model\shopro\user\ScoreLog;
$data = $model->where('user_id', $user_id)->order('id desc')->paginate($limit);
$this->success('积分明细', null, $data);
}
}
/**
* 订单记录
*/
public function order_log($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
$this->loadlang('shopro/order/order');
$model = new \app\admin\model\shopro\order\Order;
$data = $model->where('user_id', $user_id)->order('id desc')->paginate($limit);
$this->success('订单记录', null, $data);
}
}
/**
* 登录记录
*/
public function login_log($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
}
}
/**
* 分享记录
*/
public function share_log($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
$this->loadlang('shopro/share');
$model = new \app\admin\model\shopro\Share;
$data = $model->where('share_id', $user_id)->order('id desc')->with([
'user' => function($query) {
return $query->withField('id,nickname,avatar');
}])->paginate($limit);
foreach($data as &$v) {
if($v['type'] === 'goods') {
$v['goods'] = \app\admin\model\shopro\goods\Goods::where('id', $v['type_id'])->field('id, image, title')->find();
}
if($v['type'] === 'groupon') {
$v['groupon'] = \app\admin\model\shopro\activity\Groupon::get($v['type_id']);
}
}
$this->success('分享记录', null, $data);
}
}
/**
* 收藏商品
*/
public function goods_favorite($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
$model = new \app\admin\model\shopro\user\Favorite;
$data = $model->where('user_id', $user_id)->order('id desc')->with([
'goods' => function($query) {
return $query->withField('id,title,image');
}])->paginate($limit);
$this->success('商品收藏', null, $data);
}
}
/**
* 浏览足迹
*/
public function goods_view($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
$model = new \app\admin\model\shopro\user\View;
$data = $model->where('user_id', $user_id)->order('id desc')->with([
'goods' => function($query) {
return $query->withField('id,title,image');
}])->paginate($limit);
$this->success('商品收藏', null, $data);
}
}
/**
* 优惠券
*/
public function coupon_log($user_id, $limit = 10)
{
if ($this->request->isAjax()) {
$model = new \app\admin\model\shopro\user\Coupon;
$data = $model->where('user_id', $user_id)->order('id desc')->with([ 'coupons' => function($query) {
return $query->withField('id,name,amount');
}])->paginate($limit);
$this->success('优惠券', null, $data);
}
}
/**
* 删除
*/
public function del($ids = "")
{
if (!$this->request->isPost()) {
$this->error(__("Invalid parameters"));
}
$ids = $ids ? $ids : $this->request->post("ids");
$row = $this->model->get($ids);
$this->modelValidate = true;
if (!$row) {
$this->error(__('No Results were found'));
}
//开启事务
Db::startTrans();
try {
halt(1);
// 删除会员
Auth::instance()->delete($row['id']);
// 会员套餐订单
Db::name('package_order')->where('user_id',$row['id'])->delete();
// 拼团
Db::name('shopro_activity_groupon')->where('user_id',$row['id'])->delete();
// 拼团记录
Db::name('shopro_activity_groupon_log')->where('user_id',$row['id'])->delete();
// 购物车
Db::name('shopro_cart')->where('user_id',$row['id'])->delete();
// 反馈
Db::name('shopro_feedback')->where('user_id',$row['id'])->delete();
// 商品搜索历史
Db::name('shopro_goods_keywords')->where('user_id',$row['id'])->delete();
// 订单
$order_list = Db::name('shopro_order')->where('user_id',$row['id'])->field('id,order_sn')->select();
foreach ($order_list as $order){
// 订单操作记录
Db::name('shopro_order_action')->where('order_id',$order['id'])->delete();
// 售后单
Db::name('shopro_order_aftersale')->where('order_id',$order['id'])->delete();
// 售后单记录
Db::name('shopro_order_aftersale_log')->where('order_id',$order['id'])->delete();
// 快递包裹
Db::name('shopro_order_express')->where('order_id',$order['id'])->delete();
// 物流信息
Db::name('shopro_order_express_log')->where('order_id',$order['id'])->delete();
// 订单商品明细
Db::name('shopro_order_item')->where('order_id',$order['id'])->delete();
// 退款日志
Db::name('shopro_refund_log')->where('order_sn',$order['order_sn'])->delete();
// 删除订单
Db::name('shopro_order')->where('id',$order['id'])->delete();
}
// 用户地址
Db::name('shopro_user_address')->where('user_id',$row['id'])->delete();
// 用户优惠券
Db::name('shopro_user_coupons')->where('user_id',$row['id'])->delete();
// 用户收藏
Db::name('shopro_user_favorite')->where('user_id',$row['id'])->delete();
// 第三方授权
Db::name('shopro_user_oauth')->where('user_id',$row['id'])->delete();
// 用户浏览记录
Db::name('shopro_user_view')->where('user_id',$row['id'])->delete();
// 用户提现
Db::name('shopro_user_wallet_apply')->where('user_id',$row['id'])->delete();
// 钱包日志
Db::name('shopro_user_wallet_log')->where('user_id',$row['id'])->delete();
// 佣金提现
Db::name('user_commission_apply')->where('user_id',$row['id'])->delete();
// 佣金日志
Db::name('user_commission_log')->where('user_id',$row['id'])->delete();
Db::commit();
} catch (\Exception $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
}
$this->success();
}
}