source: trunk/gsdl/src/recpt/pageaction.cpp@ 2113

Last change on this file since 2113 was 2113, checked in by say1, 23 years ago

integrated the new mico package. updated corba to 2.3.7. fixed the c++ corba code. added error messages in the first few calls in the corba protocol. misc corba fixes

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 17.6 KB
Line 
1/**********************************************************************
2 *
3 * pageaction.cpp --
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#include "OIDtools.h"
27#include "pageaction.h"
28#include "receptionist.h"
29#include <time.h>
30
31pageaction::pageaction () {
32
33 status_disabled = true;
34 collector_disabled = true;
35 recpt = NULL;
36
37 // this action uses cgi variables "a", "p", and "hp"
38 cgiarginfo arg_ainfo;
39 arg_ainfo.shortname = "a";
40 arg_ainfo.longname = "action";
41 arg_ainfo.multiplechar = true;
42 arg_ainfo.defaultstatus = cgiarginfo::weak;
43 arg_ainfo.argdefault = "p";
44 arg_ainfo.savedarginfo = cgiarginfo::must;
45 argsinfo.addarginfo (NULL, arg_ainfo);
46
47 arg_ainfo.shortname = "p";
48 arg_ainfo.longname = "page";
49 arg_ainfo.multiplechar = true;
50 arg_ainfo.defaultstatus = cgiarginfo::weak;
51 arg_ainfo.argdefault = "home";
52 arg_ainfo.savedarginfo = cgiarginfo::must;
53 argsinfo.addarginfo (NULL, arg_ainfo);
54
55 arg_ainfo.shortname = "hp";
56 arg_ainfo.longname = "html page";
57 arg_ainfo.multiplechar = true;
58 arg_ainfo.defaultstatus = cgiarginfo::weak;
59 arg_ainfo.argdefault = "";
60 arg_ainfo.savedarginfo = cgiarginfo::mustnot;
61 argsinfo.addarginfo (NULL, arg_ainfo);
62}
63
64pageaction::~pageaction () {
65}
66
67bool pageaction::check_cgiargs (cgiargsinfoclass &/*argsinfo*/, cgiargsclass &/*args*/,
68 ostream &/*logout*/) {
69 // don't want to check anything yet.
70 return true;
71}
72
73void pageaction::get_cgihead_info (cgiargsclass &/*args*/, recptprotolistclass * /*protos*/,
74 response_t &response,text_t &response_data,
75 ostream &/*logout*/) {
76 response = content;
77 response_data = "text/html";
78}
79
80void pageaction::set_homeextra_macro (displayclass &disp, recptprotolistclass *protos,
81 ostream &logout) {
82 text_t homeextra = "<center><table width=_pagewidth_><tr valign=top>\n";
83 bool found_valid_col = false;
84
85 recptprotolistclass::iterator rprotolist_here = protos->begin();
86 recptprotolistclass::iterator rprotolist_end = protos->end();
87 while (rprotolist_here != rprotolist_end) {
88 if ((*rprotolist_here).p != NULL) {
89
90 text_tarray collist;
91 comerror_t err;
92 (*rprotolist_here).p->get_collection_list (collist, err, logout);
93 if (err == noError) {
94 text_tarray::iterator collist_here = collist.begin();
95 text_tarray::iterator collist_end = collist.end();
96
97 int count = 0;
98 bool first = true;
99 while (collist_here != collist_end) {
100 ColInfoResponse_t *cinfo = recpt->get_collectinfo_ptr ((*rprotolist_here).p, *collist_here, logout);
101
102 if (cinfo != NULL) {
103 if (cinfo->isPublic && (cinfo->buildDate > 0)) {
104
105 text_t coll_type = "&ct=";
106 if (cinfo->buildType == "mgpp") {
107 coll_type += "1";
108 }
109 else {
110 coll_type += "0";
111 }
112 found_valid_col = true;
113 FilterResponse_t response;
114 text_tset metadata;
115 metadata.insert ("collectionname");
116 metadata.insert ("iconcollection");
117 metadata.insert ("iconcollectionsmall");
118 text_t collectionname = *collist_here;
119 text_t alt = collectionname;
120
121 if (get_info ("collection", *collist_here, metadata, false,
122 (*rprotolist_here).p, response, logout)) {
123 if (!response.docInfo[0].metadata["collectionname"].values[0].empty())
124 alt = response.docInfo[0].metadata["collectionname"].values[0];
125
126 text_t iconurl;
127 iconurl.clear();
128
129 if (!response.docInfo[0].metadata["iconcollectionsmall"].values[0].empty()) {
130 iconurl = response.docInfo[0].metadata["iconcollectionsmall"].values[0];
131 } else if (!response.docInfo[0].metadata["iconcollection"].values[0].empty()) {
132 iconurl = response.docInfo[0].metadata["iconcollection"].values[0];
133 }
134
135 if (!iconurl.empty())
136 {
137 // check to see URL is local to colserver
138 text_t::iterator iconurl_head = iconurl.begin();
139 text_t iconhead = substr(iconurl_head,iconurl_head+16);
140 if (iconhead=="_httpcollection_")
141 {
142 // local and using _httpcollection_
143 text_t icontail = substr(iconurl_head+16,iconurl.end());
144 iconurl = "http://" + cinfo->httpdomain
145 + cinfo->httpprefix + "/collect/"
146 + *collist_here + "/" + icontail;
147 }
148 else if (iconurl[0]=='/')
149 {
150 // local but with full path
151 iconurl = "http://" + cinfo->httpdomain + iconurl;
152 }
153
154 collectionname
155 = "<img width=150 border=1 src=\"" + iconurl + "\" alt=\"" + alt + "\">";
156 }
157 else
158 {
159 collectionname = alt;
160 }
161
162 }
163 if ((count%3 == 0) && (!first))
164 homeextra += "</tr><tr valign=top>\n";
165
166 comerror_t err;
167 text_t optsite = "";
168 text_t site_name = (*rprotolist_here).p->get_site_name (err);
169 if (!site_name.empty()) { optsite = "site="+site_name+"&"; }
170
171 text_t link = "<a href=\"_gwcgi_?"+optsite+"a=p&p=about&c=" + *collist_here + coll_type+"\">";
172
173 if (!cinfo->receptionist.empty())
174 link = "<a href=\"" + cinfo->receptionist + "\">";
175
176 homeextra += "<td>" + link + collectionname + "</a></td>\n";
177
178 count ++;
179 first = false;
180 }
181 }
182 collist_here ++;
183 }
184
185 for (; count%3 != 0; count ++) homeextra += "<td></td>\n";
186 }
187 }
188 homeextra += "</td></tr>\n<tr>\n";
189 rprotolist_here ++;
190 }
191
192 if (!found_valid_col) {
193 homeextra += "<td>No valid (i.e. built and public) collections are available</td>\n";
194 }
195 homeextra += "</tr></table></center>\n";
196 disp.setmacro ("homeextra", "home", homeextra);
197}
198
199void pageaction::define_internal_macros (displayclass &disp, cgiargsclass &args,
200 recptprotolistclass *protos, ostream &logout) {
201
202 // define_internal_macros sets the following macros:
203
204 // _numdocs_ the number of documents in the collection
205
206 // _builddate_ the date last built
207
208 // if page is "home"
209 // _homeextra_ this is the list of available collections and collection info
210 // to be displayed on the home page
211
212
213 // if page is "preferences"
214 // _collectionoption_ collections to search/browse (if cross-collection-searching is on)
215
216 // _htmloptions_ set to _htmloptionson_ if DocumentUseHTML is set
217
218 // _PreferencesDocsFromWeb_ set to 1 if corresponding format option is set
219
220 // _languageoption_ interface languages to select from (dependant on PreferenceLanguages)
221
222 // _encodingoption_ encodings to select from
223
224 // if page is "about"
225 // _textsubcollections_ the text on which subcollections make up the collection (if
226 // cross-collection searching is being used
227
228 // _textbrowseoptions_ the 'how to find information' text in the about and help pages
229
230 // _numbrowseoptions_ the number of browsing options
231
232
233 // if page is "help"
234 // _textbrowseoptions_ the 'how to find information' text in the about and help pages
235
236 // _numbrowseoptions_ the number of browsing options
237
238 // _topicreadingdocs_ this section of the help text differs depending on what type of
239 // _textreadingdocs_ collection it is (e.g. html collection, bibliographic collection etc.)
240 // _texthelpreadingdocs_
241
242 // _textgocollector_ set to "" if collector is disabled in main.cfg
243 // _textgoadmin_ set to "" if status is disabled in main.cfg
244
245
246 if (recpt == NULL) {
247 logout << "ERROR (pageaction::define_internal_macros): This action does not contain\n"
248 << " information about any receptionists. The method set_receptionist was\n"
249 << " probably not called from the module which instantiated this action.\n";
250 return;
251 }
252
253 text_t &arg_p = args["p"];
254 text_t &arg_c = args["c"];
255 ColInfoResponse_t *cinfo = NULL;
256
257 recptproto* collectproto = protos->getrecptproto (arg_c, logout);
258 if (collectproto != NULL) {
259 cinfo = recpt->get_collectinfo_ptr (collectproto, arg_c, logout);
260
261 disp.setmacro ("numdocs", "Global", cinfo->numDocs);
262 unsigned long current_time = time(NULL);
263 unsigned long builddate = (current_time - cinfo->buildDate) / 86400;
264 disp.setmacro ("builddate", "Global", builddate);
265
266 }
267
268 if (arg_p == "home") {
269 set_homeextra_macro (disp, protos, logout);
270 if (status_disabled) disp.setmacro ("textgoadmin", "home", "");
271 if (collector_disabled) disp.setmacro ("textgocollector", "home", "");
272 }
273
274 else if (arg_p == "preferences") {
275 if (collectproto == NULL) {return;}
276 // _collectionoption_
277
278 if (args["ccs"] == "1" && collectproto != NULL && (cinfo->ccsCols.size() > 1)) {
279 text_t collectionoption = "_textcollectionoption_";
280 text_tarray::const_iterator col_here = cinfo->ccsCols.begin();
281 text_tarray::const_iterator col_end = cinfo->ccsCols.end();
282 int count = 0;
283 while (col_here != col_end) {
284 text_t colname;
285 if (*col_here == arg_c) {
286 colname = cinfo->collectionmeta["collectionname"];
287 } else {
288 ColInfoResponse_t *this_cinfo = recpt->get_collectinfo_ptr (collectproto, *col_here, logout);
289 if (this_cinfo == NULL) {col_here ++; continue;}
290 colname = this_cinfo->collectionmeta["collectionname"];
291 }
292
293 count ++;
294 collectionoption += "<input type=checkbox name=\"cc\" value=\"" +
295 *col_here + "\" onClick=\"updatecc(\'" + *col_here + "\');\"> " +
296 colname + "<br>\n";
297 col_here ++;
298 }
299
300 if (count > 1)
301 disp.setmacro ("collectionoption", "preferences", collectionoption);
302 }
303
304 // _htmloptions_
305
306 text_tmap::const_iterator it = cinfo->format.find ("DocumentUseHTML");
307 if ((it != cinfo->format.end()) && ((*it).second == "true")) {
308 disp.setmacro ("htmloptions", "preferences", "_htmloptionson_");
309
310
311 // _PreferenceDocsFromWeb_
312
313 it = cinfo->format.find ("PreferenceDocsFromWeb");
314 if ((it == cinfo->format.end()) || ((*it).second == "true"))
315 disp.setmacro ("PreferenceDocsFromWeb", "preferences", "1");
316 }
317
318 // _languageoption_
319 // Create the "interface language" selection box for the preferences page.
320 // You can use something like "format PreferenceLanguages en|fr|zn" from within
321 // a collect.cfg file to use only a subset of the available languages for
322 // any given collection. This facility is kind of ugly though and should be
323 // replaced by something better when the configuration files are tidied up (as
324 // should all the other "format Preference..." options).
325
326 text_t &arg_l = args["l"];
327 const recptconf &configinfo = recpt->get_configinfo();
328 // put languages in another map to sort them by longname
329 text_tmap languages;
330 languageinfo_tmap::const_iterator thislang = configinfo.languages.begin();
331 languageinfo_tmap::const_iterator endlang = configinfo.languages.end();
332 while (thislang != endlang) {
333 languages[(*thislang).second.longname] = (*thislang).first;
334 thislang++;
335 }
336 text_tmap::iterator tlang = languages.begin();
337 text_tmap::iterator elang = languages.end();
338
339 text_t languageoption;
340 it = cinfo->format.find ("PreferenceLanguages");
341 if ((it != cinfo->format.end()) && (!(*it).second.empty())) {
342 text_tset pref_langs;
343 splitchar ((*it).second.begin(), (*it).second.end(), '|', pref_langs);
344 if (pref_langs.size() > 1) {
345 while (tlang != elang) {
346 if (pref_langs.find((*tlang).second) != pref_langs.end()) {
347 languageoption += "<option value=\"" + (*tlang).second + "\"";
348 if ((*tlang).second == arg_l) languageoption += " selected";
349 languageoption += ">" + (*tlang).first + "\n";
350 }
351 tlang ++;
352 }
353 }
354
355 } else {
356 while (tlang != elang) {
357 languageoption += "<option value=\"" + (*tlang).second + "\"";
358 if ((*tlang).second == arg_l) languageoption += " selected";
359 languageoption += ">" + (*tlang).first + "\n";
360 tlang ++;
361 }
362 }
363 if (!languageoption.empty()) {
364 languageoption = "<select name=\"l\" onChange=\"updatel();\">\n" + languageoption;
365 languageoption += "</select>\n";
366 disp.setmacro ("languageoption", "preferences", languageoption);
367 }
368
369 // _encodingoption_
370 // create the "encoding" selection box for the preferences page
371 if (configinfo.encodings.size() > 1) {
372 text_t &arg_w = args["w"];
373 text_t encodingoption;
374 text_tmap::const_iterator thisenc = configinfo.encodings.begin();
375 text_tmap::const_iterator endenc = configinfo.encodings.end();
376 while (thisenc != endenc) {
377 encodingoption += "<option value=\"" + (*thisenc).second + "\"";
378 if ((*thisenc).second == arg_w) encodingoption += " selected";
379 encodingoption += ">" + (*thisenc).first + "\n";
380 thisenc ++;
381 }
382
383 encodingoption = "<select name=\"w\" onChange=\"updatew();\">\n" + encodingoption;
384 encodingoption += "</select>\n";
385 disp.setmacro ("encodingoption", "preferences", encodingoption);
386 }
387
388 } else if (arg_p == "about" || arg_p == "help") {
389 if (collectproto == NULL) return;
390
391 // _textbrowseoptions_ and _numbrowseoptions_
392
393 FilterResponse_t response;
394 text_tset metadata;
395 metadata.insert ("Title");
396 bool getParents = false;
397 get_children ("", args["c"], metadata, getParents, collectproto, response, logout);
398
399 disp.setmacro ("numbrowseoptions", "help", response.docInfo.size()+1);
400
401 ResultDocInfo_tarray::iterator here = response.docInfo.begin();
402 ResultDocInfo_tarray::iterator end = response.docInfo.end();
403
404 // we're assuming that we've always got a search button
405 text_t shorttext = "<ul><li>_textSearchshort_\n";
406 text_t longtext = "_textSearchlong_";
407
408 while (here != end) {
409 text_t title = (*here).metadata["Title"].values[0];
410
411 text_t stext, ltext;
412 disp.expandstring ("help", "_text" + title + "short_", stext);
413 if (stext == ("_text" + title + "short_")) {
414 shorttext += "<li>_help:textdefaultshorttext_";
415 longtext += "_help:textdefaultlongtext_";
416 } else {
417 shorttext += "<li>_help:text" + title + "short_";
418 longtext += "_help:text" + title + "long_";
419 }
420
421 here ++;
422 }
423 shorttext += "</ul>\n";
424 if (response.docInfo.size() > 1) disp.setmacro ("textbrowseoptions", "help", shorttext + longtext);
425 else disp.setmacro ("textbrowseoptions", "help", longtext);
426
427 if (arg_p == "help") {
428
429 // _topicreadingdocs_ _textreadingdocs_ _texthelpreadingdocs_
430
431 // if HTML collection there's no how to read document text
432 text_tmap::const_iterator it = cinfo->format.find ("HelpNoDocs");
433 if ((it != cinfo->format.end()) && ((*it).second == "true")) {
434 disp.setmacro ("topicreadingdocs", "help", "");
435 disp.setmacro ("texthelpreadingdocs", "help", "");
436 }
437 it = cinfo->format.find ("HelpBibDocs");
438 if ((it != cinfo->format.end()) && ((*it).second == "true")) {
439 disp.setmacro ("texthelpreadingdocs", "help", "_bibtexthelpreadingdocs_");
440 disp.setmacro ("textreadingdocs", "help", "_bibtextreadingdocs_");
441 }
442 it = cinfo->format.find ("HelpBookDocs");
443 if ((it != cinfo->format.end()) && ((*it).second == "true")) {
444 disp.setmacro ("texthelpreadingdocs", "help", "_booktexthelpreadingdocs_");
445 disp.setmacro ("textreadingdocs", "help", "_booktextreadingdocs_");
446 }
447
448 }
449 if (arg_p == "about") {
450
451 // _textsubcollections_
452 if (args["ccs"] == "1" && (cinfo->ccsCols.size() > 1)) {
453 text_t textsubcollections = "_textsubcols1_(" + text_t(cinfo->ccsCols.size()) + ")";
454 text_tarray::const_iterator here = cinfo->ccsCols.begin();
455 text_tarray::const_iterator end = cinfo->ccsCols.end();
456 bool first = true;
457 int count = 0;
458 while (here != end) {
459 if (*here == arg_c) {
460 if (!first) textsubcollections += "<br>";
461 textsubcollections += "\n" + cinfo->collectionmeta["collectionname"] + "\n";
462 } else {
463 ColInfoResponse_t *this_cinfo = recpt->get_collectinfo_ptr (collectproto, *here, logout);
464 if (this_cinfo == NULL) {here ++; continue;}
465 if (!first) textsubcollections += "<br>";
466 textsubcollections += "\n" + this_cinfo->collectionmeta["collectionname"] + "\n";
467 }
468 count ++;
469 first = false;
470 here ++;
471 }
472 textsubcollections += "_textsubcols2_";
473 if (count > 1)
474 disp.setmacro ("textsubcollections", "about", textsubcollections);
475 }
476 }
477 }
478}
479
480bool pageaction::do_action (cgiargsclass &args, recptprotolistclass * /*protos*/,
481 browsermapclass * /*browsers*/, displayclass &disp,
482 outconvertclass &outconvert, ostream &textout,
483 ostream &/*logout*/) {
484
485 text_t &arg_p = args["p"];
486
487 textout << outconvert << disp << ("_" + arg_p + ":header_\n")
488 << ("_" + arg_p + ":content_\n")
489 << ("_" + arg_p + ":footer_\n");
490
491 return true;
492}
493
494void pageaction::configure (const text_t &key, const text_tarray &cfgline) {
495 if ((key == "status") && (cfgline.size() == 1) &&
496 (cfgline[0] == "true" || cfgline[0] == "on" || cfgline[0] == "enabled")) {
497 status_disabled = false;
498 } else if ((key == "collector") && (cfgline.size() == 1) &&
499 (cfgline[0] == "true" || cfgline[0] == "on" || cfgline[0] == "enabled")) {
500 collector_disabled = false;
501 } else {
502 // call the parent class to deal with the things which
503 // are not dealt with here
504 action::configure (key, cfgline);
505 }
506}
Note: See TracBrowser for help on using the repository browser.