org.bozzo.ipplan.web.InfrastructureController.java Source code

Java tutorial

Introduction

Here is the source code for org.bozzo.ipplan.web.InfrastructureController.java

Source

/*
 * Copyright (C) 2015
 *     Boris Barnier <b.barnier@gmail.com>
 *   
 * This file is part of ipplan-api.
 * 
 * ipplan-api is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * ipplan-api is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with ipplan-api.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.bozzo.ipplan.web;

import javax.validation.constraints.NotNull;

import org.bozzo.ipplan.domain.ApiError;
import org.bozzo.ipplan.domain.RequestMode;
import org.bozzo.ipplan.domain.dao.InfrastructureRepository;
import org.bozzo.ipplan.domain.exception.ApiException;
import org.bozzo.ipplan.domain.model.Infrastructure;
import org.bozzo.ipplan.domain.model.ui.InfrastructureResource;
import org.bozzo.ipplan.domain.service.InfrastructureService;
import org.bozzo.ipplan.web.assembler.InfrastructureResourceAssembler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.web.PagedResourcesAssembler;
import org.springframework.hateoas.PagedResources;
import org.springframework.http.HttpEntity;
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.RequestParam;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

import com.google.common.base.Preconditions;

import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import springfox.documentation.annotations.ApiIgnore;

/**
 * @author boris
 *
 */
@RestController
@RequestMapping("/api/infras")
public class InfrastructureController {
    private static Logger logger = LoggerFactory.getLogger(InfrastructureController.class);

    @Autowired
    private InfrastructureService service;

    @Autowired
    private InfrastructureRepository repository;

    @Autowired
    private InfrastructureResourceAssembler assembler;

    @RequestMapping(method = RequestMethod.GET, produces = { MediaType.TEXT_HTML_VALUE })
    @ApiIgnore
    public ModelAndView getInfrastructuresView(@RequestParam(required = false) String group, Pageable pageable,
            PagedResourcesAssembler<Infrastructure> pagedAssembler) {
        PagedResources<InfrastructureResource> infras = this.getInfrastructures(group, pageable, pagedAssembler);
        ModelAndView view = new ModelAndView("infras");
        view.addObject("pages", infras);
        return view;
    }

    @ApiResponses({ @ApiResponse(code = 200, message = "OK") })
    @RequestMapping(method = RequestMethod.GET, produces = { MediaType.APPLICATION_JSON_VALUE })
    public PagedResources<InfrastructureResource> getInfrastructures(@RequestParam(required = false) String group,
            Pageable pageable, PagedResourcesAssembler<Infrastructure> pagedAssembler) {
        Page<Infrastructure> infras;
        if (group != null) {
            infras = repository.findAllByGroup(group, pageable);
        } else {
            infras = repository.findAll(pageable);
        }
        return pagedAssembler.toResource(infras, assembler);
    }

    @RequestMapping(value = "/{infraId}", method = RequestMethod.GET, produces = { MediaType.TEXT_HTML_VALUE })
    @ApiIgnore
    public ModelAndView getInfrastructureView(@PathVariable Integer infraId,
            @RequestParam(required = false) RequestMode mode) {
        HttpEntity<InfrastructureResource> infra = this.getInfrastructure(infraId, mode);
        ModelAndView view = new ModelAndView("infra");
        view.addObject("id", infraId);
        view.addObject("object", infra.getBody());
        return view;
    }

    @ApiResponses({ @ApiResponse(code = 200, message = "OK"),
            @ApiResponse(code = 404, message = "Not Found", response = ApiError.class) })
    @RequestMapping(value = "/{infraId}", method = RequestMethod.GET, produces = {
            MediaType.APPLICATION_JSON_VALUE })
    public HttpEntity<InfrastructureResource> getInfrastructure(@PathVariable Integer infraId,
            @RequestParam(required = false) RequestMode mode) {
        Infrastructure infra = service.findOne(infraId, mode);
        if (infra == null) {
            throw new ApiException(ApiError.INFRA_NOT_FOUND);
        }
        return new ResponseEntity<>(assembler.toResource(infra), HttpStatus.OK);
    }

    @RequestMapping(method = RequestMethod.POST, produces = { MediaType.APPLICATION_JSON_VALUE })
    public HttpEntity<InfrastructureResource> addInfrastructure(@RequestBody @NotNull Infrastructure infra) {
        logger.info("add new infrastruture: {}", infra);
        Infrastructure infrastructure = repository.save(infra);
        return new ResponseEntity<>(assembler.toResource(infrastructure), HttpStatus.CREATED);
    }

    @ApiResponses({ @ApiResponse(code = 201, message = "Created") })
    @RequestMapping(value = "/{infraId}", method = RequestMethod.PUT, produces = {
            MediaType.APPLICATION_JSON_VALUE })
    public HttpEntity<InfrastructureResource> updateInfrastructure(@PathVariable Integer infraId,
            @RequestBody @NotNull Infrastructure infra) {
        Preconditions.checkArgument(infraId.equals(infra.getId()));
        logger.info("update infrastruture: {}", infra);
        Infrastructure infrastructure = repository.save(infra);
        return new ResponseEntity<>(assembler.toResource(infrastructure), HttpStatus.CREATED);
    }

    @ApiResponses({ @ApiResponse(code = 204, message = "No Content") })
    @RequestMapping(value = "/{infraId}", method = RequestMethod.DELETE)
    @ResponseStatus(HttpStatus.NO_CONTENT)
    public void deleteInfrastructure(@PathVariable Integer infraId) {
        logger.info("delete infrastruture with id: {}", infraId);
        repository.delete(infraId);
    }
}