保誠-保戶業務員媒合平台
Tomas
2023-09-14 e828225de7636d0195db2c3c9b1701a5b2f12049
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
package com.pollex.pam.service;
 
import java.util.Optional;
 
import com.pollex.pam.business.security.SecurityUtils;
import com.pollex.pam.business.service.OtpTmpService;
import com.pollex.pam.business.service.UsernameAlreadyUsedException;
import com.pollex.pam.business.service.dto.CustomerDTO;
import com.pollex.pam.business.service.mapper.CustomerMapper;
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import com.pollex.pam.business.domain.Customer;
import com.pollex.pam.business.domain.OtpTmp;
import com.pollex.pam.business.enums.DataFromEnum;
import com.pollex.pam.business.enums.OtpLoginTypeEnum;
import com.pollex.pam.business.enums.OtpTmpStatusEnum;
import com.pollex.pam.business.repository.CustomerRepository;
import com.pollex.pam.business.service.dto.CustomerRegisterDTO;
import com.pollex.pam.business.service.mapper.CustomerDTOMapper;
 
@Service
@Transactional
public class CustomerService {
    
    private static final Logger log = LoggerFactory.getLogger(CustomerService.class);
 
 
    @Autowired
    CustomerRepository customerRepository;
 
    @Autowired
    CustomerDTOMapper customerDTOMapper;
 
    @Autowired
    CustomerAuthService customerAuthService;
 
    @Autowired
    OtpTmpService otpTmpService;
 
    @Autowired
    CustomerMapper customerMapper;
 
    public Customer save(Customer customer) {
        return customerRepository.save(customer);
    }
 
    public Customer registerCustomer(CustomerRegisterDTO registDTO) {
        
        boolean isCustomerExist = checkCustomerExist(registDTO);
        if(isCustomerExist) {
            throw new UsernameAlreadyUsedException();
 
        }else {
            String account = getCustomerAccount(registDTO);
 
            OtpTmp otpTmp = otpTmpService.findByAccountAndIndexKey(account, registDTO.getIndexKey());
            
            if(otpTmp!=null) {
                if(otpTmp.getStatus() == OtpTmpStatusEnum.VERRIFIED) {
                    Customer customer = customerDTOMapper.toCustomer(registDTO);
                    customer.setDataFrom(DataFromEnum.PAM);
                    save(customer);
                    return customer;
                }else {
                    throw new IllegalArgumentException("Invalid indexKey state error. IndexKey: "
                            + registDTO.getIndexKey()
                            + " => status: " + otpTmp.getStatus());
                }
            }else {
                throw new IllegalArgumentException("otp tmp not exist");
            }
            
            
        }
 
    }
 
    public void updateLoggedCustomer(CustomerDTO customerDTO) {
        Long customerId = SecurityUtils.getCustomerDBId();
        Customer customer = customerRepository.findById(customerId)
            .orElseThrow(() -> new UsernameNotFoundException("customerId which is from token is not found in customer db table, customer id = " + customerId));
 
        customer.setEmail(customerDTO.getEmail());
        customer.setPhone(customerDTO.getPhone());
        customer.setName(customerDTO.getName());
        customerRepository.save(customer);
    }
 
    public CustomerDTO getLoggedCustomerDTO() {
        Long customerId = SecurityUtils.getCustomerDBId();
        Customer customer = customerRepository.findById(customerId)
            .orElseThrow(() -> new UsernameNotFoundException("customerId which is from token is not found in customer db table, customer id = " + customerId));
 
        return customerMapper.toDto(customer);
    }
 
    private String getCustomerAccount(CustomerRegisterDTO registDTO) {
        return registDTO.getContactType() == OtpLoginTypeEnum.EMAIL?registDTO.getEmail():registDTO.getPhone();
    }
 
    private boolean checkCustomerExist(CustomerRegisterDTO registDTO) {
        String account = getCustomerAccount(registDTO);
        Optional<Customer> customer = customerRepository.findOneByEmailEqualsOrPhoneEquals(account);
        return customer.isPresent();
    }
}