source: gsdl/trunk/runtime-src/src/oaiservr/identifyaction.cpp@ 18895

Last change on this file since 18895 was 16711, checked in by mdewsnip, 16 years ago

Tidied up the validateAction() function to be consistently structured.

  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 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 // Get the repository name (some human-readable name for the site, or superset of collections)
58 text_t repositoryName = this->configuration->getCollectionConfig("", "repositoryName");
59 // Get admin's email address (i.e. the site maintainer)
60 text_t maintainer = this->configuration->getCollectionConfig("", "maintainer");
61 text_t version = (this->configuration->getOAIVersion() <= 110) ? (text_t)"1.1":(text_t)"2.0";
62
63 text_t baseURL = this->configuration->getCollectionConfig("", "baseURL");
64
65 output << " <repositoryName>" << repositoryName << "</repositoryName>" << endl;
66 output << " <baseURL>" << baseURL << "</baseURL>" << endl; // Tack on the app name
67 output << " <protocolVersion>" << version << "</protocolVersion>" << endl;
68 output << " <adminEmail>" << maintainer << "</adminEmail>" << endl;
69
70 if(version == "2.0"){
71 // earliestDatestamp *should* be the YYYY-MM-DD format of the oldest lastmodified record in the
72 // repository, but we're just setting it to be the default oldest possible date - ugly, but judged
73 // not to be worth the effort of trolling through all the lastmodified dates (by others with more
74 // say than me)
75 output << " <earliestDatestamp>1970-01-01</earliestDatestamp>\n"
76 << " <deletedRecord>no</deletedRecord>\n"
77 << " <granularity>YYYY-MM-DD</granularity>\n";
78 }
79 // list all configuration information
80 text_tmap::iterator here = this->configuration->getInformation()->begin();
81 text_tmap::iterator end = this->configuration->getInformation()->end();
82 while (here != end) {
83 output << " <" << here->first << ">" << here->second;
84 output << " </" << here->first << ">" << endl;
85 ++here;
86 }
87
88 return true;
89}
90
Note: See TracBrowser for help on using the repository browser.