1 | <%-- $Id: index.jsp 6192 2012-10-31 12:34:19Z nicklas $ |
---|
2 | ------------------------------------------------------------------ |
---|
3 | Copyright (C) 2006 Nicklas Nordborg |
---|
4 | |
---|
5 | This file is part of BASE - BioArray Software Environment. |
---|
6 | Available at http://base.thep.lu.se/ |
---|
7 | |
---|
8 | BASE is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU General Public License |
---|
10 | as published by the Free Software Foundation; either version 3 |
---|
11 | of the License, or (at your option) any later version. |
---|
12 | |
---|
13 | BASE is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
16 | GNU General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with BASE. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | ------------------------------------------------------------------ |
---|
21 | |
---|
22 | @author Nicklas |
---|
23 | @version 2.0 |
---|
24 | --%> |
---|
25 | <%@ page pageEncoding="UTF-8" session="false" |
---|
26 | import="net.sf.basedb.core.SessionControl" |
---|
27 | import="net.sf.basedb.core.DbControl" |
---|
28 | import="net.sf.basedb.core.Item" |
---|
29 | import="net.sf.basedb.core.ItemContext" |
---|
30 | import="net.sf.basedb.core.BasicItem" |
---|
31 | import="net.sf.basedb.core.Annotation" |
---|
32 | import="net.sf.basedb.core.AnnotationType" |
---|
33 | import="net.sf.basedb.core.Annotatable" |
---|
34 | import="net.sf.basedb.core.BaseException" |
---|
35 | import="net.sf.basedb.clients.web.Base" |
---|
36 | import="net.sf.basedb.clients.web.WebException" |
---|
37 | import="net.sf.basedb.util.Values" |
---|
38 | import="net.sf.basedb.clients.web.util.HTML" |
---|
39 | %> |
---|
40 | <%@ taglib prefix="base" uri="/WEB-INF/base.tld" %> |
---|
41 | <%@ taglib prefix="t" uri="/WEB-INF/tab.tld" %> |
---|
42 | |
---|
43 | <% |
---|
44 | final String root = request.getContextPath()+"/"; |
---|
45 | final SessionControl sc = Base.getExistingSessionControl(pageContext, true); |
---|
46 | final String ID = sc.getId(); |
---|
47 | final String cmd = request.getParameter("cmd"); |
---|
48 | final int itemId = Values.getInt(request.getParameter("item_id")); |
---|
49 | |
---|
50 | DbControl newDc = null; |
---|
51 | DbControl oldDc = null; |
---|
52 | String forward = null; |
---|
53 | String message = null; |
---|
54 | String redirect = null; |
---|
55 | try |
---|
56 | { |
---|
57 | if ("EditItem".equals(cmd)) |
---|
58 | { |
---|
59 | newDc = sc.newDbControl(); |
---|
60 | Annotation a = Annotation.getById(newDc, itemId); |
---|
61 | AnnotationType at = a.getAnnotationType(); |
---|
62 | Annotatable item = a.getAnnotationSet().getItem(); |
---|
63 | |
---|
64 | redirect = "annotate.jsp?ID=" + ID + "&item_id=" + item.getId() + |
---|
65 | "&item_type=" + item.getType().name() + |
---|
66 | "&annotationtype_id=" + at.getId() + "&standalone=1"; |
---|
67 | newDc.close(); |
---|
68 | } |
---|
69 | else if ("SaveAnnotations".equals(cmd)) |
---|
70 | { |
---|
71 | final Item itemType = Item.valueOf(request.getParameter("item_type")); |
---|
72 | newDc = sc.newDbControl(); |
---|
73 | oldDc = sc.newDbControl(); |
---|
74 | ItemContext cc = sc.getCurrentContext(itemType); |
---|
75 | Annotatable oldItem = (Annotatable)cc.getObject("item"); |
---|
76 | Annotatable newItem = (Annotatable)itemType.getById(newDc, itemId); |
---|
77 | oldDc.reattachItem((BasicItem)oldItem, false); |
---|
78 | Base.updateAnnotations(newDc, oldItem, newItem, request); |
---|
79 | oldDc.close(); |
---|
80 | newDc.commit(); |
---|
81 | cc.removeObject("item"); |
---|
82 | message = "Annotations saved"; |
---|
83 | } |
---|
84 | else |
---|
85 | { |
---|
86 | throw new WebException("popup", "Invalid command", "The command {1} is not recognised as a valid command.", cmd); |
---|
87 | } |
---|
88 | } |
---|
89 | finally |
---|
90 | { |
---|
91 | if (oldDc != null) oldDc.close(); |
---|
92 | if (newDc != null) newDc.close(); |
---|
93 | } |
---|
94 | |
---|
95 | if (forward != null) |
---|
96 | { |
---|
97 | sc.setSessionSetting("alert-message", message); |
---|
98 | pageContext.forward(forward); |
---|
99 | } |
---|
100 | else if (redirect != null) |
---|
101 | { |
---|
102 | sc.setSessionSetting("alert-message", message); |
---|
103 | response.sendRedirect(redirect); |
---|
104 | } |
---|
105 | else if (message == null) |
---|
106 | { |
---|
107 | response.sendRedirect(root + "common/close_popup.jsp?refresh_opener=1&wait=0"); |
---|
108 | } |
---|
109 | else |
---|
110 | { |
---|
111 | response.sendRedirect(root + "common/close_popup.jsp?refresh_opener=1&message="+HTML.urlEncode(message)); |
---|
112 | } |
---|
113 | %> |
---|
114 | |
---|