Blame view

src/main/java/fr/plil/sio/persistence/jdbc/GroupRepositoryJdbc.java 3.59 KB
a800fde0   jcartign   First version, in...
1
2
  package fr.plil.sio.persistence.jdbc;
  
7940aa22   jcartign   Finishing API jav...
3
  import fr.plil.sio.persistence.api.Group;
a800fde0   jcartign   First version, in...
4
5
6
7
8
9
10
11
12
13
14
  import org.slf4j.Logger;
  import org.slf4j.LoggerFactory;
  import org.springframework.beans.factory.annotation.Autowired;
  import org.springframework.stereotype.Repository;
  
  import javax.sql.DataSource;
  import java.sql.ResultSet;
  import java.sql.SQLException;
  import java.sql.Statement;
  
  @Repository
7940aa22   jcartign   Finishing API jav...
15
  public class GroupRepositoryJdbc implements GroupRepository {
a800fde0   jcartign   First version, in...
16
  
7940aa22   jcartign   Finishing API jav...
17
      private static final Logger logger = LoggerFactory.getLogger(GroupRepository.class);
a800fde0   jcartign   First version, in...
18
19
20
21
22
  
      @Autowired
      private DataSource dataSource;
  
      @Override
7940aa22   jcartign   Finishing API jav...
23
      public Group findByName(String name) {
a800fde0   jcartign   First version, in...
24
25
26
27
28
29
          Statement stmt = null;
          ResultSet rs = null;
          try {
              stmt = dataSource.getConnection().createStatement();
              rs = stmt.executeQuery("SELECT * FROM GROUP_T WHERE NAME_C = \'" + name + "\'");
              if (rs.next()) {
7940aa22   jcartign   Finishing API jav...
30
31
32
33
34
                  logger.debug("found group " + name);
                  Group group = new Group();
                  group.setId(rs.getLong("GROUP_ID"));
                  group.setName(rs.getString("NAME_C"));
                  return group;
a800fde0   jcartign   First version, in...
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
              } else {
                  logger.debug("not found " + name);
                  return null;
              }
          } catch (SQLException e) {
              throw new UnsupportedOperationException("sql exception", e);
          } finally {
              try {
                  if (rs != null) {
                      rs.close();
                  }
                  if (stmt != null) {
                      stmt.close();
                  }
              } catch (SQLException e) {
                  throw new UnsupportedOperationException("sql exception during close", e);
  
              }
          }
      }
  
      @Override
7940aa22   jcartign   Finishing API jav...
57
      public void save(Group group) {
a800fde0   jcartign   First version, in...
58
59
60
61
          Statement stmt = null;
          ResultSet rs = null;
          try {
              stmt = dataSource.getConnection().createStatement();
7940aa22   jcartign   Finishing API jav...
62
              stmt.executeUpdate("INSERT INTO GROUP_T (NAME_C) VALUES (\'" + group.getName() + "\')",
a800fde0   jcartign   First version, in...
63
64
65
                      Statement.RETURN_GENERATED_KEYS);
              rs = stmt.getGeneratedKeys();
              if (rs.next()) {
7940aa22   jcartign   Finishing API jav...
66
                  group.setId(rs.getLong(1));
a800fde0   jcartign   First version, in...
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
              } else {
                  throw new UnsupportedOperationException("default in key access");
              }
          } catch (SQLException e) {
              throw new UnsupportedOperationException("sql exception", e);
          } finally {
              try {
                  if (rs != null) {
                      rs.close();
                  }
                  if (stmt != null) {
                      stmt.close();
                  }
              } catch (SQLException e) {
                  throw new UnsupportedOperationException("sql exception during close", e);
              }
          }
  
      }
7940aa22   jcartign   Finishing API jav...
86
87
88
  
      @Override
      public void delete(Long id) {
ef4eb263   rvangrev   Nouvelles modific...
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
          Statement stmt = null;
          ResultSet rs = null;
          if(id==null){
              throw new IllegalArgumentException();
          }
          try {
              stmt = dataSource.getConnection().createStatement();
              stmt.execute("DELETE FROM USER_T WHERE GROUP_U = " + id);
              stmt.execute("DELETE FROM GROUP_T WHERE  GROUP_ID = " + id);
          } catch (SQLException e) {
              throw new UnsupportedOperationException("sql exception", e);
          } finally {
              try {
                  if (rs != null) {
                      rs.close();
                  }
                  if (stmt != null) {
                      stmt.close();
                  }
              } catch (SQLException e) {
                  throw new UnsupportedOperationException("sql exception during close", e);
              }
          }
7940aa22   jcartign   Finishing API jav...
112
      }
a800fde0   jcartign   First version, in...
113
  }