renaming listByAllAssociations() to listByAssociatedTaxon()
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / controller / ReferenceController.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.cdm.remote.controller;
12
13 import java.io.IOException;
14 import java.util.Arrays;
15 import java.util.List;
16 import java.util.UUID;
17
18 import javax.servlet.http.HttpServletRequest;
19 import javax.servlet.http.HttpServletResponse;
20
21 import org.springframework.beans.factory.annotation.Autowired;
22 import org.springframework.stereotype.Controller;
23 import org.springframework.web.bind.WebDataBinder;
24 import org.springframework.web.bind.annotation.InitBinder;
25 import org.springframework.web.bind.annotation.PathVariable;
26 import org.springframework.web.bind.annotation.RequestMapping;
27 import org.springframework.web.bind.annotation.RequestMethod;
28 import org.springframework.web.bind.annotation.RequestParam;
29 import org.springframework.web.servlet.ModelAndView;
30
31 import eu.etaxonomy.cdm.api.service.IReferenceService;
32 import eu.etaxonomy.cdm.model.reference.INomenclaturalReference;
33 import eu.etaxonomy.cdm.model.reference.Reference;
34 import eu.etaxonomy.cdm.remote.editor.UUIDPropertyEditor;
35
36 /**
37 * TODO write controller documentation
38 *
39 * @author a.kohlbecker
40 * @date 24.03.2009
41 */
42
43 @Controller
44 @RequestMapping(value = {"/reference/{uuid}"})
45 public class ReferenceController extends BaseController<Reference, IReferenceService>
46 {
47
48 private static final List<String> NOMENCLATURAL_CITATION_INIT_STRATEGY = Arrays.asList(new String []{
49 "$",
50 "authorTeam", // TODO obsolete??
51 "inReference.authorTeam"
52 });
53
54 private static final List<String> CITATION_WITH_AUTHORTEAM_INIT_STRATEGY = Arrays.asList(new String []{
55 "authorTeam.$" // TODO obsolete??
56 });
57
58 public ReferenceController(){
59 setInitializationStrategy(Arrays.asList(new String[]{
60 "$",
61 "authorTeam.$" // TODO obsolete??
62 }));
63 }
64
65 /* (non-Javadoc)
66 * @see eu.etaxonomy.cdm.remote.controller.GenericController#setService(eu.etaxonomy.cdm.api.service.IService)
67 */
68 @Autowired
69 @Override
70 public void setService(IReferenceService service) {
71 this.service = service;
72 }
73
74 /**
75 * TODO write controller documentation
76 *
77 * @param request
78 * @param response
79 * @return
80 * @throws IOException
81 */
82 @RequestMapping(
83 value = {"nomenclaturalCitation"},
84 method = RequestMethod.GET)
85 public ModelAndView doGetNomenclaturalCitation(
86 @PathVariable("uuid") UUID uuid,
87 HttpServletRequest request,
88 HttpServletResponse response,
89 @RequestParam(value = "microReference", required = false) String microReference)throws IOException {
90 ModelAndView mv = new ModelAndView();
91 Reference rb = service.load(uuid, NOMENCLATURAL_CITATION_INIT_STRATEGY);
92 if(INomenclaturalReference.class.isAssignableFrom(rb.getClass())){
93 String nomRefCit = ((INomenclaturalReference)rb).getNomenclaturalCitation(microReference);
94 mv.addObject(nomRefCit);
95 return mv;
96 } else {
97 response.sendError(400, "The supplied reference-uuid must specify a INomenclaturalReference.");
98 }
99 return mv;
100 }
101
102 @RequestMapping(
103 value = {"authorTeam"},
104 method = RequestMethod.GET)
105 public ModelAndView doGetAuthorTeam(
106 @PathVariable("uuid") UUID uuid,
107 HttpServletRequest request,
108 HttpServletResponse response) {
109 ModelAndView mv = new ModelAndView();
110 Reference rb = service.load(uuid, CITATION_WITH_AUTHORTEAM_INIT_STRATEGY);
111 if(rb.getAuthorTeam() != null){
112 mv.addObject(rb.getAuthorTeam());
113 }
114 return mv;
115 }
116
117 }