source: trunk/gsdl/src/recpt/receptionist.h@ 5017

Last change on this file since 5017 was 5017, checked in by sjboddie, 21 years ago

Added site configuration directives site_auth and site_groups for site wide
authentication using the existing groups and password authentication structure

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 9.9 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_gdbmhome;
58
59 bool info_loaded;
60 ColInfoResponse_t info;
61};
62
63struct languageinfo_t {
64 void clear();
65 languageinfo_t () {clear();}
66
67 text_t longname;
68 text_t defaultencoding;
69};
70
71typedef map<text_t, collectioninfo_t, lttext_t> colinfo_tmap;
72typedef map<text_t, languageinfo_t, lttext_t> languageinfo_tmap;
73
74enum events_t {Disabled, CollectorEvents, AllEvents};
75enum ldformat_t {LocalTime, UTCTime, Absolute};
76
77struct recptconf {
78 text_t gsdlhome;
79 text_t gdbmhome; // will equal gsdlhome if not set
80 text_t collection; // will equal "" in 'general' mode
81 text_t collectdir; // will equal gsdlhome in 'general' mode
82 colinfo_tmap collectinfo;
83 text_t httpprefix;
84 text_t httpimg; // will equal /images if not set
85 text_t gwcgi;
86 text_tset macrofiles;
87 text_t saveconf;
88 bool usecookies; // true if we want cookies set
89 bool logcgiargs; // true if we want to log cgi arguments
90
91 ldformat_t LogDateFormat;
92
93 text_t maintainer; // email address of maintainer
94 text_t MailServer; // SMTP mail server to use when sending event messages by email
95 // defaults to mail.maintainer-domain
96 events_t LogEvents;
97 events_t EmailEvents;
98 bool EmailUserEvents;
99
100 bool site_auth; // Complete site authentication, useful to lockout site for example.
101 text_t site_group; // Similar to the auth_groups functionality, infact exactly the same
102
103 text_t HomePageType;
104 int HomePageCols;
105
106 text_tmap pageparams;
107 text_t macroprecedence;
108
109 languageinfo_tmap languages;
110
111 // encodings is just a simple mapping from encoding longnames to
112 // shortnames. It's useful for now for creating the pulldown menu of
113 // encodings on the preferences page but isn't intended to be permanent.
114 text_tmap encodings;
115
116 void clear ();
117 recptconf () {clear();}
118};
119
120class receptionist : public configurable {
121protected:
122
123 recptconf configinfo;
124
125 cgiargsinfoclass argsinfo;
126 actionmapclass actions;
127 browsermapclass browsers;
128 recptprotolistclass protocols;
129 displayclass disp;
130 convertinfoclass converters;
131 ColInfoResponse_t collectinfo;
132
133 // prepare_page sets up page parameters, sets display macros
134 // and opens the page ready for output
135 virtual void prepare_page (action *a, cgiargsclass &args,
136 outconvertclass &outconvert,
137 ostream &logout);
138
139 virtual void translate_OIDs (cgiargsclass &args, recptproto *collectproto,
140 ostream &logout);
141
142 bool get_cookie (text_t &cookie, text_tmap &fcgienv);
143 bool get_cookie (text_tmap &fcgienv);
144
145 // get the default encoding for the given language - if it fails for any
146 // reason, return ""
147 text_t get_default_encoding (const text_t &language);
148
149 virtual void define_general_macros (cgiargsclass &args, outconvertclass &outconvert,
150 ostream &logout);
151
152 bool append_logstr (const text_t &filename, const text_t &logstr,
153 ostream &logout);
154
155 virtual void configure_encoding (const text_tarray &cfgline);
156
157 public:
158 receptionist ();
159 virtual ~receptionist() {}
160
161 // add_action makes another action available to the receptionist
162 // the action remains the property of the calling code and that
163 // code should destroy the action after the recptionist has been
164 // destroyed.
165 void add_action (action *theaction);
166 actionmapclass *get_actionmap_ptr () {return &actions;}
167
168 // add_browser makes another browser available to the receptionist
169 // the browser remains the property of the calling code and that
170 // code should destroy it after the recptionist has been
171 // destroyed.
172 void add_browser (browserclass *thebrowser);
173 browsermapclass *get_browsermap_ptr () {return &browsers;}
174 void setdefaultbrowser (const text_t &browsername);
175
176 // add_protocol makes another protocol available to the receptionist
177 // without any protocols, no collections will be available. The
178 // protocols remain the property of the calling code.
179 void add_protocol (recptproto *theprotocol) {protocols.addrecptproto(theprotocol);}
180 recptprotolistclass *get_recptprotolist_ptr () {return &protocols;}
181
182 // add_converter makes another converter available to the receptionist.
183 // Converters are needed to display pages using different encodings.
184 // The converters remain the property of the calling code.
185 void add_converter (const text_t &name, inconvertclass *inconverter,
186 rzwsoutconvertclass *outconverter) {
187 converters.add_converter(name, inconverter, outconverter);}
188 convertinfoclass *get_convertinfo_ptr () {return &converters;}
189
190
191 // configure should be called for each line in the
192 // configuration files to configure the receptionist and everything
193 // it contains. The configuration should take place after everything
194 // has been added but before the initialisation.
195 void configure (const text_t &key, const text_tarray &cfgline);
196 virtual void configure (const text_t &key, const text_t &value);
197 const recptconf &get_configinfo () const {return configinfo;}
198 cgiargsinfoclass *get_cgiargsinfo_ptr () {return &argsinfo;}
199
200
201 // init should be called after all the actions, protocols, and
202 // converters have been added to the receptionist and after everything
203 // has been configured but before any pages are created.
204 // It returns true on success and false on failure. If false is
205 // returned getpage should not be called (without producing
206 // meaningless output), instead an error page should be
207 // produced by the calling code.
208 virtual bool init (ostream &logout);
209
210 // There are two ways to produce a page. You can either call parse_cgi_args,
211 // get_cgihead_info, and produce_content or you can just call parse_cgi_args and
212 // produce_cgi_page (which will be satisfactory in most cases). You might want to call
213 // parse_cgi_args, get_cgihead_info, and produce_content when you want to
214 // interface directly with a web server for which the standard header is inappropriate.
215
216 // parse_cgi_args parses cgi arguments into an argument class.
217 // This function should be called for each page request. It returns false
218 // if there was a major problem with the cgi arguments.
219 virtual bool parse_cgi_args (const text_t &argstr, cgiargsclass &args,
220 ostream &logout, text_tmap &fcgienv);
221
222 virtual bool log_cgi_args (cgiargsclass &args, ostream &logout, text_tmap &fcgienv);
223
224 text_t expandmacros (const text_t &astring, cgiargsclass &args,
225 ostream &logout);
226
227 // produce_cgi_page will call get_cgihead_info and
228 // produce_content in the appropriate way to output a cgi header and
229 // the page content (if needed). If a page could not be created it
230 // will return false
231 virtual bool produce_cgi_page (cgiargsclass &args, ostream &contentout,
232 ostream &logout, text_tmap &fcgienv);
233
234 // get_cgihead_info determines the cgi header information for
235 // a set of cgi arguments. If response contains location then
236 // response_data contains the redirect address. If reponse
237 // contains content then reponse_data contains the content-type.
238 // Note that images can now be produced by the receptionist.
239 virtual void get_cgihead_info (cgiargsclass &args, response_t &response,
240 text_t &response_data, ostream &logout,
241 text_tmap &fcgienv);
242
243 // produce the page content
244 virtual bool produce_content (cgiargsclass &args, ostream &contentout,
245 ostream &logout);
246
247 // returns the compressed argument ("e") corresponding to the argument
248 // list. This can be used to save preferences between sessions.
249 virtual text_t get_compressed_arg (cgiargsclass &args, ostream &logout);
250
251 // gets collection info from cache if found or
252 // calls collection server (and updates cache)
253 // returns NULL if there's an error
254 ColInfoResponse_t *get_collectinfo_ptr (recptproto *collectproto,
255 const text_t &collection,
256 ostream &logout);
257
258 void uncache_collection (const text_t &collection);
259
260protected:
261 // will read in all the macro files. If one is not found an
262 // error message will be written to logout and the method will
263 // return false.
264 virtual bool read_macrofiles (ostream &logout);
265
266 // check_mainargs will check all the main arguments. If a major
267 // error is found it will return false and no cgi page should
268 // be created using the arguments.
269 virtual bool check_mainargs (cgiargsclass &args, ostream &logout);
270};
271
272
273#endif
Note: See TracBrowser for help on using the repository browser.