yujian
2020-04-10 469bba3a544b3beef0c170f6fce5804c9e8a9676
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
package com.yeshi.fanli.service.impl.user.invite;
 
import java.util.Date;
import java.util.List;
 
import javax.annotation.Resource;
 
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.yeshi.utils.DateUtil;
 
import com.yeshi.fanli.dao.mybatis.user.UserInviteSeparateMapper;
import com.yeshi.fanli.dto.msg.MsgOtherVIPDTO;
import com.yeshi.fanli.entity.bus.user.ThreeSale;
import com.yeshi.fanli.entity.bus.user.UserInfo;
import com.yeshi.fanli.entity.bus.user.UserInviteSeparate;
import com.yeshi.fanli.entity.bus.user.vip.UserVIPPreInfo;
import com.yeshi.fanli.service.inter.msg.UserOtherMsgNotificationService;
import com.yeshi.fanli.service.inter.user.UserInfoService;
import com.yeshi.fanli.service.inter.user.UserInviteSeparateService;
import com.yeshi.fanli.service.inter.user.invite.ThreeSaleSerivce;
import com.yeshi.fanli.service.inter.user.vip.UserVIPPreInfoService;
import com.yeshi.fanli.service.inter.user.vip.UserVipConfigService;
import com.yeshi.fanli.util.TimeUtil;
 
@Service
public class UserInviteSeparateServiceImpl implements UserInviteSeparateService {
 
    @Resource
    private UserInviteSeparateMapper userInviteSeparateMapper;
    
    @Resource
    private UserVipConfigService userVipConfigService;
    
    @Lazy
    @Resource
    private ThreeSaleSerivce threeSaleSerivce;
    
    @Lazy
    @Resource
    private UserVIPPreInfoService userVIPPreInfoService;
    
    @Lazy
    @Resource
    private UserInfoService userInfoService;
    
    @Lazy
    @Resource
    private UserOtherMsgNotificationService userOtherMsgNotificationService;
 
    @Override
    public void insertSelective(UserInviteSeparate record) {
        userInviteSeparateMapper.insertSelective(record);
    }
    
    
    @Override
    @Transactional(rollbackFor = Exception.class)
    public void addPreSeparateRecord(Long workerId, Long bossId) {
        // 更新之前状态失效
        userInviteSeparateMapper.updateStateByWorkerIdAndBossId(workerId, bossId, UserInviteSeparate.STATE_INVALID);
        
        // 限制天数
        int limitDays = Integer.parseInt(userVipConfigService.getValueByKey("invite_separate_limit_days"));
        
        // 保存记录
        UserInviteSeparate inviteSeparate = new UserInviteSeparate();
        inviteSeparate.setBossId(bossId);
        inviteSeparate.setWorkerId(workerId);
        inviteSeparate.setState(UserInviteSeparate.STATE_INIT);
        inviteSeparate.setEndTime(DateUtil.plusDayDate(limitDays, new Date()));
        inviteSeparate.setCreateTime(new Date());
        inviteSeparate.setUpdateTime(new Date());
        userInviteSeparateMapper.insertSelective(inviteSeparate);
        
        UserInfo userInfo = userInfoService.getUserById(workerId);
        // 消息
        MsgOtherVIPDTO msgboss = new MsgOtherVIPDTO();
        msgboss.setContent1(userInfo.getNickName() + " " + workerId);
        msgboss.setContent2("于" + TimeUtil.formatDateDot(new Date()) + "成功升级成为会员");
        msgboss.setContent3("今日起" + limitDays + "天内,你未能成为会员将会与其脱离邀请关系 ");
        userOtherMsgNotificationService.teamVIPCallBoss(bossId, "如有疑问请联系我的-人工客服", msgboss);
    }
    
    @Override
    public void updateInvalidByBossId(Long uid) {
        userInviteSeparateMapper.updateInvalidByBossId(uid);
    }
    
    @Override
    public void updateStateByWorkerIdAndBossId(Long workerId, Long bossId, int state) {
        userInviteSeparateMapper.updateStateByWorkerIdAndBossId(workerId, bossId, state);
    }
 
    @Override
    public UserInviteSeparate selectByWorkerIdAndBossId(Long workerId, Long bossId) {
        return userInviteSeparateMapper.selectByWorkerIdAndBossId(workerId, bossId);
    }
    
    @Override
    public List<UserInviteSeparate> getHandleOverdue(int start, int count) {
        return userInviteSeparateMapper.getHandleOverdue(start, count);
    }
    
    
    
    @Override
    @Transactional(rollbackFor = Exception.class)
    public void inviteSeparate(UserInviteSeparate record) {
        if (record == null)
            return;
 
        Long workerId = record.getWorkerId();
        Long bossId = record.getBossId();
        
        ThreeSale threeSale = threeSaleSerivce.getMyBoss(workerId);
        if (threeSale == null) {
            // 成功脱离 不发消息
            userInviteSeparateMapper.updateStateByWorkerIdAndBossId(workerId, bossId, UserInviteSeparate.STATE_SUCCESS);
            return;
        } 
        
        boolean separate = false;
        UserVIPPreInfo info = userVIPPreInfoService.getVipByProcess(bossId, UserVIPPreInfo.PROCESS_1);
        if (info == null) {
            separate = true;
        } else if (info.getCreateTime().getTime() >= record.getEndTime().getTime()) {
            separate = true;     
        }
        
 
        if (!separate) { 
            // 未脱离
            userInviteSeparateMapper.updateStateByWorkerIdAndBossId(workerId, bossId, UserInviteSeparate.STATE_INVALID);
        } else { 
            // 脱离关系
            userInviteSeparateMapper.updateStateByWorkerIdAndBossId(workerId, bossId, UserInviteSeparate.STATE_SUCCESS);
 
            // 脱离邀请关系
            threeSaleSerivce.inviteSeparate(workerId, bossId);
 
            int limitDays = Integer.parseInt(userVipConfigService.getValueByKey("invite_separate_limit_days"));
            
            // 消息
            UserInfo userInfo = userInfoService.selectByPKey(workerId);
            MsgOtherVIPDTO msgboss = new MsgOtherVIPDTO();
            msgboss.setContent1(userInfo.getNickName() + workerId + "于"+ TimeUtil.formatDateDot(record.getCreateTime()) + "成功升级成为会员 ");
            msgboss.setContent2("很遗憾,你未能在" + limitDays + "天升级为会员 ");
            msgboss.setContent3("已与其脱离邀请关系");
            userOtherMsgNotificationService.teamSplitCallBoss(bossId, "如有疑问请联系我的-人工客服", msgboss);
        }
    }
    
    
}