source: main/trunk/greenstone2/runtime-src/src/oaiservr/identifyaction.cpp@ 22213

Last change on this file since 22213 was 22213, checked in by kjdon, 14 years ago

changes to methods of oaiconfig

  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
RevLine 
[15844]1#include "identifyaction.h"
[8182]2
[15844]3bool identifyaction::validateAction(recptproto *protocol, oaiargs &params)
[8182]4{
[16711]5 // ----------------------------------------------------------------------------
6 // 1. Check for invalid arguments
7 // ----------------------------------------------------------------------------
8 bool invalid_argument_supplied = false;
[15198]9 text_tmap::const_iterator param_iterator = params.begin();
10 while (param_iterator != params.end())
11 {
[16711]12 // Check for arguments that aren't valid for this action
[15198]13 if (param_iterator->first != "verb")
14 {
[16711]15 // We've found an invalid argument
16 invalid_argument_supplied = true;
17
18 // Delete the invalid argument from the list so it doesn't end up in the <request> tag that is returned
[15198]19 params.erase(param_iterator->first);
20 }
21
22 param_iterator++;
23 }
[16711]24
25 // If we found an invalid argument it's an error, so don't go any further
26 if (invalid_argument_supplied)
27 {
[8182]28 this->errorType = "badArgument";
29 return false;
30 }
[16711]31
32 // ----------------------------------------------------------------------------
33 // 2. Handle any exclusive arguments
34 // ----------------------------------------------------------------------------
35
36 // None!
37
38 // ----------------------------------------------------------------------------
39 // 3. Handle any required arguments
40 // ----------------------------------------------------------------------------
41
42 // None!
43
44 // ----------------------------------------------------------------------------
45 // 4. Check any remaining arguments
46 // ----------------------------------------------------------------------------
47
48 // None!
49
50 // If we've reached here everything must be fine
51 this->errorType = "";
[8182]52 return true;
53}
54
[15844]55bool identifyaction::output_content(ostream &output, recptproto *protocol, oaiargs &params)
[8182]56{
[20707]57 utf8outconvertclass utf8convert;
58
[8182]59 // Get the repository name (some human-readable name for the site, or superset of collections)
[22213]60 text_t repositoryName = this->configuration->getRepositoryName();
[8182]61 // Get admin's email address (i.e. the site maintainer)
[22213]62 text_t maintainer = this->configuration->getMaintainer();
[8182]63 text_t version = (this->configuration->getOAIVersion() <= 110) ? (text_t)"1.1":(text_t)"2.0";
64
[22213]65 text_t baseURL = this->configuration->getBaseURL();
[8182]66
[20707]67 output << utf8convert << " <repositoryName>" << repositoryName << "</repositoryName>\n";
68 output << utf8convert << " <baseURL>" << baseURL << "</baseURL>\n";
69 output << utf8convert << " <protocolVersion>" << version << "</protocolVersion>\n";
70 output << utf8convert << " <adminEmail>" << maintainer << "</adminEmail>\n";
[8182]71
72 if(version == "2.0"){
73 // earliestDatestamp *should* be the YYYY-MM-DD format of the oldest lastmodified record in the
74 // repository, but we're just setting it to be the default oldest possible date - ugly, but judged
75 // not to be worth the effort of trolling through all the lastmodified dates (by others with more
76 // say than me)
[20707]77 output << utf8convert << " <earliestDatestamp>1970-01-01</earliestDatestamp>\n";
78 output << utf8convert << " <deletedRecord>no</deletedRecord>\n";
79 output << utf8convert << " <granularity>YYYY-MM-DD</granularity>\n";
[8182]80 }
81 // list all configuration information
82 text_tmap::iterator here = this->configuration->getInformation()->begin();
83 text_tmap::iterator end = this->configuration->getInformation()->end();
84 while (here != end) {
[20707]85 output << utf8convert << " <" << here->first << ">" << here->second;
86 output << utf8convert << " </" << here->first << ">\n";
[9608]87 ++here;
[8182]88 }
89
90 return true;
91}
92
Note: See TracBrowser for help on using the repository browser.