/*
* This is eMonocot, a global online biodiversity information resource.
*
* Copyright © 2011–2015 The Board of Trustees of the Royal Botanic Gardens, Kew and The University of Oxford
*
* eMonocot is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* eMonocot 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 Affero General Public License for more details.
*
* The complete text of the GNU Affero General Public License is in the source repository as the file
* ‘COPYING’. It is also available from <http://www.gnu.org/licenses/>.
*/
package org.emonocot.portal.controller;
import org.emonocot.api.ImageService;
import org.emonocot.model.Image;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
*
* @author ben
*
*/
@Controller
@RequestMapping("/image")
public class ImageController extends GenericController<Image, ImageService> {
private static Logger queryLog = LoggerFactory.getLogger("query");
/**
*
* @param imageService
* Set the image service
*/
@Autowired
public final void setImageService(final ImageService imageService) {
super.setService(imageService);
}
/**
*
*/
public ImageController() {
super("image", Image.class);
}
/**
* @param identifier
* Set the identifier of the image
* @param model Set the model
* @return the name of the view
*/
@RequestMapping(value = "/{id}", method = RequestMethod.GET, produces = {"text/html", "*/*"})
public final String show(@PathVariable final Long id, final Model model) {
Image image = getService().load(id,"image-page");
model.addAttribute(image);
queryLog.info("Image: \'{}\'", new Object[] {id});
return "image/show";
}
/**
* Many users visit a taxon page and then navigate to the document above, then bounce
*/
@RequestMapping(method = RequestMethod.GET, produces = {"text/html", "*/*"})
public String list(Model model) {
return "redirect:/search?facet=base.class_s%3aorg.emonocot.model.Image";
}
}