admin
2019-04-29 d92226ce9f81c44fd0e159662d928767ce423b83
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
package com.yeshi.fanli.service.impl.user;
 
import java.io.InputStream;
import java.io.Serializable;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
 
import javax.annotation.Resource;
 
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.SQLQuery;
import org.hibernate.Session;
import org.springframework.orm.hibernate4.HibernateCallback;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
import org.yeshi.utils.HttpUtil;
import org.yeshi.utils.NumberUtil;
import org.yeshi.utils.tencentcloud.COSManager;
 
import com.google.gson.Gson;
import com.yeshi.fanli.dao.mybatis.BindingAccountMapper;
import com.yeshi.fanli.dao.mybatis.PayInfoMapper;
import com.yeshi.fanli.dao.mybatis.ScanHistoryMapper;
import com.yeshi.fanli.dao.mybatis.UserInfoMapper;
import com.yeshi.fanli.dao.mybatis.UserShareGoodsHistoryMapper;
import com.yeshi.fanli.dao.mybatis.share.ShareMapper;
import com.yeshi.fanli.dao.user.UserInfoDao;
import com.yeshi.fanli.entity.bus.user.BindingAccount;
import com.yeshi.fanli.entity.bus.user.InviteUser;
import com.yeshi.fanli.entity.bus.user.UserExtraTaoBaoInfo;
import com.yeshi.fanli.entity.bus.user.UserInfo;
import com.yeshi.fanli.entity.bus.user.WeiXinUser;
import com.yeshi.fanli.entity.system.BusinessSystem;
import com.yeshi.fanli.exception.ThreeSaleException;
import com.yeshi.fanli.exception.user.UserInfoException;
import com.yeshi.fanli.log.LogHelper;
import com.yeshi.fanli.service.inter.config.ConfigService;
import com.yeshi.fanli.service.inter.count.HongBaoV2CountService;
import com.yeshi.fanli.service.inter.hongbao.ThreeSaleSerivce;
import com.yeshi.fanli.service.inter.taobao.TaoBaoUnionAuthRecordService;
import com.yeshi.fanli.service.inter.user.UserActiveLogService;
import com.yeshi.fanli.service.inter.user.UserExtraTaoBaoInfoService;
import com.yeshi.fanli.service.inter.user.UserInfoService;
import com.yeshi.fanli.service.inter.user.UserRankService;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.StringUtil;
import com.yeshi.fanli.util.ThreadUtil;
import com.yeshi.fanli.util.TimeUtil;
import com.yeshi.fanli.util.Utils;
import com.yeshi.fanli.util.account.UserUtil;
import com.yeshi.fanli.util.wx.WXLoginUtil;
import com.yeshi.fanli.vo.user.UserInfoVO;
 
@Service
public class UserInfoServiceImpl implements UserInfoService {
 
    @Resource
    private UserInfoDao userInfoDao;
 
    @Resource
    private UserInfoService userInfoService;
 
    @Resource
    private ConfigService configService;
 
    @Resource
    private ThreeSaleSerivce threeSaleSerivce;
 
    @Resource
    private UserInfoMapper userInfoMapper;
 
    @Resource
    private BindingAccountMapper bindingAccountMapper;
 
    @Resource
    private PayInfoMapper payInfoMapper;
 
    @Resource
    private UserShareGoodsHistoryMapper userShareGoodsHistoryMapper;
 
    @Resource
    private ScanHistoryMapper scanHistoryMapper;
 
    @Resource
    private ShareMapper shareMapper;
 
    @Resource
    private HongBaoV2CountService hongBaoV2CountService;
 
    @Resource
    private UserRankService userRankService;
 
    @Resource
    private UserActiveLogService userActiveLogService;
 
    @Resource
    private UserExtraTaoBaoInfoService userExtraTaoBaoInfoService;
 
    @Resource
    private TaoBaoUnionAuthRecordService taoBaoUnionAuthRecordService;
 
    public UserInfo getUserByLoginTypeAndOpenId(int loginType, String openid, String appid) {
        List<UserInfo> list = null;
        if (loginType == 1) {
            list = userInfoDao.list("from UserInfo u where u.openid=? and u.appId = ? ",
                    new Serializable[] { openid, appid });
        } else {
            list = userInfoDao.list("from UserInfo u where u.wxUnionId=? and u.appId = ? ",
                    new Serializable[] { openid, appid });
        }
 
        if (list != null)
            for (int i = 0; i < list.size(); i++) {
                if (list.get(i).getState() == UserInfo.STATE_DELETE
                        || list.get(i).getState() == UserInfo.STATE_DELETE_OUT_OF_DATE) {
                    list.remove(i);
                    i--;
                }
            }
 
        if (list != null && list.size() > 0) {
            return list.get(0);
        }
        return null;
    }
 
    //
    // public UserInfo getUserByLoginTypeAndOpenIdByMybatis(int loginType,
    // String openid, String appid) {
    // List<UserInfo> list = null;
    // if (loginType == 1) {
    // list = userInfoDao.list("from UserInfo u where u.openid=? and u.appId = ?
    // ",
    // new Serializable[] { openid, appid });
    // } else {
    // list = userInfoDao.list("from UserInfo u where u.wxUnionId=? and u.appId
    // = ? ",
    // new Serializable[] { openid, appid });
    // }
    // if (list != null && list.size() > 0) {
    // return list.get(0);
    // }
    // return null;
    // }
 
    @Transactional(rollbackFor = Exception.class, propagation = Propagation.REQUIRES_NEW)
    public UserInfo addUser(UserInfo form, String appid) {
        try {
            LogHelper.test("用户的注册信息:" + new Gson().toJson(form));
            form.setCreatetime(new Date().getTime());
            form.setRank(0);
            String openId = form.getLoginType() == Constant.TAOBAO ? form.getOpenid() : form.getWxUnionId();
            UserInfo find = getUserByLoginTypeAndOpenId(form.getLoginType(), openId, Constant.APPID);
            if (find != null) {
                return find;
            }
            boolean create = createUser(form, appid);
            if (!create) {
                return null;
            }
            int loginType = form.getLoginType();
            // 建的假用户。。
            if (loginType == -1) {
                return form;
            }
 
            LogHelper.userInfo("添加用户:" + form);
            if (form.getLoginType() == Constant.WEIXIN) {
                // final UserInfo temp = form;
                ThreadUtil.run(new Runnable() {
                    public void run() {
                        UserInfo temp = userInfoDao.find(UserInfo.class, form.getId());
                        COSManager cosManager = COSManager.getInstance();
                        InputStream inputStream = HttpUtil.getAsInputStream(temp.getPortrait());
                        String uploadFile = cosManager.uploadFile(inputStream, UUID.randomUUID().toString()).getUrl();
                        temp.setPortrait(uploadFile);
                        userInfoDao.update(temp);
                    }
                });
            }
        } catch (Exception e) {
            try {
                LogHelper.errorDetailInfo(e);
            } catch (Exception e1) {
                e1.printStackTrace();
            }
            return null;
        }
        return form;
    }
 
    public boolean createUser(UserInfo form, String appid) {
        Long id = (Long) userInfoDao.excute(new HibernateCallback<Long>() {
            public Long doInHibernate(Session session) throws HibernateException {
                SQLQuery query = session.createSQLQuery("SELECT IFNULL(MAX(id),100000) FROM yeshi_ec_user ");
                List list = query.list();
                long dd = (long) (Math.random() * 100);
                if (dd == 0) {
                    dd = 1;
                }
                long bid = Long.parseLong(list.get(0) + "");
                return bid + dd;
            }
        });
        form.setId(id);
        form.setAppId(appid);
        userInfoDao.save(form);
        return true;
    }
 
    public UserInfo getUserById(long uid) {
        UserInfo user = userInfoDao.find(UserInfo.class, uid);
        if (user.getState() != null && user.getState() != UserInfo.STATE_NORMAL)
            return null;
        if (user != null) {
            user.setRankIcon(UserUtil.getRankIcon(user.getRank()));
            user.setRankNamePicture(UserUtil.getRankNamePicture(user.getRank()));
        }
        return user;
    }
 
    @Transactional
    public void update(UserInfo user) {
        userInfoDao.update(user);
    }
 
    public long getUserCount() {
        return userInfoDao.getCount("select count(*) from UserInfo");
    }
 
    public List<UserInfo> getUserList(int index, String key) {
 
        int start = index * Constant.PAGE_SIZE;
 
        if (NumberUtil.isNumeric(key)) {
            long l = Long.parseLong(key);
            return userInfoDao.list("from UserInfo u where u.id = ? or u.nickName like ? order by u.id desc", start,
                    Constant.PAGE_SIZE, new Serializable[] { l, "%" + key + "%" });
        }
 
        return userInfoDao.list("from UserInfo u where u.nickName like ? order by u.id desc ", start,
                Constant.PAGE_SIZE, new Serializable[] { "%" + key + "%" });
 
    }
 
    public int getUserCount(String key) {
        if (NumberUtil.isNumeric(key)) {
            long lk = Long.parseLong(key);
            return (int) userInfoDao.getCount("select count(u.id) from UserInfo u where u.id = ? or u.nickName like ? ",
                    new Serializable[] { lk, "%" + key + "%" });
        }
        Long lcount = userInfoDao.getCount("select count(u.id) from UserInfo u where u.nickName like ? ",
                new Serializable[] { "%" + key + "%" });
        return lcount.intValue();
    }
 
    @SuppressWarnings("unchecked")
    public Map<String, Integer> getnewUserByDate(final int days, Date date) {
 
        final Map<String, Integer> map = new HashMap<String, Integer>();
        long timestampms = date.getTime();
        final long timestamps = timestampms / 1000;
        List<String> list = TimeUtil.getEmupDate(days, timestampms);
        for (String dataStr : list) {
            map.put(dataStr, 0);
        }
        return (Map<String, Integer>) userInfoDao.excute(new HibernateCallback<Map<String, Integer>>() {
 
            public Map<String, Integer> doInHibernate(Session session) throws HibernateException {
                SQLQuery sqlQuery = session.createSQLQuery(
                        "SELECT DATE(FROM_UNIXTIME(createtime/1000)) c,COUNT(*) FROM yeshi_ec_user WHERE DATE_SUB(FROM_UNIXTIME(?), INTERVAL ? DAY) <= DATE(FROM_UNIXTIME(createtime/1000)) AND DATE(FROM_UNIXTIME(createtime/1000)) <= FROM_UNIXTIME(?) GROUP BY c");
                sqlQuery.setParameter(0, timestamps);
                sqlQuery.setParameter(1, days);
                sqlQuery.setParameter(2, timestamps);
                List<Object[]> list = sqlQuery.list();
                for (Object[] objArr : list) {
                    map.put(TimeUtil.getSimpleDate((Date) objArr[0]), ((BigInteger) objArr[1]).intValue());
                }
                return map;
            }
        });
    }
 
    @SuppressWarnings("unchecked")
    public Map<String, Integer> getnewUserByMonth(final int months, final Date endDate) {
        List<String> monthList = Utils.getDateMonthList(months, endDate);
        final Map<String, Integer> map = new HashMap<String, Integer>();
        for (String monthStr : monthList) {
            map.put(monthStr, 0);
        }
        return (Map<String, Integer>) userInfoDao.excute(new HibernateCallback<Map<String, Integer>>() {
 
            public Map<String, Integer> doInHibernate(Session session) throws HibernateException {
                Calendar calendar = Calendar.getInstance();
                calendar.setTime(endDate);
                calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH) + 1);
                calendar.set(Calendar.DAY_OF_MONTH, 1);
                long curTime = (calendar.getTime().getTime()) / 1000;
                SQLQuery sqlQuery = session.createSQLQuery(
                        "SELECT DATE_FORMAT(FROM_UNIXTIME(createtime/1000),'%Y-%m') months,COUNT(*) FROM yeshi_ec_user WHERE DATE(FROM_UNIXTIME(createtime/1000)) >= DATE_SUB(FROM_UNIXTIME(?),INTERVAL ? MONTH) AND DATE(FROM_UNIXTIME(createtime/1000)) < FROM_UNIXTIME(?) GROUP BY months");
                sqlQuery.setParameter(0, curTime);
                sqlQuery.setParameter(1, months);
                sqlQuery.setParameter(2, curTime);
                List<Object[]> list = sqlQuery.list();
                for (Object[] objArr : list) {
                    map.put((String) objArr[0], ((BigInteger) objArr[1]).intValue());
                }
                return map;
            }
        });
    }
 
    @SuppressWarnings("unchecked")
    public Map<String, Integer> getUserTotalByDate(final int days, Date date) {
 
        final Map<String, Integer> map = new HashMap<String, Integer>();
        long timestampms = date.getTime();
        final List<String> list = TimeUtil.getEmupDate(days, timestampms);
        for (String dataStr : list) {
            map.put(dataStr, 0);
        }
        return (Map<String, Integer>) userInfoDao.excute(new HibernateCallback<Map<String, Integer>>() {
 
            public Map<String, Integer> doInHibernate(Session session) throws HibernateException {
                StringBuffer sb = new StringBuffer();
                int ii = 0;
                for (String day : list) {
                    if (ii == 0) {
                        sb.append("SELECT '" + day + "' AS t,IFNULL(SUM(a.s),0) FROM yeshi_ec_user_day a WHERE a.c<= '"
                                + day + "' ");
                    } else {
                        sb.append("UNION ALL SELECT '" + day
                                + "' AS t,IFNULL(SUM(a.s),0) FROM yeshi_ec_user_day a WHERE a.c<= '" + day + "' ");
                    }
                    ii++;
                }
 
                SQLQuery sqlQuery = session.createSQLQuery(sb.toString());
                List<Object[]> list = sqlQuery.list();
                for (Object[] objArr : list) {
                    map.put(String.valueOf(objArr[0]), ((BigDecimal) objArr[1]).intValue());
                }
                return map;
            }
        });
    }
 
    @SuppressWarnings("unchecked")
    public Map<String, Integer> getUserTotalByMonth(int months, Date date) {
        final List<String> monthList = Utils.getDateMonthList(months, date);
        final Map<String, Integer> map = new HashMap<String, Integer>();
        for (String monthStr : monthList) {
            map.put(monthStr, 0);
        }
        return (Map<String, Integer>) userInfoDao.excute(new HibernateCallback<Map<String, Integer>>() {
 
            public Map<String, Integer> doInHibernate(Session session) throws HibernateException {
 
                StringBuffer sb = new StringBuffer();
                int ii = 0;
                for (String month : monthList) {
                    if (ii == 0) {
                        sb.append("SELECT '" + month
                                + "' AS t,IFNULL(SUM(a.s),0) FROM yeshi_ec_user_month a WHERE a.months<= '" + month
                                + "' ");
                    } else {
                        sb.append("UNION ALL SELECT '" + month
                                + "' AS t,IFNULL(SUM(a.s),0) FROM yeshi_ec_user_month a WHERE a.months<= '" + month
                                + "' ");
                    }
                    ii++;
                }
 
                SQLQuery sqlQuery = session.createSQLQuery(sb.toString());
                List<Object[]> list = sqlQuery.list();
                for (Object[] objArr : list) {
                    map.put((String) objArr[0], ((BigDecimal) objArr[1]).intValue());
                }
                return map;
            }
        });
    }
 
    public List<UserInfo> getUserListByUid(long uid) {
        List<UserInfo> list = userInfoDao.list("from UserInfo u where u.id = ? ", new Serializable[] { uid });
        return list;
    }
 
    public double getFreezeAssets(final double min) {
        return (Double) userInfoDao.excute(new HibernateCallback<Double>() {
 
            public Double doInHibernate(Session session) throws HibernateException {
                Query query = session.createSQLQuery(
                        "select IFNULL(sum(u.my_hongBao),0) from yeshi_ec_user u where u.my_hongBao < ? ");
                query.setParameter(0, min);
                Double result = Double.parseDouble(query.uniqueResult() + "");
                return result.doubleValue();
            }
        });
    }
 
    public double getCanAssets(final double min) {
        return (Double) userInfoDao.excute(new HibernateCallback<Double>() {
 
            public Double doInHibernate(Session session) throws HibernateException {
                Query query = session.createSQLQuery(
                        "select IFNULL(sum(u.my_hongBao),0) from yeshi_ec_user u where u.my_hongBao >= ? ");
                query.setParameter(0, min);
                Double result = Double.parseDouble(query.uniqueResult() + "");
                return result.doubleValue();
            }
        });
    }
 
    public long getRandomShamUser() {
        return (Long) userInfoDao.excute(new HibernateCallback<Long>() {
 
            public Long doInHibernate(Session session) throws HibernateException {
                SQLQuery sqlQuery = session
                        .createSQLQuery("SELECT id FROM yeshi_ec_user WHERE login_type=-1 ORDER BY RAND() LIMIT 1");
                List list = sqlQuery.list();
                if (list.size() > 0) {
                    long id = Long.parseLong(list.get(0) + "");
                    return id;
                }
                return (long) 0;
            }
        });
    }
 
    @Transactional
    public boolean inviteWXUserInfo(String code, UserInfo inviter) {
        WeiXinUser weiXinUser = WXLoginUtil.getWeiXinWYUser(code);
        if (weiXinUser == null) {
            return false;
        }
        String wxUnionId = weiXinUser.getUnionid();
        UserInfo find = getUserByLoginTypeAndOpenId(Constant.WEIXIN, wxUnionId, Constant.APPID);
 
        if (find == null) {
            find = new UserInfo();
            find.setAppId(Constant.APPID);
            find.setWxUnionId(weiXinUser.getUnionid());
            String wxHeadImg = COSManager.getInstance()
                    .uploadFile(HttpUtil.getAsInputStream(weiXinUser.getHeadimgurl()),
                            Constant.WXHEADURL + UUID.randomUUID().toString())
                    .getUrl();
            find.setPortrait(wxHeadImg);
            find.setWxPic(wxHeadImg);
            find.setNickName(weiXinUser.getNickname());
            find.setWxName(weiXinUser.getNickname());
            find.setLoginType(Constant.WEIXIN);
            find.setRank(0);
            find.setWxOpenId(weiXinUser.getOpenid());
            BusinessSystem system = new BusinessSystem(Constant.FANLI);
            system.setPlatform(1);
            find.setSystem(system);
        }
 
        try {
            threeSaleSerivce.bind(find, inviter);
            return true;
        } catch (ThreeSaleException e) {
            e.printStackTrace();
            return false;
        }
    }
 
    @Transactional
    public void unBindUserInfo(UserInfo user, int type) {
        if (type == Constant.TAOBAO) {
            user.setOpenid("");
            user.setTbName("");
            user.setTbPic("");
            if (!StringUtil.isNullOrEmpty(user.getWxOpenId())) {
                user.setLoginType(Constant.WEIXIN);
                user.setNickName(user.getWxName());
                user.setPortrait(user.getWxPic());
            }
        } else if (type == Constant.WEIXIN) {
            user.setWxName("");
            user.setWxOpenId("");
            user.setWxUnionId("");
            user.setWxPic("");
            if (!StringUtil.isNullOrEmpty(user.getOpenid())) {
                user.setLoginType(Constant.TAOBAO);
                user.setNickName(user.getTbName());
                user.setPortrait(user.getTbPic());
            }
        }
        userInfoDao.update(user);
    }
 
    @Transactional
    public void addMoney(UserInfo userInfo, BigDecimal money) {
 
        userInfoDao.excute(new HibernateCallback() {
            @Override
            public Object doInHibernate(Session session) throws HibernateException {
                Query query = session.createQuery("update UserInfo u set u.myHongBao = u.myHongBao + ? where u.id = ?");
                query.setParameter(0, money);
                query.setParameter(1, userInfo.getId());
                query.executeUpdate();
                return null;
            }
        });
 
    }
 
    @SuppressWarnings("unchecked")
    @Override
    public List<UserInfo> findFriends(long id, int type) {
        List<UserInfo> list;
        if (type == 1) {
            list = userInfoDao.list("select ts.worker from ThreeSale ts where ts.boss.id = ?",
                    new Serializable[] { id });
        } else {
            list = (List<UserInfo>) userInfoDao.excute(new HibernateCallback<List<UserInfo>>() {
                @Override
                public List<UserInfo> doInHibernate(Session session) throws HibernateException {
                    SQLQuery query = session.createSQLQuery(
                            "select uu.* from yeshi_ec_user uu left join (SELECT trw.`worker_id` as id FROM  yeshi_ec_threesale trw RIGHT JOIN "
                                    + "(SELECT tr.`worker_id` AS id FROM `yeshi_ec_threesale` tr LEFT JOIN `yeshi_ec_user` u  ON tr.`boss_id`=u.`id` WHERE tr.`boss_id`=?) nu ON nu.id = trw.`boss_id`"
                                    + "WHERE nu.id = trw.`boss_id`) u on uu.id=u.id where uu.id=u.id");
                    query.setParameter(0, id);
                    query.addEntity(UserInfo.class);
                    return query.list();
                }
            });
        }
        return list;
    }
 
    @Override
    public int findFriendsCount(long id, int type) {
        if (type == 1) {
            return (int) userInfoDao.getCount("select count(*) from ThreeSale ts where ts.boss.id = ? and ts.state=1",
                    new Serializable[] { id });
        } else {
            return (int) userInfoDao.getCountSQL(" from  yeshi_ec_threesale trw RIGHT JOIN "
                    + "(SELECT tr.`worker_id` AS id FROM `yeshi_ec_threesale` tr LEFT JOIN `yeshi_ec_user` u  ON tr.`boss_id`=u.`id` WHERE tr.`boss_id`=? and tr.state=1) nu ON nu.id = trw.`boss_id`"
                    + "WHERE nu.id = trw.`boss_id` and trw.state=1", new Serializable[] { id });
        }
    }
 
    @Override
    public void updateLoginInfo(UserInfo user) {
        userInfoDao.excute(new HibernateCallback() {
            @Override
            public Object doInHibernate(Session session) throws HibernateException {
                SQLQuery query = session
                        .createSQLQuery("update yeshi_ec_user u set u.loginip=?,u.last_logintime=? where u.id = ?");
                query.setParameter(0, user.getLastLoginIp());
                query.setParameter(1, user.getLastLoginTime());
                query.setParameter(2, user.getId());
                return query.executeUpdate();
            }
        });
    }
 
    @Override
    public List<InviteUser> getFriendsList(final long id, int type, int page, int pageSize) {
        List<InviteUser> list = null;
        if (type == 1) {
            list = userInfoDao.getHibernateTemplate().execute(new HibernateCallback<List<InviteUser>>() {
                @Override
                public List<InviteUser> doInHibernate(Session session) throws HibernateException {
                    List list = session
                            .createSQLQuery(
                                    "SELECT u.id,u.`nick_name`,u.`portrait`,uu.state FROM (SELECT t.* FROM `yeshi_ec_threesale` t  "
                                            + "WHERE t.`boss_id`=? AND (t.expire = 0  OR  t.expire IS NULL) ORDER BY t.createTime DESC) uu LEFT JOIN yeshi_ec_user u ON u.`id`=uu.worker_id")
                            .setParameter(0, id).setFirstResult((page - 1) * pageSize).setMaxResults(pageSize).list();
                    return covertToInviteUserList(list);
                }
            });
        } else {
            list = userInfoDao.getHibernateTemplate().execute(new HibernateCallback<List<InviteUser>>() {
                @Override
                public List<InviteUser> doInHibernate(Session session) throws HibernateException {
                    List list = session
                            .createSQLQuery(
                                    "SELECT u.id,u.`nick_name`,u.`portrait`,uu.state FROM (SELECT tt.* FROM `yeshi_ec_threesale` t  LEFT JOIN yeshi_ec_threesale tt ON tt.`boss_id`=t.`worker_id` "
                                            + " WHERE t.`boss_id`=? AND tt.`id` IS NOT NULL AND (tt.expire = 0  OR  tt.expire IS NULL) ORDER BY tt.createTime DESC) uu LEFT JOIN yeshi_ec_user u ON u.`id`=uu.worker_id")
                            .setParameter(0, id).setFirstResult((page - 1) * pageSize).setMaxResults(pageSize).list();
                    return covertToInviteUserList(list);
                }
            });
        }
        return list;
    }
 
    private List<InviteUser> covertToInviteUserList(List list) {
        List<InviteUser> ilist = new ArrayList<>();
        if (list != null)
            for (int i = 0; i < list.size(); i++) {
                Object[] objs = (Object[]) list.get(i);
                InviteUser inviteUser = new InviteUser();
                UserInfo user = new UserInfo();
                user.setId(Long.parseLong(objs[0] + ""));
                user.setNickName(objs[1] + "");
                user.setPortrait(objs[2] + "");
                inviteUser.setUserInfo(user);
                inviteUser.setValid(Boolean.parseBoolean(objs[3] + ""));
                ilist.add(inviteUser);
            }
        return ilist;
    }
 
    @Override
    public void cleanPassword(long id) {
        userInfoMapper.cleanPassword(id);
    }
 
    @Override
    public long getFriendsListCount(long id, int type) {
        if (type == 1)
            return userInfoDao.getCountSQL("SELECT COUNT(t.`id`) FROM `yeshi_ec_threesale` t  WHERE t.`boss_id`=  " + id
                    + " AND (t.expire = 0  OR  t.expire IS NULL)");
        else
            return userInfoDao.getCountSQL(
                    "SELECT COUNT(tt.id) FROM `yeshi_ec_threesale` t  LEFT JOIN yeshi_ec_threesale tt ON tt.`boss_id`=t.`worker_id`  WHERE t.`boss_id`="
                            + id + " AND tt.`id` IS NOT NULL AND (tt.expire = 0  OR  tt.expire IS NULL)");
    }
 
    @Override
    public BigDecimal getNewPeopleHB(Long id) {
        return userInfoMapper.getNewPeopleHB(id);
    }
 
    @Override
    public UserInfo getUserByIdWithMybatis(long uid) {
        UserInfo user = userInfoMapper.selectByPKey(uid);
        return UserUtil.filterForClientUser(user);
    }
 
    @Override
    public long queryCount(Integer userState, String key, Integer keyType, String userRank, Integer days,
            String startTime, String endTime) {
        return userInfoMapper.queryCount(userState, key, keyType, userRank, days, startTime, endTime);
    }
 
    @Override
    public List<UserInfoVO> query(long start, int count, Integer userState, String key, Integer keyType,
            String userRank, Integer days, String startTime, String endTime, Integer orderField, Integer orderMode) {
 
        List<UserInfoVO> userList = userInfoMapper.query(start, count, userState, key, keyType, userRank, days,
                startTime, endTime, orderField, orderMode);
 
        if (userList == null || userList.size() == 0) {
            return null;
        }
 
        for (UserInfoVO userInfoVO : userList) {
            // 数据加工处理
            convertUserInfoVOData(userInfoVO);
        }
 
        return userList;
    }
 
    public void convertUserInfoVOData(UserInfoVO userInfoVO) {
 
        String rankName = userInfoVO.getRankName();
        if (rankName == null || rankName.trim().length() == 0) {
            userInfoVO.setRankName("青铜");
            userInfoVO.setRankPicture("http://img.flqapp.com/resource/rank/rank_picture_new_1.png");
        }
 
        String f_alipayAccount = userInfoVO.getAlipayAccountInvalid();
        if (f_alipayAccount != null && f_alipayAccount.trim().length() > 0) {
            userInfoVO.setAlipayAccountState(1);
        }
 
        String f_phone = userInfoVO.getPhoneInvalid();
        if (f_phone != null && f_phone.trim().length() > 0) {
            userInfoVO.setPhoneState(1);
        }
 
        String f_taobaoUid = userInfoVO.getTaobaoUidInvalid();
        if (f_taobaoUid != null && f_taobaoUid.trim().length() > 0) {
            userInfoVO.setTaobaoUidState(1);
        }
 
        String f_wxUnionId = userInfoVO.getWxUnionIdInvalid();
        if (f_wxUnionId != null && f_wxUnionId.trim().length() > 0) {
            userInfoVO.setWxUnionIdState(1);
        }
 
        // 最近登录时间
        Long lastLoginTime = userInfoVO.getLastLoginTime();
        if (lastLoginTime != null && lastLoginTime == 0) {
            userInfoVO.setLastLoginTime(null);
        }
 
        /*
         * 显示用户微信 淘宝 老版本存在 String wxUnionId = userInfoVO.getWxUnionId(); if
         * (wxUnionId == null || wxUnionId.trim().length() == 0) {
         * userInfoVO.setWxName(null); }
         * 
         * String taoBaoUid = userInfoVO.getTaoBaoUid(); if (taoBaoUid == null
         * || taoBaoUid.trim().length() == 0) { userInfoVO.setTbName(null); }
         */
 
        Long uid = userInfoVO.getId();
 
        /* 绑定收款账号信息 */
        List<BindingAccount> account = bindingAccountMapper.selectByUid(uid);
        if (account != null && account.size() > 0) {
            BindingAccount bindingAccount = account.get(0);
            Integer type = bindingAccount.getType();
            if (type != null && type == 1) {
                // 支付宝
                userInfoVO.setAccountAlipay(bindingAccount.getAccount());
                userInfoVO.setAccountName(bindingAccount.getName());
                userInfoVO.setAccountBindId(bindingAccount.getId());
 
            } else if (type != null && type == 2) {
                // 微信
                userInfoVO.setAccountWX(bindingAccount.getAccount());
                userInfoVO.setAccountNameWX(bindingAccount.getName());
                userInfoVO.setAccountBindIdWX(bindingAccount.getId());
            }
        }
 
        // 最近一次下单时间
        Date lastOrderTime = hongBaoV2CountService.getLastHongBaoTime(uid);
        if (lastOrderTime != null && lastOrderTime.getTime() != 0) {
            userInfoVO.setLastOrderTime(lastOrderTime.getTime());
        }
 
        // 今日总订单
        long todayOrder = hongBaoV2CountService.countValidNumberByUid(uid, 1);
        userInfoVO.setTodayOrder(todayOrder);
 
        // 未领取红包 待入账金额
        BigDecimal unaccountedMoney = hongBaoV2CountService.countWillGetMoneyByUid(uid);
        if (unaccountedMoney == null) {
            unaccountedMoney = new BigDecimal(0);
        }
        userInfoVO.setUnaccountedMoney(unaccountedMoney.toString());
 
        // 历史总收益
        BigDecimal totalMoneyHistory = hongBaoV2CountService.countMoneyByUidAndState(uid, 3);
        if (totalMoneyHistory == null) {
            totalMoneyHistory = new BigDecimal(0);
        }
        userInfoVO.setTotalMoneyHistory(totalMoneyHistory.toString());
 
        // 支付宝账号 累计转账总金额
        double totalMoney = payInfoMapper.sumMoneyByUid(uid);
        userInfoVO.setTotalMoney(totalMoney);
 
        // 累计提现 (暂未计入微信)
        userInfoVO.setTotalExtract(totalMoney);
 
        // 统计分享个数
        long countUserShares = userShareGoodsHistoryMapper.countUserShares(uid);
        userInfoVO.setCountUserShares(countUserShares);
 
        // 统计浏览足迹
        long countScanHistory = scanHistoryMapper.countUserScanHistory(uid);
        userInfoVO.setCountScanHistory(countScanHistory);
 
        // 一度队员数量
        int firstTeamCount = shareMapper.myFirstTeamCount(uid + "");
        userInfoVO.setCountLevelOne(firstTeamCount);
 
        // 二度队员数量
        int secondTeamCount = shareMapper.mySecondTeamCount(uid + "");
        userInfoVO.setCountLevelTwo(secondTeamCount);
    }
 
    @Override
    public double querySumMoney(String key, Integer userType, Integer days, String startTime, String endTime) {
        return userInfoMapper.querySumMoney(key, userType, days, startTime, endTime);
    }
 
    @Override
    public UserInfo selectByPKey(Long id) {
        return userInfoMapper.selectByPKey(id);
    }
 
    @Override
    public int updateByPrimaryKeySelective(UserInfo record) {
        return userInfoMapper.updateByPrimaryKeySelective(record);
    }
 
    @Override
    @Transactional
    public void deleteBindInfo(UserInfo user, int type) {
        if (type == 1) {
            user.setOpenid("");
            user.setTbName("");
            user.setTbPic("");
            if (!StringUtil.isNullOrEmpty(user.getWxOpenId())) {
                user.setLoginType(Constant.WEIXIN);
                user.setNickName(user.getWxName());
                user.setPortrait(user.getWxPic());
            }
        } else if (type == 2) {
            user.setWxName("");
            user.setWxOpenId("");
            user.setWxUnionId("");
            user.setWxPic("");
            if (!StringUtil.isNullOrEmpty(user.getOpenid())) {
                user.setLoginType(Constant.TAOBAO);
                user.setNickName(user.getTbName());
                user.setPortrait(user.getTbPic());
            }
        } else if (type == 3) {
            user.setPhone("");
        }
 
        userInfoMapper.updateByPrimaryKeySelective(user);
    }
 
    @Override
    public List<Long> longTimeNoLogin(int daysNum, List<Long> list) {
        return userInfoMapper.longTimeNoLogin(daysNum, list);
    }
 
    /**
     * 根据电话号码、邀请码获取邀请用户
     * 
     * @param phone
     * @param inviteCode
     * @return
     */
    @Override
    public UserInfo getInfoByPhoneOrInviteCode(String phone, String inviteCode) {
        return userInfoMapper.getInfoByPhoneOrInviteCode(phone, inviteCode);
    }
 
    @Override
    public UserInfo getEffectiveUserInfoByPhone(String phone) {
        return userInfoMapper.getEffectiveUserInfoByPhone(phone);
    }
 
    @Override
    public UserInfo getEffectiveUserInfoByWXUnionId(String unionId) {
        return userInfoMapper.getEffectiveUserInfoByWXUnionId(unionId);
    }
 
    @Override
    public UserInfo getUserInfo(Long uid) throws UserInfoException {
        if (uid == null) {
            throw new UserInfoException(1, "请求参数为空");
        }
 
        UserInfo userInfo = userInfoMapper.selectByPKey(uid);
        if (userInfo == null) {
            throw new UserInfoException(1, "用户不存在");
        }
 
        if (userInfo.getState() == UserInfo.STATE_FORBIDDEN) {
            throw new UserInfoException(Constant.CODE_FORBIDDEN_USER, Constant.FORBIDDEN_USER_REASON_DESC);
        }
 
        if (userInfo.getState() != UserInfo.STATE_NORMAL) {
            throw new UserInfoException(1, "用户不存在");
        }
 
        // 淘宝昵称 组织
        boolean clearOpenid = true;
        UserExtraTaoBaoInfo extraTaoBaoInfo = userExtraTaoBaoInfoService.getByUid(uid);
        if (extraTaoBaoInfo != null) {
            String specialId = extraTaoBaoInfo.getSpecialId();
            String relationId = extraTaoBaoInfo.getRelationId();
            String taoBaoNickName = extraTaoBaoInfo.getTaoBaoNickName();
 
            if (!StringUtil.isNullOrEmpty(specialId) && !StringUtil.isNullOrEmpty(relationId)) {
                clearOpenid = false;
                userInfo.setOpenid(extraTaoBaoInfo.getTaoBaoUid());
 
                if (!StringUtil.isNullOrEmpty(taoBaoNickName)) {
                    userInfo.setTbName(taoBaoNickName);
                } else {
                    String taoBaoUserNick = taoBaoUnionAuthRecordService.getTaoBaoUserNick(uid);
                    if (!StringUtil.isNullOrEmpty(taoBaoUserNick)) {
                        userInfo.setTbName(taoBaoUserNick);
                    }
                }
            }
        }
 
        if (clearOpenid) {
            userInfo.setOpenid(null);
        }
 
        return userInfo;
    }
 
    @Override
    public BigDecimal getBalance(Long uid) {
        UserInfo user = userInfoMapper.selectByPKey(uid);
        if (user != null)
            return user.getMyHongBao();
        return null;
    }
 
}