8a84ee559bea727512ad700a065014d06d2495fd
[shibboleth/cpp-opensaml.git] / saml / binding / ArtifactMap.h
1 /*
2  *  Copyright 2001-2009 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file saml/binding/ArtifactMap.h
19  * 
20  * Helper class for SAMLArtifact mapping and retrieval.
21  */
22
23 #ifndef __saml_artmap_h__
24 #define __saml_artmap_h__
25
26 #include <saml/base.h>
27
28 #include <string>
29 #include <xercesc/dom/DOM.hpp>
30
31 namespace xmltooling {
32     class XMLTOOL_API StorageService;
33     class XMLTOOL_API XMLObject;
34 };
35
36 namespace opensaml {
37
38     class SAML_API SAMLArtifact;
39     class SAML_DLLLOCAL ArtifactMappings;
40     
41     /**
42      * Helper class for SAMLArtifact mapping and retrieval.
43      */
44     class SAML_API ArtifactMap
45     {
46         MAKE_NONCOPYABLE(ArtifactMap);
47     public:
48         
49         /**
50          * Creates a map on top of a particular storage service context, or in-memory.
51          * 
52          * @param storage       pointer to a StorageService, or NULL to keep map in memory
53          * @param context       optional label for storage context
54          * @param artifactTTL   time to live in seconds, determines how long artifact remains valid
55          */
56         ArtifactMap(xmltooling::StorageService* storage=NULL, const char* context=NULL, unsigned int artifactTTL=180);
57
58         /**
59          * Creates a map on top of a particular storage service context, or in-memory.
60          * 
61          * @param e         root of a DOM with optional XML attributes for context and artifactTTL
62          * @param storage   pointer to a StorageService, or NULL to keep map in memory
63          */
64         ArtifactMap(const xercesc::DOMElement* e, xmltooling::StorageService* storage=NULL);
65
66         virtual ~ArtifactMap();
67         
68         /**
69          * Associates XML content with an artifact and optionally a specific relying party.
70          * Specifying no relying party means that the first attempt to resolve the artifact
71          * will succeed. The XML content cannot have a parent object, and any existing references
72          * to the content will be invalidated.
73          * 
74          * @param content       the XML content to map to an artifact
75          * @param artifact      the artifact representing the XML content
76          * @param relyingParty  entityID of the party authorized to resolve the artifact
77          * @return the generated artifact
78          */
79         virtual void storeContent(xmltooling::XMLObject* content, const SAMLArtifact* artifact, const char* relyingParty=NULL);
80         
81         /**
82          * Retrieves the XML content represented by the artifact. The identity of the
83          * relying party can be supplied, if known. If the wrong party tries to resolve
84          * an artifact, an exception will be thrown and the mapping will be removed.
85          * The caller is responsible for freeing the XML content returned.
86          * 
87          * @param artifact      the artifact representing the XML content
88          * @param relyingParty  entityID of the party trying to resolve the artifact
89          * @return the XML content
90          */
91         virtual xmltooling::XMLObject* retrieveContent(const SAMLArtifact* artifact, const char* relyingParty=NULL);
92
93         /**
94          * Retrieves the relying party to whom the artifact was issued.
95          *
96          * @param artifact  the artifact to check
97          * @return  entityID of the party to whom the artifact was issued, if any
98          */
99         virtual std::string getRelyingParty(const SAMLArtifact* artifact);
100
101     private:
102         xmltooling::StorageService* m_storage;
103         std::string m_context;
104         ArtifactMappings* m_mappings;
105         unsigned int m_artifactTTL;
106     };
107 };
108
109 #endif /* __saml_artmap_h__ */