UserServiceJpa.java
1.52 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
package fr.plil.sio.persistence.jpa;
import fr.plil.sio.persistence.api.Group;
import fr.plil.sio.persistence.api.Right;
import fr.plil.sio.persistence.api.User;
import fr.plil.sio.persistence.api.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserServiceJpa implements UserService {
@Autowired
UserRepository userRepository;
@Autowired
GroupRepository groupRepository;
@Override
public User create(String name, String groupName) {
if(name == null)
throw new IllegalArgumentException("Name cannot be null");
if(groupName == null)
throw new IllegalArgumentException("Group name cannot be null");
Group group = groupRepository.findByName(groupName);
if(group == null)
throw new IllegalStateException("Group not found");
User user = new User();
user.setName(name);
user.setGroup(group);
userRepository.save(user);
return user;
}
@Override
public boolean delete(String name) {
return false;
}
@Override
public User findByName(String name) {
if(name == null)
throw new IllegalArgumentException("Name cannot be null");
return userRepository.findByName(name);
}
@Override
public boolean isUserHasRight(String userName, Right right) {
return false;
}
}