source: main/trunk/greenstone2/runtime-src/src/recpt/receptionist.h@ 21752

Last change on this file since 21752 was 19109, checked in by kjdon, 15 years ago

httpimg changed to httpweb, and default is now httpprefix/web. not /images or /gsdl/images

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 10.3 KB
Line 
1/**********************************************************************
2 *
3 * receptionist.h -- a web interface for the gsdl
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * A component of the Greenstone digital library software
7 * from the New Zealand Digital Library Project at the
8 * University of Waikato, New Zealand.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 *********************************************************************/
25
26
27#ifndef RECEPTIONIST_H
28#define RECEPTIONIST_H
29
30#include "gsdlconf.h"
31#include "text_t.h"
32#include "cgiargs.h"
33#include "display.h"
34#include "browserclass.h"
35#include "recptproto.h"
36#include "converter.h"
37#include "cfgread.h"
38#include "action.h"
39#include "cnfgable.h"
40
41// the MACROPRECEDENCE macro is used as a default. override
42// it using something like:
43//
44// macroprecedence c,l
45//
46// in your configuration file
47#ifndef MACROPRECEDENCE
48#define MACROPRECEDENCE "c,l"
49#endif
50
51
52struct collectioninfo_t {
53 void clear ();
54 collectioninfo_t () {clear();}
55
56 text_t gsdl_gsdlhome;
57 text_t gsdl_collecthome;
58 text_t gsdl_dbhome;
59
60 bool info_loaded;
61 ColInfoResponse_t info;
62};
63
64struct languageinfo_t {
65 void clear();
66 languageinfo_t () {clear();}
67
68 text_t longname;
69 text_t defaultencoding;
70};
71
72typedef map<text_t, collectioninfo_t, lttext_t> colinfo_tmap;
73typedef map<text_t, languageinfo_t, lttext_t> languageinfo_tmap;
74
75enum events_t {Disabled, CollectorEvents, AllEvents};
76enum ldformat_t {LocalTime, UTCTime, Absolute};
77
78struct recptconf {
79 text_t gsdlhome;
80 text_t collecthome;
81 text_t dbhome; // will equal gsdlhome if not set
82 text_t collection; // will equal "" in 'general' mode
83 text_t collectdir; // will equal gsdlhome in 'general' mode
84 colinfo_tmap collectinfo;
85 text_t httpprefix;
86 text_t httpweb; // will be set to httpprefix/web if not set
87 text_t gwcgi;
88 text_tset macrofiles;
89 text_t saveconf;
90 bool usecookies; // true if we want cookies set
91 bool logcgiargs; // true if we want to log cgi arguments
92
93 ldformat_t LogDateFormat;
94
95 text_t maintainer; // email address of maintainer
96 text_t MailServer; // SMTP mail server to use when sending event messages by email
97 // defaults to mail.maintainer-domain
98 events_t LogEvents;
99 events_t EmailEvents;
100 bool EmailUserEvents;
101
102 bool site_auth; // Complete site authentication, useful to lockout site for example.
103 text_t site_group; // Similar to the auth_groups functionality, infact exactly the same
104
105 text_t HomePageType;
106 int HomePageCols;
107
108 text_tmap pageparams;
109 text_t macroprecedence;
110
111 languageinfo_tmap languages;
112
113 // encodings is just a simple mapping from encoding longnames to
114 // shortnames. It's useful for now for creating the pulldown menu of
115 // encodings on the preferences page but isn't intended to be permanent.
116 text_tmap encodings;
117
118 void clear ();
119 recptconf () {clear();}
120
121};
122
123class receptionist : public configurable {
124protected:
125
126 recptconf configinfo;
127
128 cgiargsinfoclass argsinfo;
129 actionmapclass actions;
130 browsermapclass browsers;
131 recptprotolistclass protocols;
132 displayclass disp;
133 convertinfoclass converters;
134 ColInfoResponse_t collectinfo;
135
136 // prepare_page sets up page parameters, sets display macros
137 // and opens the page ready for output
138 virtual void prepare_page (action *a, cgiargsclass &args,
139 outconvertclass &outconvert,
140 ostream &logout);
141
142 virtual void translate_OIDs (cgiargsclass &args, recptproto *collectproto,
143 ostream &logout);
144
145 bool get_cookie (text_t &cookie, text_tmap &fcgienv);
146 bool get_cookie (text_tmap &fcgienv);
147
148 // get the default encoding for the given language - if it fails for any
149 // reason, return ""
150 text_t get_default_encoding (const text_t &language);
151
152 virtual void define_general_macros (cgiargsclass &args, outconvertclass &outconvert,
153 ostream &logout);
154
155 virtual bool append_logstr (const text_t &filename, const text_t &logstr,
156 ostream &logout);
157
158 virtual void configure_encoding (const text_tarray &cfgline);
159
160 public:
161 receptionist ();
162 virtual ~receptionist() {}
163
164#ifdef _APACHE_MOD
165 bool loaded;
166#endif
167 // add_action makes another action available to the receptionist
168 // the action remains the property of the calling code and that
169 // code should destroy the action after the recptionist has been
170 // destroyed.
171 void add_action (action *theaction);
172 actionmapclass *get_actionmap_ptr () {return &actions;}
173
174 // add_browser makes another browser available to the receptionist
175 // the browser remains the property of the calling code and that
176 // code should destroy it after the recptionist has been
177 // destroyed.
178 void add_browser (browserclass *thebrowser);
179 browsermapclass *get_browsermap_ptr () {return &browsers;}
180 void setdefaultbrowser (const text_t &browsername);
181
182 // add_protocol makes another protocol available to the receptionist
183 // without any protocols, no collections will be available. The
184 // protocols remain the property of the calling code.
185 void add_protocol (recptproto *theprotocol) {protocols.addrecptproto(theprotocol);}
186 recptprotolistclass *get_recptprotolist_ptr () {return &protocols;}
187
188 // add_converter makes another converter available to the receptionist.
189 // Converters are needed to display pages using different encodings.
190 // The converters remain the property of the calling code.
191 void add_converter (const text_t &name, inconvertclass *inconverter,
192 rzwsoutconvertclass *outconverter) {
193 converters.add_converter(name, inconverter, outconverter);}
194 convertinfoclass *get_convertinfo_ptr () {return &converters;}
195
196
197 // configure should be called for each line in the
198 // configuration files to configure the receptionist and everything
199 // it contains. The configuration should take place after everything
200 // has been added but before the initialisation.
201 virtual void configure (const text_t &key, const text_tarray &cfgline);
202 virtual void configure (const text_t &key, const text_t &value);
203 const recptconf &get_configinfo () const {return configinfo;}
204 cgiargsinfoclass *get_cgiargsinfo_ptr () {return &argsinfo;}
205
206
207 // init should be called after all the actions, protocols, and
208 // converters have been added to the receptionist and after everything
209 // has been configured but before any pages are created.
210 // It returns true on success and false on failure. If false is
211 // returned getpage should not be called (without producing
212 // meaningless output), instead an error page should be
213 // produced by the calling code.
214 virtual bool init (ostream &logout);
215
216 // There are two ways to produce a page. You can either call parse_cgi_args,
217 // get_cgihead_info, and produce_content or you can just call parse_cgi_args and
218 // produce_cgi_page (which will be satisfactory in most cases). You might want to call
219 // parse_cgi_args, get_cgihead_info, and produce_content when you want to
220 // interface directly with a web server for which the standard header is inappropriate.
221
222 // parse_cgi_args parses cgi arguments into an argument class.
223 // This function should be called for each page request. It returns false
224 // if there was a major problem with the cgi arguments.
225 virtual bool parse_cgi_args (const text_t &argstr,
226 fileupload_tmap &fileuploads,
227 cgiargsclass &args,
228 ostream &logout, text_tmap &fcgienv);
229
230 virtual bool log_cgi_args (cgiargsclass &args, ostream &logout, text_tmap &fcgienv);
231
232 text_t expandmacros (const text_t &astring, cgiargsclass &args,
233 ostream &logout);
234
235 // produce_cgi_page will call get_cgihead_info and
236 // produce_content in the appropriate way to output a cgi header and
237 // the page content (if needed). If a page could not be created it
238 // will return false
239 virtual bool produce_cgi_page (cgiargsclass &args, ostream &contentout,
240 ostream &logout, text_tmap &fcgienv);
241
242 // get_cgihead_info determines the cgi header information for
243 // a set of cgi arguments. If response contains location then
244 // response_data contains the redirect address. If reponse
245 // contains content then reponse_data contains the content-type.
246 // Note that images can now be produced by the receptionist.
247 virtual void get_cgihead_info (cgiargsclass &args, response_t &response,
248 text_t &response_data, ostream &logout,
249 text_tmap &fcgienv);
250 virtual void get_cgihead_info (cgiargsclass &args, text_tmap &headers,
251 ostream &logout, text_tmap &fcgienv);
252
253 // produce the page content
254 virtual bool produce_content (cgiargsclass &args, ostream &contentout,
255 ostream &logout);
256
257 // returns the compressed argument ("e") corresponding to the argument
258 // list. This can be used to save preferences between sessions.
259 virtual text_t get_compressed_arg (cgiargsclass &args, ostream &logout);
260
261 // gets collection info from cache if found or
262 // calls collection server (and updates cache)
263 // returns NULL if there's an error
264 ColInfoResponse_t *get_collectinfo_ptr (recptproto *collectproto,
265 const text_t &collection,
266 ostream &logout);
267
268 void uncache_collection (const text_t &collection);
269
270protected:
271 // will read in all the macro files. If one is not found an
272 // error message will be written to logout and the method will
273 // return false.
274 virtual bool read_macrofiles (ostream &logout);
275
276 virtual void read_collection_macrofiles (const text_t& collection, ostream &logout);
277
278 // check_mainargs will check all the main arguments. If a major
279 // error is found it will return false and no cgi page should
280 // be created using the arguments.
281 virtual bool check_mainargs (cgiargsclass &args, ostream &logout);
282};
283
284
285#endif
Note: See TracBrowser for help on using the repository browser.