summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2008-03-03 14:58:09 (UTC)
committer Michael Krelin <hacker@klever.net>2008-03-03 14:58:09 (UTC)
commit0182b9dee269f1a8f3fc0794bfdf4a143fa1b5be (patch) (unidiff)
tree0e435d48a9d2b94ff309c8fea2d416e0e14d8b2a
parent5fd5ecad8c2bd1e8846c11fa9b281f0f4ab8a4a7 (diff)
downloadlibopkele-0182b9dee269f1a8f3fc0794bfdf4a143fa1b5be.zip
libopkele-0182b9dee269f1a8f3fc0794bfdf4a143fa1b5be.tar.gz
libopkele-0182b9dee269f1a8f3fc0794bfdf4a143fa1b5be.tar.bz2
added append_to() to basic_openid_message
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/types.h1
-rw-r--r--lib/openid_message.cc9
2 files changed, 7 insertions, 3 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h
index af7fb1a..ffb9afb 100644
--- a/include/opkele/types.h
+++ b/include/opkele/types.h
@@ -84,96 +84,97 @@ namespace opkele {
84 /** 84 /**
85 * retrieve the association handle. 85 * retrieve the association handle.
86 * @return handle 86 * @return handle
87 */ 87 */
88 virtual string handle() const = 0; 88 virtual string handle() const = 0;
89 /** 89 /**
90 * retrieve the association type. 90 * retrieve the association type.
91 * @return association type 91 * @return association type
92 */ 92 */
93 virtual string assoc_type() const = 0; 93 virtual string assoc_type() const = 0;
94 /** 94 /**
95 * retrieve the association secret. 95 * retrieve the association secret.
96 * @return association secret 96 * @return association secret
97 */ 97 */
98 virtual secret_t secret() const = 0; 98 virtual secret_t secret() const = 0;
99 /** 99 /**
100 * retrieve the number of seconds the association expires in. 100 * retrieve the number of seconds the association expires in.
101 * @return seconds till expiration 101 * @return seconds till expiration
102 */ 102 */
103 virtual int expires_in() const = 0; 103 virtual int expires_in() const = 0;
104 /** 104 /**
105 * check whether the association is stateless. 105 * check whether the association is stateless.
106 * @return true if stateless 106 * @return true if stateless
107 */ 107 */
108 virtual bool stateless() const = 0; 108 virtual bool stateless() const = 0;
109 /** 109 /**
110 * check whether the association is expired. 110 * check whether the association is expired.
111 * @return true if expired 111 * @return true if expired
112 */ 112 */
113 virtual bool is_expired() const = 0; 113 virtual bool is_expired() const = 0;
114 }; 114 };
115 115
116 /** 116 /**
117 * the shared_ptr<> for association_t object type 117 * the shared_ptr<> for association_t object type
118 */ 118 */
119 typedef tr1mem::shared_ptr<association_t> assoc_t; 119 typedef tr1mem::shared_ptr<association_t> assoc_t;
120 120
121 class basic_openid_message { 121 class basic_openid_message {
122 public: 122 public:
123 typedef list<string> fields_t; 123 typedef list<string> fields_t;
124 typedef util::forward_iterator_proxy< 124 typedef util::forward_iterator_proxy<
125 string,const string&,const string* 125 string,const string&,const string*
126 > fields_iterator; 126 > fields_iterator;
127 127
128 basic_openid_message() { } 128 basic_openid_message() { }
129 virtual ~basic_openid_message() { } 129 virtual ~basic_openid_message() { }
130 basic_openid_message(const basic_openid_message& x); 130 basic_openid_message(const basic_openid_message& x);
131 void copy_to(basic_openid_message& x) const; 131 void copy_to(basic_openid_message& x) const;
132 void append_to(basic_openid_message& x) const;
132 133
133 virtual bool has_field(const string& n) const = 0; 134 virtual bool has_field(const string& n) const = 0;
134 virtual const string& get_field(const string& n) const = 0; 135 virtual const string& get_field(const string& n) const = 0;
135 136
136 virtual bool has_ns(const string& uri) const; 137 virtual bool has_ns(const string& uri) const;
137 virtual string get_ns(const string& uri) const; 138 virtual string get_ns(const string& uri) const;
138 139
139 virtual fields_iterator fields_begin() const = 0; 140 virtual fields_iterator fields_begin() const = 0;
140 virtual fields_iterator fields_end() const = 0; 141 virtual fields_iterator fields_end() const = 0;
141 142
142 virtual string append_query(const string& url,const char *pfx="openid.") const; 143 virtual string append_query(const string& url,const char *pfx="openid.") const;
143 virtual string query_string(const char *pfx="openid.") const; 144 virtual string query_string(const char *pfx="openid.") const;
144 145
145 146
146 virtual void reset_fields(); 147 virtual void reset_fields();
147 virtual void set_field(const string& n,const string& v); 148 virtual void set_field(const string& n,const string& v);
148 virtual void reset_field(const string& n); 149 virtual void reset_field(const string& n);
149 150
150 virtual void from_keyvalues(const string& kv); 151 virtual void from_keyvalues(const string& kv);
151 virtual void to_keyvalues(ostream& o) const; 152 virtual void to_keyvalues(ostream& o) const;
152 153
153 virtual void to_htmlhiddens(ostream& o,const char* pfx=0) const; 154 virtual void to_htmlhiddens(ostream& o,const char* pfx=0) const;
154 155
155 void add_to_signed(const string& fields); 156 void add_to_signed(const string& fields);
156 string find_ns(const string& uri,const char *pfx) const; 157 string find_ns(const string& uri,const char *pfx) const;
157 string allocate_ns(const string& uri,const char *pfx); 158 string allocate_ns(const string& uri,const char *pfx);
158 }; 159 };
159 160
160 class openid_message_t : public basic_openid_message, public map<string,string> { 161 class openid_message_t : public basic_openid_message, public map<string,string> {
161 public: 162 public:
162 openid_message_t() { } 163 openid_message_t() { }
163 openid_message_t(const basic_openid_message& x) 164 openid_message_t(const basic_openid_message& x)
164 : basic_openid_message(x) { } 165 : basic_openid_message(x) { }
165 166
166 void copy_to(basic_openid_message& x) const; 167 void copy_to(basic_openid_message& x) const;
167 168
168 bool has_field(const string& n) const; 169 bool has_field(const string& n) const;
169 const string& get_field(const string& n) const; 170 const string& get_field(const string& n) const;
170 virtual fields_iterator fields_begin() const; 171 virtual fields_iterator fields_begin() const;
171 virtual fields_iterator fields_end() const; 172 virtual fields_iterator fields_end() const;
172 173
173 void reset_fields(); 174 void reset_fields();
174 void set_field(const string& n,const string& v); 175 void set_field(const string& n,const string& v);
175 void reset_field(const string& n); 176 void reset_field(const string& n);
176 }; 177 };
177 178
178 /** 179 /**
179 * request/response parameters map 180 * request/response parameters map
diff --git a/lib/openid_message.cc b/lib/openid_message.cc
index 4b9179b..e244f43 100644
--- a/lib/openid_message.cc
+++ b/lib/openid_message.cc
@@ -1,78 +1,81 @@
1#include <cassert> 1#include <cassert>
2#include <opkele/types.h> 2#include <opkele/types.h>
3#include <opkele/exception.h> 3#include <opkele/exception.h>
4#include <opkele/util.h> 4#include <opkele/util.h>
5#include <opkele/debug.h> 5#include <opkele/debug.h>
6 6
7#include "config.h" 7#include "config.h"
8 8
9namespace opkele { 9namespace opkele {
10 using std::input_iterator_tag; 10 using std::input_iterator_tag;
11 using std::unary_function; 11 using std::unary_function;
12 12
13 struct __om_copier : public unary_function<const string&,void> { 13 struct __om_copier : public unary_function<const string&,void> {
14 public: 14 public:
15 const basic_openid_message& from; 15 const basic_openid_message& from;
16 basic_openid_message& to; 16 basic_openid_message& to;
17 17
18 __om_copier(basic_openid_message& t,const basic_openid_message& f) 18 __om_copier(basic_openid_message& t,const basic_openid_message& f)
19 : from(f), to(t) { 19 : from(f), to(t) { }
20 to.reset_fields();
21 }
22 20
23 result_type operator()(argument_type f) { 21 result_type operator()(argument_type f) {
24 to.set_field(f,from.get_field(f)); } 22 to.set_field(f,from.get_field(f)); }
25 }; 23 };
26 24
27 basic_openid_message::basic_openid_message(const basic_openid_message& x) { 25 basic_openid_message::basic_openid_message(const basic_openid_message& x) {
28 x.copy_to(*this); 26 x.copy_to(*this);
29 } 27 }
30 void basic_openid_message::copy_to(basic_openid_message& x) const { 28 void basic_openid_message::copy_to(basic_openid_message& x) const {
29 x.reset_fields();
30 for_each(fields_begin(),fields_end(),
31 __om_copier(x,*this) );
32 }
33 void basic_openid_message::append_to(basic_openid_message& x) const {
31 for_each(fields_begin(),fields_end(), 34 for_each(fields_begin(),fields_end(),
32 __om_copier(x,*this) ); 35 __om_copier(x,*this) );
33 } 36 }
34 37
35 struct __om_ns_finder : public unary_function<const string&,bool> { 38 struct __om_ns_finder : public unary_function<const string&,bool> {
36 public: 39 public:
37 const basic_openid_message& om; 40 const basic_openid_message& om;
38 const string& uri; 41 const string& uri;
39 42
40 __om_ns_finder(const basic_openid_message& m, 43 __om_ns_finder(const basic_openid_message& m,
41 const string& u) : om(m), uri(u) { } 44 const string& u) : om(m), uri(u) { }
42 45
43 result_type operator()(argument_type f) { 46 result_type operator()(argument_type f) {
44 return 47 return
45 (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1)) 48 (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1))
46 && om.get_field(f)==uri ; 49 && om.get_field(f)==uri ;
47 } 50 }
48 }; 51 };
49 52
50 bool basic_openid_message::has_ns(const string& uri) const { 53 bool basic_openid_message::has_ns(const string& uri) const {
51 fields_iterator ei = fields_end(); 54 fields_iterator ei = fields_end();
52 fields_iterator i = find_if(fields_begin(),fields_end(), 55 fields_iterator i = find_if(fields_begin(),fields_end(),
53 __om_ns_finder(*this,uri)); 56 __om_ns_finder(*this,uri));
54 return !(i==ei); 57 return !(i==ei);
55 } 58 }
56 string basic_openid_message::get_ns(const string& uri) const { 59 string basic_openid_message::get_ns(const string& uri) const {
57 fields_iterator ei = fields_end(); 60 fields_iterator ei = fields_end();
58 fields_iterator i = find_if(fields_begin(),fields_end(), 61 fields_iterator i = find_if(fields_begin(),fields_end(),
59 __om_ns_finder(*this,uri)); 62 __om_ns_finder(*this,uri));
60 if(i==ei) 63 if(i==ei)
61 throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri); 64 throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri);
62 return i->substr(3); 65 return i->substr(3);
63 } 66 }
64 67
65 struct __om_query_builder : public unary_function<const string&,void> { 68 struct __om_query_builder : public unary_function<const string&,void> {
66 public: 69 public:
67 const basic_openid_message& om; 70 const basic_openid_message& om;
68 bool first; 71 bool first;
69 string& rv; 72 string& rv;
70 const char *pfx; 73 const char *pfx;
71 74
72 __om_query_builder(const char *p,string& r,const basic_openid_message& m) 75 __om_query_builder(const char *p,string& r,const basic_openid_message& m)
73 : om(m), first(true), rv(r), pfx(p) { 76 : om(m), first(true), rv(r), pfx(p) {
74 for_each(om.fields_begin(),om.fields_end(),*this); 77 for_each(om.fields_begin(),om.fields_end(),*this);
75 } 78 }
76 __om_query_builder(const char *p,string& r,const basic_openid_message& m,const string& u) 79 __om_query_builder(const char *p,string& r,const basic_openid_message& m,const string& u)
77 : om(m), first(true), rv(r), pfx(p) { 80 : om(m), first(true), rv(r), pfx(p) {
78 rv = u; 81 rv = u;