| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package rocks.zipcode.io.web.rest;
-
- import com.codahale.metrics.annotation.Timed;
- import rocks.zipcode.io.domain.Photo;
- import rocks.zipcode.io.repository.PhotoRepository;
- import rocks.zipcode.io.web.rest.errors.BadRequestAlertException;
- import rocks.zipcode.io.web.rest.util.HeaderUtil;
- import io.github.jhipster.web.util.ResponseUtil;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.http.ResponseEntity;
- import org.springframework.web.bind.annotation.*;
-
- import java.net.URI;
- import java.net.URISyntaxException;
-
- import java.util.List;
- import java.util.Optional;
-
- /**
- * REST controller for managing Photo.
- */
- @RestController
- @RequestMapping("/api")
- public class PhotoResource {
-
- private final Logger log = LoggerFactory.getLogger(PhotoResource.class);
-
- private static final String ENTITY_NAME = "photo";
-
- private final PhotoRepository photoRepository;
-
- public PhotoResource(PhotoRepository photoRepository) {
- this.photoRepository = photoRepository;
- }
-
- /**
- * POST /photos : Create a new photo.
- *
- * @param photo the photo to create
- * @return the ResponseEntity with status 201 (Created) and with body the new photo, or with status 400 (Bad Request) if the photo has already an ID
- * @throws URISyntaxException if the Location URI syntax is incorrect
- */
- @PostMapping("/photos")
- @Timed
- public ResponseEntity<Photo> createPhoto(@RequestBody Photo photo) throws URISyntaxException {
- log.debug("REST request to save Photo : {}", photo);
- if (photo.getId() != null) {
- throw new BadRequestAlertException("A new photo cannot already have an ID", ENTITY_NAME, "idexists");
- }
- Photo result = photoRepository.save(photo);
- return ResponseEntity.created(new URI("/api/photos/" + result.getId()))
- .headers(HeaderUtil.createEntityCreationAlert(ENTITY_NAME, result.getId().toString()))
- .body(result);
- }
-
- /**
- * PUT /photos : Updates an existing photo.
- *
- * @param photo the photo to update
- * @return the ResponseEntity with status 200 (OK) and with body the updated photo,
- * or with status 400 (Bad Request) if the photo is not valid,
- * or with status 500 (Internal Server Error) if the photo couldn't be updated
- * @throws URISyntaxException if the Location URI syntax is incorrect
- */
- @PutMapping("/photos")
- @Timed
- public ResponseEntity<Photo> updatePhoto(@RequestBody Photo photo) throws URISyntaxException {
- log.debug("REST request to update Photo : {}", photo);
- if (photo.getId() == null) {
- throw new BadRequestAlertException("Invalid id", ENTITY_NAME, "idnull");
- }
- Photo result = photoRepository.save(photo);
- return ResponseEntity.ok()
- .headers(HeaderUtil.createEntityUpdateAlert(ENTITY_NAME, photo.getId().toString()))
- .body(result);
- }
-
- /**
- * GET /photos : get all the photos.
- *
- * @param eagerload flag to eager load entities from relationships (This is applicable for many-to-many)
- * @return the ResponseEntity with status 200 (OK) and the list of photos in body
- */
- @GetMapping("/photos")
- @Timed
- public List<Photo> getAllPhotos(@RequestParam(required = false, defaultValue = "false") boolean eagerload) {
- log.debug("REST request to get all Photos");
- return photoRepository.findAllWithEagerRelationships();
- }
-
- /**
- * GET /photos/:id : get the "id" photo.
- *
- * @param id the id of the photo to retrieve
- * @return the ResponseEntity with status 200 (OK) and with body the photo, or with status 404 (Not Found)
- */
- @GetMapping("/photos/{id}")
- @Timed
- public ResponseEntity<Photo> getPhoto(@PathVariable Long id) {
- log.debug("REST request to get Photo : {}", id);
- Optional<Photo> photo = photoRepository.findOneWithEagerRelationships(id);
- return ResponseUtil.wrapOrNotFound(photo);
- }
-
- /**
- * DELETE /photos/:id : delete the "id" photo.
- *
- * @param id the id of the photo to delete
- * @return the ResponseEntity with status 200 (OK)
- */
- @DeleteMapping("/photos/{id}")
- @Timed
- public ResponseEntity<Void> deletePhoto(@PathVariable Long id) {
- log.debug("REST request to delete Photo : {}", id);
-
- photoRepository.deleteById(id);
- return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
- }
- }
|