All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.astrapi69.spring.controller.AbstractRestController Maven / Gradle / Ivy

There is a newer version: 3.1
Show newest version
/**
 * The MIT License
 *
 * Copyright (C) 2015 Asterios Raptis
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
package io.github.astrapi69.spring.controller;

import java.io.Serializable;
import java.util.Map;
import java.util.Optional;

import javax.validation.Valid;

import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.experimental.FieldDefaults;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import io.github.astrapi69.model.mapper.GenericModelMapper;
import io.github.astrapi69.collection.map.MapFactory;
import io.github.astrapi69.data.identifiable.Identifiable;
import io.github.astrapi69.spring.service.api.GenericService;

import io.swagger.v3.oas.annotations.Operation;

@Getter
@AllArgsConstructor
@FieldDefaults(level = AccessLevel.PRIVATE, makeFinal = true)
public class AbstractRestController, ID extends Serializable, REPOSITORY extends JpaRepository, DTO>
{

	GenericModelMapper mapper;

	GenericService service;

	@Operation(summary = "Delete the given json object")
	@RequestMapping(method = RequestMethod.DELETE, consumes = MediaType.APPLICATION_JSON_VALUE)
	@ResponseBody
	public ResponseEntity delete(@Valid @RequestBody DTO viewModel)
	{
		ENTITY entity = mapper.toEntity(viewModel);
		this.service.delete(entity);
		return ResponseEntity.ok(viewModel);
	}

	@RequestMapping(value = "/{id}", method = RequestMethod.DELETE)
	@Operation(summary = "Delete the entity from the given id")
	public Map deleteById(@PathVariable ID id)
	{
		Optional optionalEntity = this.service.findById(id);
		Map map = MapFactory.newHashMap();
		if (optionalEntity.isPresent())
		{
			DTO dto = mapper.toDto(optionalEntity.get());
			map.put("deleted-object", dto);
			this.service.deleteById(id);
		}
		else
		{
			map.put("deleted-object", "not exists");
		}
		map.put("success", true);
		return map;
	}

	@RequestMapping(method = RequestMethod.GET)
	@Operation(summary = "Find all entities")
	public ResponseEntity> findAll()
	{
		return ResponseEntity.ok(mapper.toDtos(this.service.findAll()));
	}

	@Operation(summary = "Get the entity from the given id")
	@RequestMapping(value = "/{id}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
	public ResponseEntity get(@PathVariable ID id)
	{
		return Optional.ofNullable(this.service.getById(id))
			.map(obj -> new ResponseEntity<>(mapper.toDto(obj), HttpStatus.OK))
			.orElse(new ResponseEntity<>(HttpStatus.NOT_FOUND));
	}

	@Operation(summary = "Saves the given json object")
	@RequestMapping(method = RequestMethod.POST, consumes = {
			MediaType.APPLICATION_JSON_VALUE }, produces = MediaType.APPLICATION_JSON_VALUE)
	@ResponseBody
	public ResponseEntity save(@Valid @RequestBody DTO viewModel)
	{
		ENTITY entity = mapper.toEntity(viewModel);
		ENTITY created = this.service.save(entity);
		DTO dto = mapper.toDto(created);
		return ResponseEntity.ok(dto);
	}

	@Operation(summary = "Update the entity from the given id with the given new json object")
	@RequestMapping(value = "/{id}", method = RequestMethod.PUT, consumes = {
			MediaType.APPLICATION_JSON_VALUE }, produces = MediaType.APPLICATION_JSON_VALUE)
	public ResponseEntity update(@PathVariable ID id, @Valid @RequestBody DTO json)
	{
		return Optional.ofNullable(this.service.getById(id)).map(entity -> {
			ENTITY entityToUpdate = mapper.toEntity(json);
			ENTITY updatedEntity = this.service.save(entityToUpdate);
			return new ResponseEntity<>(mapper.toDto(updatedEntity), HttpStatus.OK);
		}).orElse(new ResponseEntity<>(HttpStatus.NOT_FOUND));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy