Change license header, remove stale pkg files.
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / impl / SAMLArtifactType0001.cpp
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 /**
22  * SAMLArtifactType0001.cpp
23  * 
24  * Type 0x0001 SAML 1.x artifact class.
25  */
26
27 #include "internal.h"
28 #include "saml1/binding/SAMLArtifactType0001.h"
29
30 using namespace opensaml::saml1p;
31 using namespace opensaml;
32 using namespace xmltooling;
33 using namespace std;
34
35 namespace opensaml {
36     namespace saml1p {
37         SAMLArtifact* SAML_DLLLOCAL SAMLArtifactType0001Factory(const char* const & s)
38         {
39             return new SAMLArtifactType0001(s);
40         }
41     }
42 };
43
44 const unsigned int SAMLArtifactType0001::SOURCEID_LENGTH = 20;
45 const unsigned int SAMLArtifactType0001::HANDLE_LENGTH = 20;
46
47 SAMLArtifactType0001::SAMLArtifactType0001(const SAMLArtifactType0001& src) : SAMLArtifact(src)
48 {
49 }
50
51 SAMLArtifactType0001::SAMLArtifactType0001(const char* s) : SAMLArtifact(s)
52 {
53     // The base class does the work, we just do the checking.
54     if (m_raw.size() != TYPECODE_LENGTH + SOURCEID_LENGTH + HANDLE_LENGTH)
55         throw ArtifactException("Type 0x0001 artifact is of incorrect length.");
56     else if (m_raw[0] != 0x0 || m_raw[1] != 0x1)
57         throw ArtifactException(
58             string("Type 0x0001 artifact given an artifact of invalid type (") + toHex(getTypeCode()) + ")."
59             );
60 }
61
62 SAMLArtifactType0001::SAMLArtifactType0001(const string& sourceid)
63 {
64     if (sourceid.size()!=SOURCEID_LENGTH)
65         throw ArtifactException("Type 0x0001 artifact sourceid of incorrect length.");
66     m_raw+=(char)0x0;
67     m_raw+=(char)0x1;
68     m_raw.append(sourceid,0,SOURCEID_LENGTH);
69     char buf[HANDLE_LENGTH];
70     SAMLConfig::getConfig().generateRandomBytes(buf,HANDLE_LENGTH);
71     for (int i=0; i<HANDLE_LENGTH; i++)
72         m_raw+=buf[i];
73 }
74
75 SAMLArtifactType0001::SAMLArtifactType0001(const string& sourceid, const string& handle)
76 {
77     if (sourceid.size()!=SOURCEID_LENGTH)
78         throw ArtifactException("Type 0x0001 artifact sourceid of incorrect length.");
79     if (handle.size()!=HANDLE_LENGTH)
80         throw ArtifactException("Type 0x0001 artifact assertion handle of incorrect length.");
81     m_raw+=(char)0x0;
82     m_raw+=(char)0x1;
83     m_raw.append(sourceid,0,SOURCEID_LENGTH);
84     m_raw.append(handle,0,HANDLE_LENGTH);
85 }
86
87 SAMLArtifactType0001::~SAMLArtifactType0001()
88 {
89 }
90
91 SAMLArtifactType0001* SAMLArtifactType0001::clone() const
92 {
93     return new SAMLArtifactType0001(*this);
94 }
95
96 string SAMLArtifactType0001::getSource() const
97 {
98     return toHex(getSourceID());
99 }
100
101 string SAMLArtifactType0001::getSourceID() const
102 {
103     return m_raw.substr(TYPECODE_LENGTH,SOURCEID_LENGTH);                   // bytes 3-22
104 }
105
106 string SAMLArtifactType0001::getMessageHandle() const
107 {
108     return m_raw.substr(TYPECODE_LENGTH+SOURCEID_LENGTH, HANDLE_LENGTH);    // bytes 23-42
109 }