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
Line 
1#include "identifyaction.h"
2
3bool identifyaction::validateAction(recptproto *protocol, oaiargs &params)
4{
5 // ----------------------------------------------------------------------------
6 // 1. Check for invalid arguments
7 // ----------------------------------------------------------------------------
8 bool invalid_argument_supplied = false;
9 text_tmap::const_iterator param_iterator = params.begin();
10 while (param_iterator != params.end())
11 {
12 // Check for arguments that aren't valid for this action
13 if (param_iterator->first != "verb")
14 {
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
19 params.erase(param_iterator->first);
20 }
21
22 param_iterator++;
23 }
24
25 // If we found an invalid argument it's an error, so don't go any further
26 if (invalid_argument_supplied)
27 {
28 this->errorType = "badArgument";
29 return false;
30 }
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 = "";
52 return true;
53}
54
55bool identifyaction::output_content(ostream &output, recptproto *protocol, oaiargs &params)
56{
57 utf8outconvertclass utf8convert;
58
59 // Get the repository name (some human-readable name for the site, or superset of collections)
60 text_t repositoryName = this->configuration->getRepositoryName();
61 // Get admin's email address (i.e. the site maintainer)
62 text_t maintainer = this->configuration->getMaintainer();
63 text_t version = (this->configuration->getOAIVersion() <= 110) ? (text_t)"1.1":(text_t)"2.0";
64
65 text_t baseURL = this->configuration->getBaseURL();
66
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";
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)
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";
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) {
85 output << utf8convert << " <" << here->first << ">" << here->second;
86 output << utf8convert << " </" << here->first << ">\n";
87 ++here;
88 }
89
90 return true;
91}
92
Note: See TracBrowser for help on using the repository browser.