-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsersService.java
261 lines (204 loc) · 8.21 KB
/
UsersService.java
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
package uma.taw.ubayspring.service;
import com.sun.istack.NotNull;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.stereotype.Service;
import uma.taw.ubayspring.dto.LoginDTO;
import uma.taw.ubayspring.dto.notifications.BidsDTO;
import uma.taw.ubayspring.dto.products.ProductClientDTO;
import uma.taw.ubayspring.dto.users.ClientDTO;
import uma.taw.ubayspring.dto.users.FilterUsersDTO;
import uma.taw.ubayspring.dto.users.PasswordChangeDTO;
import uma.taw.ubayspring.dto.users.ProductDTO;
import uma.taw.ubayspring.entity.*;
import uma.taw.ubayspring.repository.*;
import uma.taw.ubayspring.types.GenderEnum;
import uma.taw.ubayspring.types.KindEnum;
import java.sql.Date;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Random;
import java.util.stream.Collectors;
@Service
public class UsersService {
@Autowired
ProductFavouritesRepository favouritesRepository;
@Autowired
ClientRepositoryCustom clientRepositoryCustom;
@Autowired
ProductRepository productRepository;
@Autowired
LoginCredentialsRepository loginRepository;
@Autowired
LoginCredentialsRepositoryCustom loginRepositoryCustom;
@Autowired
AuthService authService;
@Autowired
BidRepository bidRepository;
@Autowired
ClientRepository clientRepository;
@Autowired
BidRepositoryCustom bidRepositoryCustom;
@Autowired
PasswordResetRepository passwordResetRepository;
@Autowired
FavouritesRepositoryCustom favouritesRepositoryCustom;
@Autowired
ProductFavouritesRepositoryCustom productFavouritesRepositoryCustom;
@Autowired
ProductFavouritesRepository productFavouritesRepository;
/**
* @author: José Luis Bueno Pachón
*/
public void addFavProduct(String productID, String clientID) {
ProductEntity product = productRepository.findById(Integer.parseInt(productID)).get();
ClientEntity client = clientRepository.findById(Integer.parseInt(clientID)).get();
ProductFavouritesEntity fav = ProductFavouritesEntity
.builder()
.product(product)
.client(client)
.build();
favouritesRepository.save(fav);
}
/**
* @author: José Luis Bueno Pachón
*/
public void deleteUser(String id) {
if(clientRepository.findById(Integer.parseInt(id)).isPresent()){
clientRepository.delete(clientRepository.findById(Integer.parseInt(id)).get());
}
}
/**
* @author: José Luis Bueno Pachón
*/
public void deleteFavProduct(String productID, String clientID) {
ProductEntity product = productRepository.findById(Integer.parseInt(productID)).get();
ClientEntity client = clientRepository.findById(Integer.parseInt(clientID)).get();
ProductFavouritesEntity fav = productFavouritesRepositoryCustom.getTuple(client, product);
productFavouritesRepository.delete(fav);
}
/**
* @author: José Luis Bueno Pachón
*/
public void modifyUser(ClientDTO clientDTO) {
ClientEntity client = clientRepository.findById(clientDTO.getId()).get();
client.setName(clientDTO.getName());
client.setLastName(clientDTO.getLastName());
client.setGender(clientDTO.getGender());
client.setAddress(clientDTO.getAddress());
client.setCity(clientDTO.getCity());
client.setBirthDate(clientDTO.getBirthDate());
clientRepository.save(client);
}
/**
* @author: José Luis Bueno Pachón
*/
public List<ProductDTO> products(User client) {
ClientEntity user = authService.getCredentialsEntity(client).getClient();
List<ProductDTO> favouriteProducts = productFavouritesRepositoryCustom.getClientFavouriteProducts(user).stream().map(this::productEntityToDTO).collect(Collectors.toList());
return favouriteProducts;
}
/**
* @author: José Luis Bueno Pachón
*/
private ProductDTO productEntityToDTO(ProductEntity productEntity) {
return new ProductDTO(productEntity.getId(),
productEntity.getTitle(),
productEntity.getDescription(),
productEntity.getImage(),
productEntity.getCloseDate());
}
/**
* @author: José Luis Bueno Pachón
*/
public int getClientID(User user) {
return authService.getCredentialsEntity(user).getClient().getId();
}
/**
* @author: José Luis Bueno Pachón
*/
public List<ClientDTO> users(FilterUsersDTO filterUsersDTO) {
List<ClientEntity> filtrados = clientRepositoryCustom.filterClients(
filterUsersDTO.getName(),
filterUsersDTO.getLastName(),
filterUsersDTO.getGender(),
filterUsersDTO.getAddress(),
filterUsersDTO.getCity(),
filterUsersDTO.getId());
return filtrados.stream().map(this::clientEntityToDTO).collect(Collectors.toList());
}
/**
* @author: José Luis Bueno Pachón
*/
private ClientDTO clientEntityToDTO(ClientEntity client) {
return new ClientDTO(client.getId(), client.getName(), client.getLastName(), client.getGender(), client.getAddress(), client.getCity(), client.getBirthDate());
}
/**
* @author: Altair Bueno
*/
private String generateRandomString(int size, Random random) {
char[] chars = "abcdefghijklmnopqrstuvwxyz1234567890".toCharArray();
StringBuilder sb = new StringBuilder(size);
for (int i = 0; i < size; i++) {
char c = chars[random.nextInt(chars.length)];
sb.append(c);
}
return sb.toString();
}
/**
* @author: José Luis Bueno Pachón
*/
@NotNull
public PasswordChangeDTO passwordChange(String id) {
String passwordChangeID = generateRandomString(20, new Random());
if(clientRepository.findById(Integer.parseInt(id)).isPresent()){
ClientEntity client = clientRepository.findById(Integer.parseInt(id)).get();
LoginCredentialsEntity loginCredentialsEntity = loginRepositoryCustom.searchClientLoginByClient(client);
PasswordResetEntity passwordResetEntity = new PasswordResetEntity();
passwordResetEntity.setLoginCredentials(loginCredentialsEntity);
passwordResetEntity.setRequestId(passwordChangeID);
passwordResetRepository.save(passwordResetEntity);
return new PasswordChangeDTO(loginCredentialsEntity.getId(), passwordChangeID);
}
return null;
}
/**
*
* @author Francisco Javier Hernández Martín
*/
private uma.taw.ubayspring.dto.notifications.ProductDTO notificationsProductEntityToDTO(ProductEntity productEntity) {
return new uma.taw.ubayspring.dto.notifications.ProductDTO(productEntity.getId(),
productEntity.getTitle(),
productEntity.getDescription(),
productEntity.getImage(),
productEntity.getCloseDate());
}
/**
*
* @author Francisco Javier Hernández Martín
*/
private BidsDTO bidEntityToDto(BidEntity bidEntity) {
return new BidsDTO(bidEntity.getPublishDate(),
bidEntity.getAmount(),
notificationsProductEntityToDTO(bidEntity.getProduct())
);
}
/**
*
* @author Francisco Javier Hernández Martín
*/
public HashMap<BidsDTO, Boolean> getNotifications(int id) {
var user = clientRepository.findById(id).get();
HashMap<BidsDTO, Boolean> notifications = new LinkedHashMap(); // Key: Bid; Value: Is the client the bid winner
List<BidEntity> closedBidsByClient = bidRepositoryCustom.productsBiddedClosedProducts(user);
for (BidEntity b : closedBidsByClient) {
BidsDTO bidDto = bidEntityToDto(b);
notifications.put(bidDto, bidRepositoryCustom.isWinnerBid(user, b));
}
return notifications;
}
}