Blame view

src/main/java/fr/plil/sio/persistence/jpa/GroupServiceJpa.java 2.91 KB
fd5e74ca   jcartign   First student ver...
1
2
3
4
5
  package fr.plil.sio.persistence.jpa;
  
  import fr.plil.sio.persistence.api.Group;
  import fr.plil.sio.persistence.api.GroupService;
  import fr.plil.sio.persistence.api.Right;
fb8c34cc   msahmane   RightJPA à 100%, ...
6
  import java.util.List;
fd5e74ca   jcartign   First student ver...
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
  import org.springframework.beans.factory.annotation.Autowired;
  import org.springframework.stereotype.Service;
  
  @Service
  public class GroupServiceJpa implements GroupService {
  
      @Autowired
      private GroupRepository groupRepository;
  
      @Override
      public Group create(String name) {
          if (name == null) {
              throw new IllegalArgumentException("name cannot be null");
          }
          Group group = groupRepository.findByName(name);
          if (group != null) {
              throw new IllegalStateException("a group with the same name already exists");
          }
          group = new Group();
          group.setName(name);
          groupRepository.save(group);
          return group;
      }
  
      @Override
      public boolean delete(String name) {
9ae0ef87   msahmane   Amélioration des ...
33
34
35
36
37
38
39
40
41
          if(name == null)
              throw new IllegalArgumentException("Name cannot be null");
          
          Group group = groupRepository.findByName(name);
          if(group == null)
              return false;
          
          groupRepository.delete(group);
          return true;
fd5e74ca   jcartign   First student ver...
42
43
44
45
46
47
48
49
50
51
52
53
      }
  
      @Override
      public Group findByName(String name) {
          if (name == null) {
              throw new IllegalArgumentException("name cannot be null");
          }
          return groupRepository.findByName(name);
      }
  
      @Override
      public boolean addRight(String groupName, Right right) {
fb8c34cc   msahmane   RightJPA à 100%, ...
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
          
          if(groupName == null)
              throw new IllegalArgumentException("Group name cannot be null");
          
          if(right == null)
              throw new IllegalArgumentException("Right cannot be null");
          
          Group group = groupRepository.findByName(groupName);
          
          if(group == null){
              throw new IllegalStateException("Group not found");
          }
          
          List<Right> list = group.getRights();
          
          if(list.contains(right))
              return false;
          
          list.add(right);
          group.setRights(list);
                          
          return true;
fd5e74ca   jcartign   First student ver...
76
77
78
79
      }
  
      @Override
      public boolean removeRight(String groupName, Right right) {
fb8c34cc   msahmane   RightJPA à 100%, ...
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
          
          if(groupName == null)
              throw new IllegalArgumentException("Group name cannot be null");
          
          if(right == null)
              throw new IllegalArgumentException("Right cannot be null");
          
          if(right.getId() == null)
              throw new IllegalArgumentException("Not a right");
          
          Group group = groupRepository.findByName(groupName);
          
          if(group == null)
              throw new IllegalStateException("Group not found");
          
          List<Right> list = group.getRights();
          
          if(list.contains(right)){
              list.remove(right);
              return true;
          }
                          
fd5e74ca   jcartign   First student ver...
102
103
104
          return false;
      }
  }