8
8
import org .modelmapper .ModelMapper ;
9
9
import org .springframework .beans .factory .annotation .Autowired ;
10
10
import org .springframework .beans .factory .annotation .Value ;
11
+ import org .springframework .format .annotation .DateTimeFormat ;
11
12
import org .springframework .stereotype .Service ;
12
13
13
14
import java .sql .*;
15
+ import java .time .Instant ;
14
16
import java .time .LocalDateTime ;
17
+ import java .time .ZoneId ;
15
18
import java .util .ArrayList ;
16
19
import java .util .List ;
17
20
import java .util .stream .Collectors ;
@@ -47,6 +50,13 @@ public PokemonDTO getPokemon(String name) {
47
50
return modelMapper .map (pokemon , PokemonDTO .class );
48
51
}
49
52
53
+ public PokemonDTO getPokemon (Long id ) {
54
+ var pokemon = findById (id );
55
+ if (pokemon == null )
56
+ throw new NotFoundPokemon ("Pokemon with id " + id + " not found" );
57
+ return modelMapper .map (pokemon , PokemonDTO .class );
58
+ }
59
+
50
60
public Long addPokemon (PokemonDTO pokemonDTO ) {
51
61
var pokemon = modelMapper .map (pokemonDTO , Pokemon .class );
52
62
var pokemonSaved = save (pokemon );
@@ -133,6 +143,41 @@ public Pokemon findByNameContaining(String name) {
133
143
return pokemon ;
134
144
}
135
145
146
+ public Pokemon findById (Long id ) {
147
+ Pokemon pokemon = null ;
148
+ try (Connection connection = DriverManager .getConnection (DATABASE_URL , USER , PASSWORD )) {
149
+ var sql = "SELECT * FROM POKEMON WHERE id = " + id ;
150
+
151
+ Statement statement = connection .createStatement ();
152
+ ResultSet result = statement .executeQuery (sql );
153
+
154
+ while (result .next ()) {
155
+ LocalDateTime lastWorkout = null ;
156
+ if (result .getDate ("last_workout" ) != null ) {
157
+ lastWorkout = Instant .ofEpochMilli (result .getDate ("last_workout" ).getTime ())
158
+ .atZone (ZoneId .systemDefault ())
159
+ .toLocalDateTime ();
160
+ }
161
+ pokemon = Pokemon .builder ()
162
+ .id (Long .valueOf (result .getInt ("id" )))
163
+ .name (result .getString ("name" ))
164
+ .description (result .getString ("description" ))
165
+ .attack (result .getInt ("attack" ))
166
+ .defense (result .getInt ("defense" ))
167
+ .speed (result .getInt ("speed" ))
168
+ .total (result .getInt ("total" ))
169
+ .generation (result .getInt ("generation" ))
170
+ .legendary (result .getInt ("legendary" ))
171
+ .imageUrl (result .getString ("image_url" ))
172
+ .lastWorkout (lastWorkout )
173
+ .build ();
174
+ }
175
+ } catch (SQLException e ) {
176
+ e .printStackTrace ();
177
+ }
178
+ return pokemon ;
179
+ }
180
+
136
181
public Pokemon save (Pokemon pokemon ) {/*<code>*/
137
182
try (Connection connection = DriverManager .getConnection (DATABASE_URL , USER , PASSWORD )) {
138
183
Class .forName ("org.h2.Driver" );
@@ -146,8 +191,27 @@ public Pokemon save(Pokemon pokemon) {/*<code>*/
146
191
return findByNameContaining (pokemon .getName ());
147
192
}
148
193
149
- public Pokemon update (Pokemon pokemon ) {/*<code>*/
150
- return null ;
194
+ public Pokemon update (Pokemon pokemon ) {
195
+ try (Connection connection = DriverManager .getConnection (DATABASE_URL , USER , PASSWORD )) {
196
+ Class .forName ("org.h2.Driver" );
197
+
198
+ Statement statement = connection .createStatement ();
199
+ statement .execute ("UPDATE POKEMON SET name = '" + pokemon .getName () + "', " +
200
+ "description = '" + pokemon .getDescription () + "', " +
201
+ "hp = " + pokemon .getHp () + ", " +
202
+ "attack = " + pokemon .getAttack () + ", " +
203
+ "defense = " + pokemon .getDefense () + ", " +
204
+ "speed = " + pokemon .getSpeed () + ", " +
205
+ "total = " + pokemon .getTotal () + ", " +
206
+ "generation = " + pokemon .getGeneration () + ", " +
207
+ "legendary = " + pokemon .getLegendary () + ", " +
208
+ "image_url = '" + pokemon .getImageUrl () + "', " +
209
+ "last_workout = '" + pokemon .getLastWorkout () + "'" +
210
+ " WHERE id = " + pokemon .getId () + ";" );
211
+ } catch (Exception e ) {
212
+ e .printStackTrace ();
213
+ }
214
+ return findById (pokemon .getId ());
151
215
}
152
216
153
217
public void deleteById (Long id ) {
0 commit comments