package org.jhipster.web.rest;
import com.codahale.metrics.annotation.Timed;
import io.github.jhipster.web.util.ResponseUtil;
import io.swagger.annotations.ApiParam;
import org.jhipster.domain.Entry;
import org.jhipster.repository.EntryRepository;
import org.jhipster.security.SecurityUtils;
import org.jhipster.web.rest.util.HeaderUtil;
import org.jhipster.web.rest.util.PaginationUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Optional;
/**
* REST controller for managing Entry.
*/
@RestController
@RequestMapping("/api")
public class EntryResource {
private final Logger log = LoggerFactory.getLogger(EntryResource.class);
private static final String ENTITY_NAME = "entry";
private final EntryRepository entryRepository;
public EntryResource(EntryRepository entryRepository) {
this.entryRepository = entryRepository;
}
/**
* POST /entries : Create a new entry.
*
* @param entry the entry to create
* @return the ResponseEntity with status 201 (Created) and with body the new entry, or with status 400 (Bad Request) if the entry has already an ID
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PostMapping("/entries")
@Timed
public ResponseEntity<Entry> createEntry(@Valid @RequestBody Entry entry) throws URISyntaxException {
log.debug("REST request to save Entry : {}", entry);
if (entry.getId() != null) {
return ResponseEntity.badRequest().headers(HeaderUtil.createFailureAlert(ENTITY_NAME, "idexists", "A new entry cannot already have an ID")).body(null);
}
Entry result = entryRepository.save(entry);
return ResponseEntity.created(new URI("/api/entries/" + result.getId()))
.headers(HeaderUtil.createEntityCreationAlert(ENTITY_NAME, result.getId().toString()))
.body(result);
}
/**
* PUT /entries : Updates an existing entry.
*
* @param entry the entry to update
* @return the ResponseEntity with status 200 (OK) and with body the updated entry,
* or with status 400 (Bad Request) if the entry is not valid,
* or with status 500 (Internal Server Error) if the entry couldnt be updated
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PutMapping("/entries")
@Timed
public ResponseEntity<Entry> updateEntry(@Valid @RequestBody Entry entry) throws URISyntaxException {
log.debug("REST request to update Entry : {}", entry);
if (entry.getId() == null) {
return createEntry(entry);
}
Entry result = entryRepository.save(entry);
return ResponseEntity.ok()
.headers(HeaderUtil.createEntityUpdateAlert(ENTITY_NAME, entry.getId().toString()))
.body(result);
}
/**
* GET /entries : get all the entries.
*
* @param pageable the pagination information
* @return the ResponseEntity with status 200 (OK) and the list of entries in body
*/
@GetMapping("/entries")
@Timed
public ResponseEntity<List<Entry>> getAllEntries(@ApiParam Pageable pageable) {
log.debug("REST request to get a page of Entries");
Page<Entry> page = entryRepository.findByBlogUserLoginOrderByDateDesc(SecurityUtils.getCurrentUserLogin(), pageable);
HttpHeaders headers = PaginationUtil.generatePaginationHttpHeaders(page, "/api/entries");
return new ResponseEntity<>(page.getContent(), headers, HttpStatus.OK);
}
/**
* GET /entries/:id : get the "id" entry.
*
* @param id the id of the entry to retrieve
* @return the ResponseEntity with status 200 (OK) and with body the entry, or with status 404 (Not Found)
*/
@GetMapping("/entries/{id}")
@Timed
public ResponseEntity<Entry> getEntry(@PathVariable Long id) {
log.debug("REST request to get Entry : {}", id);
Entry entry = entryRepository.findOneWithEagerRelationships(id);
return ResponseUtil.wrapOrNotFound(Optional.ofNullable(entry));
}
/**
* DELETE /entries/:id : delete the "id" entry.
*
* @param id the id of the entry to delete
* @return the ResponseEntity with status 200 (OK)
*/
@DeleteMapping("/entries/{id}")
@Timed
public ResponseEntity<Void> deleteEntry(@PathVariable Long id) {
log.debug("REST request to delete Entry : {}", id);
entryRepository.delete(id);
return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
}
}