source: main/trunk/greenstone3/src/java/org/greenstone/gsdl3/action/Action.java@ 24227

Last change on this file since 24227 was 24227, checked in by ak19, 13 years ago

The sourcelinkfile subtype of gsf:link that was recently introduced is no longer necessary: it's been merged with the source subtype, which now uses the srclinkFile metadata instead of source and generates links to source documents with both image collections and DSpace collection.

  • Property svn:keywords set to Author Date Id Revision
File size: 7.6 KB
Line 
1package org.greenstone.gsdl3.action;
2
3import org.greenstone.gsdl3.core.ModuleInterface;
4import org.greenstone.gsdl3.util.*;
5// XML classes
6import org.w3c.dom.Node;
7import org.w3c.dom.NodeList;
8import org.w3c.dom.Element;
9import org.w3c.dom.Document;
10
11// other java stuff
12import java.io.File;
13import java.util.Vector;
14import java.util.HashMap;
15import java.util.HashSet;
16import java.util.Iterator;
17
18import org.apache.log4j.*;
19
20/** base class for Actions */
21abstract public class Action {
22
23 /** the system set up variables */
24 protected HashMap config_params = null;
25 /** container Document to create XML Nodes */
26 protected Document doc=null;
27 /** a converter class to parse XML and create Docs */
28 protected XMLConverter converter=null;
29 /** a reference to the message router that it must talk to to
30 * get info. it may be a communicator acting as a proxy, but it
31 doesn't care about that */
32 protected ModuleInterface mr=null;
33
34 static Logger logger = Logger.getLogger(org.greenstone.gsdl3.action.Action.class.getName());
35
36 public Action() {
37 this.converter = new XMLConverter();
38 this.doc = this.converter.newDOM();
39 }
40
41 /** the config variables must be set before configure is called */
42 public void setConfigParams(HashMap params) {
43 this.config_params = params;
44 }
45 /** sets the message router */
46 public void setMessageRouter(ModuleInterface m) {
47 this.mr = m;
48 }
49 public boolean configure() {
50 // does nothing yet
51 return true;
52 }
53
54 /** process takes an xml representation of cgi args
55 * and returns the page of results - may be in html/xml/other
56 * depending on the output att of the request */
57 public String process(String xml_in) {
58
59 Document message_doc = this.converter.getDOM(xml_in);
60 if (message_doc == null) {
61 logger.error("Couldn't parse request");
62 logger.error(xml_in);
63 return null;
64 }
65 Node result = process(message_doc);
66 return this.converter.getString(result);
67 }
68
69 /** the main process method - must be implemented in subclass */
70 abstract public Node process(Node xml_in);
71
72 /** tell the param class what its arguments are
73 * if an action has its own arguments, this should add them to the params
74 * object - particularly important for args that should not be saved */
75 public boolean getActionParameters(GSParams params) {
76 return true;
77 }
78
79 protected void extractMetadataNames(Element format, HashSet meta_names) {
80 //NodeList nodes = format.getElementsByTagNameNS("metadata", "http://www.greenstone.org/configformat");
81 NodeList metadata_nodes = format.getElementsByTagName("gsf:metadata");
82 for (int i=0; i<metadata_nodes.getLength(); i++) {
83 Element elem = (Element)metadata_nodes.item(i);
84 StringBuffer metadata = new StringBuffer();
85 String all = elem.getAttribute("multiple");
86 String name = elem.getAttribute("name");
87 String select = elem.getAttribute("select");
88 String sep = elem.getAttribute("separator");
89 if (all.equals("true")) {
90 metadata.append("all");
91 metadata.append(GSConstants.META_RELATION_SEP);
92 }
93 if (!select.equals("")) {
94 metadata.append(select);
95 metadata.append(GSConstants.META_RELATION_SEP);
96 }
97 if (!sep.equals("")) {
98 metadata.append(GSConstants.META_SEPARATOR_SEP);
99 metadata.append(sep);
100 metadata.append(GSConstants.META_SEPARATOR_SEP);
101 metadata.append(GSConstants.META_RELATION_SEP);
102 }
103
104 metadata.append(name);
105 meta_names.add(metadata.toString());
106 }
107
108 // The XSL tranform for
109 // gsf:link type="source"
110 // makes use of 'assocfilepath' so need to make sure it's asked for
111
112 NodeList link_nodes = format.getElementsByTagName("gsf:link");
113 for (int i=0; i<link_nodes.getLength(); i++) {
114 Element elem = (Element)link_nodes.item(i);
115 String type = elem.getAttribute("type");
116 if (type.equals("source")) {
117 meta_names.add("assocfilepath");
118 meta_names.add("srclinkFile");
119 }
120 }
121
122
123 // get all the metadata necessary for when the user has used "gsf:equivlink"
124 // so that we can build up the equivlink from the metadata components it needs
125 link_nodes = format.getElementsByTagName("gsf:equivlinkgs3");
126 if(link_nodes != null) {
127
128 String[] equivlink_metanames = {"equivDocIcon", "equivDocLink", "/equivDocLink"};
129
130 for(int i = 0; i < equivlink_metanames.length; i++) {
131 StringBuffer metadata = new StringBuffer();
132 metadata.append("all"); // this means the attr multiple = true;
133 metadata.append(GSConstants.META_RELATION_SEP);
134
135 metadata.append(GSConstants.META_SEPARATOR_SEP);
136 metadata.append(','); // attr separator = ","
137 metadata.append(GSConstants.META_SEPARATOR_SEP);
138 metadata.append(GSConstants.META_RELATION_SEP);
139
140 // the name of the metadata we're retrieving
141 metadata.append(equivlink_metanames[i]);
142 meta_names.add(metadata.toString());
143 }
144 }
145 }
146
147 protected Element createMetadataParamList(HashSet metadata_names) {
148 Element param_list = this.doc.createElement(GSXML.PARAM_ELEM+GSXML.LIST_MODIFIER);
149
150 Element param = null;
151 Iterator i = metadata_names.iterator();
152 while (i.hasNext()) {
153 String name = (String)i.next();
154 param = this.doc.createElement(GSXML.PARAM_ELEM);
155 param_list.appendChild(param);
156 param.setAttribute(GSXML.NAME_ATT, "metadata");
157 param.setAttribute(GSXML.VALUE_ATT, name);
158
159 }
160 return param_list;
161 }
162
163 protected boolean processErrorElements(Element message, Element page) {
164 NodeList error_nodes = message.getElementsByTagName(GSXML.ERROR_ELEM);
165 if (error_nodes.getLength()==0) {
166 return false;
167 }
168 Document owner = page.getOwnerDocument();
169 for (int i=0; i<error_nodes.getLength(); i++) {
170 page.appendChild(owner.importNode(error_nodes.item(i), true));
171 }
172 return true;
173 }
174
175 /**
176 * Takes an XML element and adds the metadata of the current site to it.
177 * Useful for adding the current site's metadata to a response before sending it
178 *
179 * @param element the element to add site metadata to
180 * @param lang the current language
181 * @param uid the current user id
182 */
183 protected void addSiteMetadata( Element element, String lang, String uid ) {
184 //ADD SITE METADATA
185 Element metadata_request = GSXML.createBasicRequest(this.doc, GSXML.REQUEST_TYPE_DESCRIBE, "", lang, uid);
186 //create a hashmap of params
187 HashMap subset_params = new HashMap(1);
188 subset_params.put(GSXML.SUBSET_PARAM, GSXML.METADATA_ELEM+GSXML.LIST_MODIFIER);
189 //create the element to put the params in
190 Element param_list = this.doc.createElement(GSXML.PARAM_ELEM+GSXML.LIST_MODIFIER);
191 //put them in
192 GSXML.addParametersToList( this.doc, param_list, subset_params );
193 metadata_request.appendChild(param_list);
194 //create the message
195 Element metadata_message = this.doc.createElement(GSXML.MESSAGE_ELEM);
196 metadata_message.appendChild(metadata_request);
197 //get response
198 Element metadata_response_message = (Element)this.mr.process(metadata_message);
199 //drill down to response
200 Element metadata_response = (Element)GSXML.getChildByTagName(metadata_response_message, GSXML.RESPONSE_ELEM);
201 //merge in metadata
202 GSXML.mergeMetadataLists(element,metadata_response);
203 }
204
205}
206
207
208
209
Note: See TracBrowser for help on using the repository browser.