summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/SPRING/petshop/src/main/java/it/dmi/tsdw/petshop/controllers/PetController.java
blob: f862a2cd88761faf18b5c8b1f27c7aa20421547f (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
package it.dmi.tsdw.petshop.controllers;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Optional;

import javax.validation.Valid;

import org.springframework.beans.factory.annotation.Autowired;
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 it.dmi.tsdw.petshop.Pet;
import it.dmi.tsdw.petshop.services.PetService;

@RestController
@RequestMapping("/api")
public class PetController {

    @Autowired
    private PetService service;

    @GetMapping("/pets")
    public ResponseEntity<List<Pet>> getAllPets() {
        List<Pet> entityList = service.getAllPets();
        return ResponseEntity.ok(entityList);
    }

    @GetMapping("/pets/{id}")
    public ResponseEntity<Pet> getPet(@PathVariable long id) {
        Optional<Pet> entity = service.getPet(id);
        if(entity.isPresent())
            return ResponseEntity.ok(entity.get());
        else
            return ResponseEntity.notFound().build();
    }

    @PostMapping("/pets")
    public ResponseEntity<Pet> addPet(@Valid @RequestBody Pet e) throws URISyntaxException {
        if (e.getId() != null) {
            return ResponseEntity.badRequest().build();
        }
        Pet entity = service.addPet(e);
        return ResponseEntity.created(new URI("/api/resourcePath" + entity.getId())).body(entity);
    }

    @PutMapping("/pets")
    public ResponseEntity<Pet> updatePet(@Valid @RequestBody Pet e) {
        if (e.getId() == null)
            return ResponseEntity.notFound().build();
        Pet entity = service.updatePet(e);
        return ResponseEntity.ok(entity);
    }

    @DeleteMapping("/pets/{id}")
    public ResponseEntity<Void> deletePet(@PathVariable long id) {
        if (service.getPet(id).isEmpty())
            return ResponseEntity.notFound().build();

        service.deletePet(id);
        return ResponseEntity.ok().build();
    }
}