source: main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/GSParams.java@ 27824

Last change on this file since 27824 was 27719, checked in by sjm84, 11 years ago

Some depositor updates

  • Property svn:keywords set to Author Date Id Revision
File size: 6.6 KB
RevLine 
[16869]1/*
2 * GSParams.java
3 * Copyright (C) 2008 New Zealand Digital Library, http://www.nzdl.org
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
[4991]19package org.greenstone.gsdl3.util;
20
21import java.util.HashMap;
22
[26445]23/** keeps track of the servlet parameters, and their defaults */
[24861]24public class GSParams
25{
[24885]26
[25356]27 // cgi parameter names
[24861]28 public static final String ACTION = "a"; // the major type of action- eg query or browse or process
29 public static final String SUBACTION = "sa"; // subtype of action if we want different processing than the default
30 public static final String REQUEST_TYPE = "rt"; // whether the request is just to display the service form, or to actually do a request to the service
31 public static final String RESPONSE_ONLY = "ro"; // if == 1 do the request and pass back the response xml - no page formatting
32 public static final String OUTPUT = "o"; // if processing is to be done, what type of output - html/xml/other??
33 public static final String SERVICE = "s"; // the name of the service
[25300]34
[24861]35 public static final String CLUSTER = "c"; // these two are the same
36 public static final String COLLECTION = "c";
[25300]37 public static final String COLLECTION_TYPE = "ct"; // collection type - mg, mgpp, lucene etc
38
[24861]39 public static final String LANGUAGE = "l";
40 public static final String DOCUMENT = "d";
41 public static final String DOCUMENT_TYPE = "dt";
[25483]42 public static final String START_PAGE = "startPage";
[25735]43 public static final String S_START_PAGE = "s1.startPage";
[25356]44 public static final String HREF = "href"; // url. might be an external url, or a relative one that needs translating
45 public static final String RELATIVE_LINK = "rl"; // whether the href url is relative to the collection or not.
46 public static final String EXTERNAL_LINK_TYPE = "el"; // for an external link, go direct to the page or frame it in the collection
[24861]47 public static final String PROCESS_ID = "pid"; // if a request wasn't completed, this identifies the request - used when asking for a status update
[4991]48
[26084]49 public static final String HTTP_HEADER_FIELDS = "hhf";
50 public static final String QUICK_SEARCH = "qs";
[25300]51
[24861]52 // internal configure args
53 public static final String SYSTEM_SUBSET = "ss";
54 public static final String SYSTEM_CLUSTER = "sc";
55 public static final String SYSTEM_MODULE_NAME = "sn";
56 public static final String SYSTEM_MODULE_TYPE = "st";
57
58 // used for filtering out a piece of the final page
59 public static final String EXCERPT_ID = "excerptid";
60 public static final String EXCERPT_TAG = "excerpttag";
[24885]61
62 public static final String INLINE_TEMPLATE = "ilt";
63 public static final String DISPLAY_METADATA = "dmd";
[24964]64 public static final String FILE_LOCATION = "fl";
[25461]65 public static final String DOC_EDIT = "docEdit";
[25653]66 public static final String AJAX_LOAD_BYPASS = "alb";
[25356]67
[25262]68 //Administration
69 public static final String PASSWORD = "password";
70 public static final String S_PASSWORD = "s1.password";
71 public static final String S_NEW_PASSWORD = "s1.newPassword";
72 public static final String S_OLD_PASSWORD = "s1.oldPassword";
[25857]73
74 //Facets
75 public static final String S_FACETS = "s1.facets";
76 public static final String S_FACETS_QUERIES = "s1.facetQueries";
[24885]77
[25356]78 // some standard arg values
79 public static final String SYSTEM_ACTION = "s";
[25300]80
[27087]81 // rss feeds
82 public static final String RSS_ACTION = "rss";
83
[25356]84 public static final String EXTERNAL_LINK_TYPE_DIRECT = "direct";
85 public static final String EXTERNAL_LINK_TYPE_FRAMED = "frame";
[26499]86
87 public static final String DEBUG = "debug";
[25356]88
[25635]89 protected HashMap<String, Param> param_map = null;
[4991]90
[24861]91 public GSParams()
92 {
[25635]93 this.param_map = new HashMap<String, Param>(30);
[23269]94
[24861]95 // add in all the standard params
96 addParameter(ACTION, false);
97 addParameter(SUBACTION, false);
98 addParameter(REQUEST_TYPE, false);
99 addParameter(RESPONSE_ONLY, false);
[25300]100 addParameter(CLUSTER, false); // we don't want to save cluster/collection
[24861]101 addParameter(LANGUAGE, true);
102 addParameter(DOCUMENT, true);
[25937]103 addParameter(DOCUMENT_TYPE, false);
[26084]104 addParameter(QUICK_SEARCH, false);
[25735]105 addParameter(START_PAGE, false);
106 addParameter(S_START_PAGE, false);
[25300]107 // should the following two just be in doc action??
108 addParameter(HREF, false);
109 addParameter(RELATIVE_LINK, false);
[24861]110 addParameter(OUTPUT, false);
111 addParameter(SERVICE, false);
112 addParameter(PROCESS_ID, true);
113 addParameter(SYSTEM_SUBSET, false);
114 addParameter(SYSTEM_CLUSTER, false);
115 addParameter(SYSTEM_MODULE_NAME, false);
116 addParameter(SYSTEM_MODULE_TYPE, false);
[24885]117 addParameter(INLINE_TEMPLATE, false);
118 addParameter(DISPLAY_METADATA, false);
[25653]119 addParameter(AJAX_LOAD_BYPASS, false);
[25461]120 addParameter(DOC_EDIT, false);
[25262]121 addParameter(PASSWORD, false);
122 addParameter(S_PASSWORD, false);
123 addParameter(S_NEW_PASSWORD, false);
124 addParameter(S_OLD_PASSWORD, false);
[25857]125
126 addParameter(S_FACETS, false);
127 addParameter(S_FACETS_QUERIES, false);
[24861]128
[25356]129 addParameter(COLLECTION_TYPE, true);
[25300]130 addParameter(EXTERNAL_LINK_TYPE, false);
[24861]131 // filtering args must be specified each time
132 addParameter(EXCERPT_ID, false);
133 addParameter(EXCERPT_TAG, false);
[26499]134
[27022]135 addParameter(DEBUG, true);
[4991]136 }
137
[24861]138 public boolean addParameter(String name, boolean save)
139 {
140 return addParameter(name, "", save);
141 }
[4991]142
[24861]143 public boolean addParameter(String name, String default_value, boolean save)
144 {
145 if (this.param_map.containsKey(name))
146 {
147 // already there so could not add
148 return false;
149 }
[4991]150
[24861]151 this.param_map.put(name, new Param(default_value, save));
152 return true;
[4991]153 }
[24861]154
155 public boolean setParamDefault(String name, String default_value)
156 {
[25635]157 Param p = this.param_map.get(name);
[24861]158 if (p == null)
159 return false;
160 p.default_value = default_value;
161 return true;
162 }
163
164 public boolean shouldSave(String name)
165 {
[25356]166 // p. is used to store previous settings
[27719]167 if (name.startsWith("p.") || name.startsWith("md___"))
[24861]168 return false;
[25635]169 Param p = this.param_map.get(name);
[24861]170 if (p == null)
171 return true; // if things are not in here, always save.
172 return p.save;
173 }
174
175 private class Param
176 {
177
178 public String default_value = null;
179 public boolean save = true;
180
181 public Param(String default_value, boolean save)
182 {
183 this.default_value = default_value;
184 this.save = save;
185 }
186 }
[4991]187}
Note: See TracBrowser for help on using the repository browser.