-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathMovieController.java
More file actions
58 lines (49 loc) · 2.41 KB
/
MovieController.java
File metadata and controls
58 lines (49 loc) · 2.41 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
package com.booleanuk.api.cinema.movies;
import java.time.LocalDateTime;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.server.ResponseStatusException;
@RestController
@RequestMapping("movies")
public class MovieController {
@Autowired
private MovieRepository movieRepository;
@GetMapping
public ResponseEntity<List<Movie>> getAllMovies() {
return ResponseEntity.ok(movieRepository.findAll());
}
@PostMapping
public ResponseEntity<Movie> addMovie(@RequestBody Movie movie) {
movie.setCreatedAt(LocalDateTime.now().toString());
movie.setUpdatedAt(LocalDateTime.now().toString());
return new ResponseEntity<Movie>(movieRepository.save(movie), HttpStatus.CREATED);
}
@PutMapping("{id}")
public ResponseEntity<Movie> updateMovie(@PathVariable int id, @RequestBody Movie movie) {
Movie movieToUpdate = movieRepository.findById(id).orElseThrow(
() -> new ResponseStatusException(HttpStatus.NOT_FOUND, "Could not find movie with this id"));
movieToUpdate.setTitle(movie.getTitle());
movieToUpdate.setRating(movie.getRating());
movieToUpdate.setDescription(movie.getDescription());
movieToUpdate.setRuntimeMins(movie.getRuntimeMins());
movieToUpdate.setUpdatedAt(LocalDateTime.now().toString());
return new ResponseEntity<Movie>(movieRepository.save(movieToUpdate), HttpStatus.CREATED);
}
@DeleteMapping("{id}")
public ResponseEntity<Movie> deleteMovie(@PathVariable int id) {
Movie movieToDelete = movieRepository.findById(id).orElseThrow(
() -> new ResponseStatusException(HttpStatus.NOT_FOUND, "Could not find movie with this id"));
movieRepository.delete(movieToDelete);
return ResponseEntity.ok(movieToDelete);
}
}