author | Michael Krelin <hacker@klever.net> | 2008-03-02 20:57:57 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-03-02 20:57:57 (UTC) |
commit | f6482fb9003e4953f838ba4ef2c110190355622f (patch) (unidiff) | |
tree | 978ff6a8647c008cb3726c604b0749edb622171c | |
parent | da3f84153be2a93da7ffc49af33b29b9725fac38 (diff) | |
download | libopkele-f6482fb9003e4953f838ba4ef2c110190355622f.zip libopkele-f6482fb9003e4953f838ba4ef2c110190355622f.tar.gz libopkele-f6482fb9003e4953f838ba4ef2c110190355622f.tar.bz2 |
reinstated prefix handling in query building
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/types.h | 4 | ||||
-rw-r--r-- | lib/openid_message.cc | 20 |
2 files changed, 13 insertions, 11 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h index 1fab869..af7fb1a 100644 --- a/include/opkele/types.h +++ b/include/opkele/types.h | |||
@@ -1,233 +1,233 @@ | |||
1 | #ifndef __OPKELE_TYPES_H | 1 | #ifndef __OPKELE_TYPES_H |
2 | #define __OPKELE_TYPES_H | 2 | #define __OPKELE_TYPES_H |
3 | 3 | ||
4 | /** | 4 | /** |
5 | * @file | 5 | * @file |
6 | * @brief various types declarations | 6 | * @brief various types declarations |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <cstring> | 9 | #include <cstring> |
10 | #include <ostream> | 10 | #include <ostream> |
11 | #include <vector> | 11 | #include <vector> |
12 | #include <string> | 12 | #include <string> |
13 | #include <map> | 13 | #include <map> |
14 | #include <set> | 14 | #include <set> |
15 | #include <list> | 15 | #include <list> |
16 | #include <opkele/iterator.h> | 16 | #include <opkele/iterator.h> |
17 | #include <opkele/tr1-mem.h> | 17 | #include <opkele/tr1-mem.h> |
18 | 18 | ||
19 | namespace opkele { | 19 | namespace opkele { |
20 | using std::vector; | 20 | using std::vector; |
21 | using std::string; | 21 | using std::string; |
22 | using std::map; | 22 | using std::map; |
23 | using std::ostream; | 23 | using std::ostream; |
24 | using std::multimap; | 24 | using std::multimap; |
25 | using std::set; | 25 | using std::set; |
26 | using std::list; | 26 | using std::list; |
27 | using std::iterator; | 27 | using std::iterator; |
28 | using std::forward_iterator_tag; | 28 | using std::forward_iterator_tag; |
29 | 29 | ||
30 | /** | 30 | /** |
31 | * the OpenID operation mode | 31 | * the OpenID operation mode |
32 | */ | 32 | */ |
33 | typedef enum _mode_t { | 33 | typedef enum _mode_t { |
34 | mode_unknown = 0, | 34 | mode_unknown = 0, |
35 | mode_associate, | 35 | mode_associate, |
36 | mode_checkid_immediate, | 36 | mode_checkid_immediate, |
37 | mode_checkid_setup, | 37 | mode_checkid_setup, |
38 | mode_check_association | 38 | mode_check_association |
39 | } mode_t; | 39 | } mode_t; |
40 | 40 | ||
41 | /** | 41 | /** |
42 | * the association secret container | 42 | * the association secret container |
43 | */ | 43 | */ |
44 | class secret_t : public vector<unsigned char> { | 44 | class secret_t : public vector<unsigned char> { |
45 | public: | 45 | public: |
46 | 46 | ||
47 | /** | 47 | /** |
48 | * xor the secret and hmac together and encode, using base64 | 48 | * xor the secret and hmac together and encode, using base64 |
49 | * @param key_d pointer to the message digest | 49 | * @param key_d pointer to the message digest |
50 | * @param rv reference to the return value | 50 | * @param rv reference to the return value |
51 | */ | 51 | */ |
52 | void enxor_to_base64(const unsigned char *key_d,string& rv) const; | 52 | void enxor_to_base64(const unsigned char *key_d,string& rv) const; |
53 | /** | 53 | /** |
54 | * decode base64-encoded secret and xor it with the message digest | 54 | * decode base64-encoded secret and xor it with the message digest |
55 | * @param key_d pointer to the message digest | 55 | * @param key_d pointer to the message digest |
56 | * @param b64 base64-encoded secret value | 56 | * @param b64 base64-encoded secret value |
57 | */ | 57 | */ |
58 | void enxor_from_base64(const unsigned char *key_d,const string& b64); | 58 | void enxor_from_base64(const unsigned char *key_d,const string& b64); |
59 | /** | 59 | /** |
60 | * plainly encode to base64 representation | 60 | * plainly encode to base64 representation |
61 | * @param rv reference to the return value | 61 | * @param rv reference to the return value |
62 | */ | 62 | */ |
63 | void to_base64(string& rv) const; | 63 | void to_base64(string& rv) const; |
64 | /** | 64 | /** |
65 | * decode cleartext secret from base64 | 65 | * decode cleartext secret from base64 |
66 | * @param b64 base64-encoded representation of the secret value | 66 | * @param b64 base64-encoded representation of the secret value |
67 | */ | 67 | */ |
68 | void from_base64(const string& b64); | 68 | void from_base64(const string& b64); |
69 | }; | 69 | }; |
70 | 70 | ||
71 | /** | 71 | /** |
72 | * Interface to the association. | 72 | * Interface to the association. |
73 | */ | 73 | */ |
74 | class association_t { | 74 | class association_t { |
75 | public: | 75 | public: |
76 | 76 | ||
77 | virtual ~association_t() { } | 77 | virtual ~association_t() { } |
78 | 78 | ||
79 | /** | 79 | /** |
80 | * retrieve the server with which association was established. | 80 | * retrieve the server with which association was established. |
81 | * @return server name | 81 | * @return server name |
82 | */ | 82 | */ |
83 | virtual string server() const = 0; | 83 | virtual string server() const = 0; |
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 | 132 | ||
133 | virtual bool has_field(const string& n) const = 0; | 133 | virtual bool has_field(const string& n) const = 0; |
134 | virtual const string& get_field(const string& n) const = 0; | 134 | virtual const string& get_field(const string& n) const = 0; |
135 | 135 | ||
136 | virtual bool has_ns(const string& uri) const; | 136 | virtual bool has_ns(const string& uri) const; |
137 | virtual string get_ns(const string& uri) const; | 137 | virtual string get_ns(const string& uri) const; |
138 | 138 | ||
139 | virtual fields_iterator fields_begin() const = 0; | 139 | virtual fields_iterator fields_begin() const = 0; |
140 | virtual fields_iterator fields_end() const = 0; | 140 | virtual fields_iterator fields_end() const = 0; |
141 | 141 | ||
142 | virtual string append_query(const string& url) const; | 142 | virtual string append_query(const string& url,const char *pfx="openid.") const; |
143 | virtual string query_string() const; | 143 | virtual string query_string(const char *pfx="openid.") const; |
144 | 144 | ||
145 | 145 | ||
146 | virtual void reset_fields(); | 146 | virtual void reset_fields(); |
147 | virtual void set_field(const string& n,const string& v); | 147 | virtual void set_field(const string& n,const string& v); |
148 | virtual void reset_field(const string& n); | 148 | virtual void reset_field(const string& n); |
149 | 149 | ||
150 | virtual void from_keyvalues(const string& kv); | 150 | virtual void from_keyvalues(const string& kv); |
151 | virtual void to_keyvalues(ostream& o) const; | 151 | virtual void to_keyvalues(ostream& o) const; |
152 | 152 | ||
153 | virtual void to_htmlhiddens(ostream& o,const char* pfx=0) const; | 153 | virtual void to_htmlhiddens(ostream& o,const char* pfx=0) const; |
154 | 154 | ||
155 | void add_to_signed(const string& fields); | 155 | void add_to_signed(const string& fields); |
156 | string find_ns(const string& uri,const char *pfx) const; | 156 | string find_ns(const string& uri,const char *pfx) const; |
157 | string allocate_ns(const string& uri,const char *pfx); | 157 | string allocate_ns(const string& uri,const char *pfx); |
158 | }; | 158 | }; |
159 | 159 | ||
160 | class openid_message_t : public basic_openid_message, public map<string,string> { | 160 | class openid_message_t : public basic_openid_message, public map<string,string> { |
161 | public: | 161 | public: |
162 | openid_message_t() { } | 162 | openid_message_t() { } |
163 | openid_message_t(const basic_openid_message& x) | 163 | openid_message_t(const basic_openid_message& x) |
164 | : basic_openid_message(x) { } | 164 | : basic_openid_message(x) { } |
165 | 165 | ||
166 | void copy_to(basic_openid_message& x) const; | 166 | void copy_to(basic_openid_message& x) const; |
167 | 167 | ||
168 | bool has_field(const string& n) const; | 168 | bool has_field(const string& n) const; |
169 | const string& get_field(const string& n) const; | 169 | const string& get_field(const string& n) const; |
170 | virtual fields_iterator fields_begin() const; | 170 | virtual fields_iterator fields_begin() const; |
171 | virtual fields_iterator fields_end() const; | 171 | virtual fields_iterator fields_end() const; |
172 | 172 | ||
173 | void reset_fields(); | 173 | void reset_fields(); |
174 | void set_field(const string& n,const string& v); | 174 | void set_field(const string& n,const string& v); |
175 | void reset_field(const string& n); | 175 | void reset_field(const string& n); |
176 | }; | 176 | }; |
177 | 177 | ||
178 | /** | 178 | /** |
179 | * request/response parameters map | 179 | * request/response parameters map |
180 | */ | 180 | */ |
181 | class params_t : public openid_message_t { | 181 | class params_t : public openid_message_t { |
182 | public: | 182 | public: |
183 | 183 | ||
184 | /** | 184 | /** |
185 | * check whether the parameter is present. | 185 | * check whether the parameter is present. |
186 | * @param n the parameter name | 186 | * @param n the parameter name |
187 | * @return true if yes | 187 | * @return true if yes |
188 | */ | 188 | */ |
189 | bool has_param(const string& n) const { | 189 | bool has_param(const string& n) const { |
190 | return has_field(n); } | 190 | return has_field(n); } |
191 | /** | 191 | /** |
192 | * retrieve the parameter (const version) | 192 | * retrieve the parameter (const version) |
193 | * @param n the parameter name | 193 | * @param n the parameter name |
194 | * @return the parameter value | 194 | * @return the parameter value |
195 | * @throw failed_lookup if there is no such parameter | 195 | * @throw failed_lookup if there is no such parameter |
196 | */ | 196 | */ |
197 | const string& get_param(const string& n) const { | 197 | const string& get_param(const string& n) const { |
198 | return get_field(n); } | 198 | return get_field(n); } |
199 | 199 | ||
200 | /** | 200 | /** |
201 | * parse the OpenID key/value data. | 201 | * parse the OpenID key/value data. |
202 | * @param kv the OpenID key/value data | 202 | * @param kv the OpenID key/value data |
203 | */ | 203 | */ |
204 | void parse_keyvalues(const string& kv) { | 204 | void parse_keyvalues(const string& kv) { |
205 | from_keyvalues(kv); } | 205 | from_keyvalues(kv); } |
206 | 206 | ||
207 | string append_query(const string& url,const char *prefix="openid.") const; | 207 | string append_query(const string& url,const char *prefix="openid.") const; |
208 | 208 | ||
209 | }; | 209 | }; |
210 | 210 | ||
211 | struct openid_endpoint_t { | 211 | struct openid_endpoint_t { |
212 | string uri; | 212 | string uri; |
213 | string claimed_id; | 213 | string claimed_id; |
214 | string local_id; | 214 | string local_id; |
215 | 215 | ||
216 | openid_endpoint_t() { } | 216 | openid_endpoint_t() { } |
217 | openid_endpoint_t(const string& u,const string& cid,const string& lid) | 217 | openid_endpoint_t(const string& u,const string& cid,const string& lid) |
218 | : uri(u), claimed_id(cid), local_id(lid) { } | 218 | : uri(u), claimed_id(cid), local_id(lid) { } |
219 | 219 | ||
220 | bool operator==(const openid_endpoint_t& x) const { | 220 | bool operator==(const openid_endpoint_t& x) const { |
221 | return uri==x.uri && local_id==x.local_id; } | 221 | return uri==x.uri && local_id==x.local_id; } |
222 | bool operator<(const openid_endpoint_t& x) const { | 222 | bool operator<(const openid_endpoint_t& x) const { |
223 | int c; | 223 | int c; |
224 | return (c=strcmp(uri.c_str(),x.uri.c_str())) | 224 | return (c=strcmp(uri.c_str(),x.uri.c_str())) |
225 | ? (c<0) : (strcmp(local_id.c_str(),x.local_id.c_str())<0); } | 225 | ? (c<0) : (strcmp(local_id.c_str(),x.local_id.c_str())<0); } |
226 | }; | 226 | }; |
227 | 227 | ||
228 | typedef util::output_iterator_proxy<openid_endpoint_t> | 228 | typedef util::output_iterator_proxy<openid_endpoint_t> |
229 | openid_endpoint_output_iterator; | 229 | openid_endpoint_output_iterator; |
230 | 230 | ||
231 | } | 231 | } |
232 | 232 | ||
233 | #endif /* __OPKELE_TYPES_H */ | 233 | #endif /* __OPKELE_TYPES_H */ |
diff --git a/lib/openid_message.cc b/lib/openid_message.cc index 75e59b3..4b9179b 100644 --- a/lib/openid_message.cc +++ b/lib/openid_message.cc | |||
@@ -1,271 +1,273 @@ | |||
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 | ||
9 | namespace opkele { | 9 | namespace 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(); | 20 | to.reset_fields(); |
21 | } | 21 | } |
22 | 22 | ||
23 | result_type operator()(argument_type f) { | 23 | result_type operator()(argument_type f) { |
24 | to.set_field(f,from.get_field(f)); } | 24 | to.set_field(f,from.get_field(f)); } |
25 | }; | 25 | }; |
26 | 26 | ||
27 | basic_openid_message::basic_openid_message(const basic_openid_message& x) { | 27 | basic_openid_message::basic_openid_message(const basic_openid_message& x) { |
28 | x.copy_to(*this); | 28 | x.copy_to(*this); |
29 | } | 29 | } |
30 | void basic_openid_message::copy_to(basic_openid_message& x) const { | 30 | void basic_openid_message::copy_to(basic_openid_message& x) const { |
31 | for_each(fields_begin(),fields_end(), | 31 | for_each(fields_begin(),fields_end(), |
32 | __om_copier(x,*this) ); | 32 | __om_copier(x,*this) ); |
33 | } | 33 | } |
34 | 34 | ||
35 | struct __om_ns_finder : public unary_function<const string&,bool> { | 35 | struct __om_ns_finder : public unary_function<const string&,bool> { |
36 | public: | 36 | public: |
37 | const basic_openid_message& om; | 37 | const basic_openid_message& om; |
38 | const string& uri; | 38 | const string& uri; |
39 | 39 | ||
40 | __om_ns_finder(const basic_openid_message& m, | 40 | __om_ns_finder(const basic_openid_message& m, |
41 | const string& u) : om(m), uri(u) { } | 41 | const string& u) : om(m), uri(u) { } |
42 | 42 | ||
43 | result_type operator()(argument_type f) { | 43 | result_type operator()(argument_type f) { |
44 | return | 44 | return |
45 | (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1)) | 45 | (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1)) |
46 | && om.get_field(f)==uri ; | 46 | && om.get_field(f)==uri ; |
47 | } | 47 | } |
48 | }; | 48 | }; |
49 | 49 | ||
50 | bool basic_openid_message::has_ns(const string& uri) const { | 50 | bool basic_openid_message::has_ns(const string& uri) const { |
51 | fields_iterator ei = fields_end(); | 51 | fields_iterator ei = fields_end(); |
52 | fields_iterator i = find_if(fields_begin(),fields_end(), | 52 | fields_iterator i = find_if(fields_begin(),fields_end(), |
53 | __om_ns_finder(*this,uri)); | 53 | __om_ns_finder(*this,uri)); |
54 | return !(i==ei); | 54 | return !(i==ei); |
55 | } | 55 | } |
56 | string basic_openid_message::get_ns(const string& uri) const { | 56 | string basic_openid_message::get_ns(const string& uri) const { |
57 | fields_iterator ei = fields_end(); | 57 | fields_iterator ei = fields_end(); |
58 | fields_iterator i = find_if(fields_begin(),fields_end(), | 58 | fields_iterator i = find_if(fields_begin(),fields_end(), |
59 | __om_ns_finder(*this,uri)); | 59 | __om_ns_finder(*this,uri)); |
60 | if(i==ei) | 60 | if(i==ei) |
61 | throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri); | 61 | throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri); |
62 | return i->substr(3); | 62 | return i->substr(3); |
63 | } | 63 | } |
64 | 64 | ||
65 | struct __om_query_builder : public unary_function<const string&,void> { | 65 | struct __om_query_builder : public unary_function<const string&,void> { |
66 | public: | 66 | public: |
67 | const basic_openid_message& om; | 67 | const basic_openid_message& om; |
68 | bool first; | 68 | bool first; |
69 | string& rv; | 69 | string& rv; |
70 | const char *pfx; | ||
70 | 71 | ||
71 | __om_query_builder(string& r,const basic_openid_message& m) | 72 | __om_query_builder(const char *p,string& r,const basic_openid_message& m) |
72 | : om(m), first(true), rv(r) { | 73 | : om(m), first(true), rv(r), pfx(p) { |
73 | for_each(om.fields_begin(),om.fields_end(),*this); | 74 | for_each(om.fields_begin(),om.fields_end(),*this); |
74 | } | 75 | } |
75 | __om_query_builder(string& r,const basic_openid_message& m,const string& u) | 76 | __om_query_builder(const char *p,string& r,const basic_openid_message& m,const string& u) |
76 | : om(m), first(true), rv(r) { | 77 | : om(m), first(true), rv(r), pfx(p) { |
77 | rv = u; | 78 | rv = u; |
78 | if(rv.find('?')==string::npos) | 79 | if(rv.find('?')==string::npos) |
79 | rv += '?'; | 80 | rv += '?'; |
80 | else | 81 | else |
81 | first = false; | 82 | first = false; |
82 | for_each(om.fields_begin(),om.fields_end(),*this); | 83 | for_each(om.fields_begin(),om.fields_end(),*this); |
83 | } | 84 | } |
84 | 85 | ||
85 | result_type operator()(argument_type f) { | 86 | result_type operator()(argument_type f) { |
86 | if(first) | 87 | if(first) |
87 | first = false; | 88 | first = false; |
88 | else | 89 | else |
89 | rv += '&'; | 90 | rv += '&'; |
90 | rv += "openid."; rv+= f; | 91 | if(pfx) rv += pfx; |
92 | rv+= f; | ||
91 | rv += '='; | 93 | rv += '='; |
92 | rv += util::url_encode(om.get_field(f)); | 94 | rv += util::url_encode(om.get_field(f)); |
93 | } | 95 | } |
94 | }; | 96 | }; |
95 | 97 | ||
96 | string basic_openid_message::append_query(const string& url) const { | 98 | string basic_openid_message::append_query(const string& url,const char *pfx) const { |
97 | string rv; | 99 | string rv; |
98 | return __om_query_builder(rv,*this,url).rv; | 100 | return __om_query_builder(pfx,rv,*this,url).rv; |
99 | } | 101 | } |
100 | string basic_openid_message::query_string() const { | 102 | string basic_openid_message::query_string(const char *pfx) const { |
101 | string rv; | 103 | string rv; |
102 | return __om_query_builder(rv,*this).rv; | 104 | return __om_query_builder(pfx,rv,*this).rv; |
103 | } | 105 | } |
104 | 106 | ||
105 | void basic_openid_message::reset_fields() { | 107 | void basic_openid_message::reset_fields() { |
106 | throw not_implemented(OPKELE_CP_ "reset_fields() not implemented"); | 108 | throw not_implemented(OPKELE_CP_ "reset_fields() not implemented"); |
107 | } | 109 | } |
108 | void basic_openid_message::set_field(const string&,const string&) { | 110 | void basic_openid_message::set_field(const string&,const string&) { |
109 | throw not_implemented(OPKELE_CP_ "set_field() not implemented"); | 111 | throw not_implemented(OPKELE_CP_ "set_field() not implemented"); |
110 | } | 112 | } |
111 | void basic_openid_message::reset_field(const string&) { | 113 | void basic_openid_message::reset_field(const string&) { |
112 | throw not_implemented(OPKELE_CP_ "reset_field() not implemented"); | 114 | throw not_implemented(OPKELE_CP_ "reset_field() not implemented"); |
113 | } | 115 | } |
114 | 116 | ||
115 | void basic_openid_message::from_keyvalues(const string& kv) { | 117 | void basic_openid_message::from_keyvalues(const string& kv) { |
116 | reset_fields(); | 118 | reset_fields(); |
117 | string::size_type p = 0; | 119 | string::size_type p = 0; |
118 | while(true) { | 120 | while(true) { |
119 | string::size_type co = kv.find(':',p); | 121 | string::size_type co = kv.find(':',p); |
120 | if(co==string::npos) | 122 | if(co==string::npos) |
121 | break; | 123 | break; |
122 | #ifndef POSTELS_LAW | 124 | #ifndef POSTELS_LAW |
123 | string::size_type nl = kv.find('\n',co+1); | 125 | string::size_type nl = kv.find('\n',co+1); |
124 | if(nl==string::npos) | 126 | if(nl==string::npos) |
125 | throw bad_input(OPKELE_CP_ "malformed input"); | 127 | throw bad_input(OPKELE_CP_ "malformed input"); |
126 | if(nl>co) | 128 | if(nl>co) |
127 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1,nl-co-1))); | 129 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1,nl-co-1))); |
128 | p = nl+1; | 130 | p = nl+1; |
129 | #else /* POSTELS_LAW */ | 131 | #else /* POSTELS_LAW */ |
130 | string::size_type lb = kv.find_first_of("\r\n",co+1); | 132 | string::size_type lb = kv.find_first_of("\r\n",co+1); |
131 | if(lb==string::npos) { | 133 | if(lb==string::npos) { |
132 | set_field(kv.substr(p,co-p),kv.substr(co+1)); | 134 | set_field(kv.substr(p,co-p),kv.substr(co+1)); |
133 | break; | 135 | break; |
134 | } | 136 | } |
135 | if(lb>co) | 137 | if(lb>co) |
136 | set_field(kv.substr(p,co-p),kv.substr(co+1,lb-co-1)); | 138 | set_field(kv.substr(p,co-p),kv.substr(co+1,lb-co-1)); |
137 | string::size_type nolb = kv.find_first_not_of("\r\n",lb); | 139 | string::size_type nolb = kv.find_first_not_of("\r\n",lb); |
138 | if(nolb==string::npos) | 140 | if(nolb==string::npos) |
139 | break; | 141 | break; |
140 | p = nolb; | 142 | p = nolb; |
141 | #endif /* POSTELS_LAW */ | 143 | #endif /* POSTELS_LAW */ |
142 | } | 144 | } |
143 | } | 145 | } |
144 | 146 | ||
145 | struct __om_kv_outputter : public unary_function<const string&,void> { | 147 | struct __om_kv_outputter : public unary_function<const string&,void> { |
146 | public: | 148 | public: |
147 | const basic_openid_message& om; | 149 | const basic_openid_message& om; |
148 | ostream& os; | 150 | ostream& os; |
149 | 151 | ||
150 | __om_kv_outputter(const basic_openid_message& m,ostream& s) | 152 | __om_kv_outputter(const basic_openid_message& m,ostream& s) |
151 | : om(m), os(s) { } | 153 | : om(m), os(s) { } |
152 | 154 | ||
153 | result_type operator()(argument_type f) { | 155 | result_type operator()(argument_type f) { |
154 | os << f << ':' << om.get_field(f) << '\n'; | 156 | os << f << ':' << om.get_field(f) << '\n'; |
155 | } | 157 | } |
156 | }; | 158 | }; |
157 | 159 | ||
158 | void basic_openid_message::to_keyvalues(ostream& o) const { | 160 | void basic_openid_message::to_keyvalues(ostream& o) const { |
159 | for_each(fields_begin(),fields_end(),__om_kv_outputter(*this,o)); | 161 | for_each(fields_begin(),fields_end(),__om_kv_outputter(*this,o)); |
160 | } | 162 | } |
161 | 163 | ||
162 | struct __om_html_outputter : public unary_function<const string&,void> { | 164 | struct __om_html_outputter : public unary_function<const string&,void> { |
163 | public: | 165 | public: |
164 | const basic_openid_message& om; | 166 | const basic_openid_message& om; |
165 | ostream& os; | 167 | ostream& os; |
166 | const char *pfx; | 168 | const char *pfx; |
167 | 169 | ||
168 | __om_html_outputter(const basic_openid_message& m,ostream& s,const char *p=0) | 170 | __om_html_outputter(const basic_openid_message& m,ostream& s,const char *p=0) |
169 | : om(m), os(s), pfx(p) { } | 171 | : om(m), os(s), pfx(p) { } |
170 | 172 | ||
171 | result_type operator()(argument_type f) { | 173 | result_type operator()(argument_type f) { |
172 | os << | 174 | os << |
173 | "<input type=\"hidden\"" | 175 | "<input type=\"hidden\"" |
174 | " name=\""; | 176 | " name=\""; |
175 | if(pfx) | 177 | if(pfx) |
176 | os << util::attr_escape(pfx); | 178 | os << util::attr_escape(pfx); |
177 | os << util::attr_escape(f) << "\"" | 179 | os << util::attr_escape(f) << "\"" |
178 | " value=\"" << util::attr_escape(om.get_field(f)) << "\" />"; | 180 | " value=\"" << util::attr_escape(om.get_field(f)) << "\" />"; |
179 | } | 181 | } |
180 | }; | 182 | }; |
181 | 183 | ||
182 | void basic_openid_message::to_htmlhiddens(ostream& o,const char* pfx) const { | 184 | void basic_openid_message::to_htmlhiddens(ostream& o,const char* pfx) const { |
183 | for_each(fields_begin(),fields_end(),__om_html_outputter(*this,o,pfx)); | 185 | for_each(fields_begin(),fields_end(),__om_html_outputter(*this,o,pfx)); |
184 | } | 186 | } |
185 | 187 | ||
186 | void basic_openid_message::add_to_signed(const string& fields) { | 188 | void basic_openid_message::add_to_signed(const string& fields) { |
187 | string::size_type fnc = fields.find_first_not_of(","); | 189 | string::size_type fnc = fields.find_first_not_of(","); |
188 | if(fnc==string::npos) | 190 | if(fnc==string::npos) |
189 | throw bad_input(OPKELE_CP_ "Trying to add nothing in particular to the list of signed fields"); | 191 | throw bad_input(OPKELE_CP_ "Trying to add nothing in particular to the list of signed fields"); |
190 | string signeds; | 192 | string signeds; |
191 | try { | 193 | try { |
192 | signeds = get_field("signed"); | 194 | signeds = get_field("signed"); |
193 | string::size_type lnc = signeds.find_last_not_of(","); | 195 | string::size_type lnc = signeds.find_last_not_of(","); |
194 | if(lnc==string::npos) | 196 | if(lnc==string::npos) |
195 | signeds.assign(fields,fnc,fields.size()-fnc); | 197 | signeds.assign(fields,fnc,fields.size()-fnc); |
196 | else{ | 198 | else{ |
197 | string::size_type ss = signeds.size(); | 199 | string::size_type ss = signeds.size(); |
198 | if(lnc==(ss-1)) { | 200 | if(lnc==(ss-1)) { |
199 | signeds+= ','; | 201 | signeds+= ','; |
200 | signeds.append(fields,fnc,fields.size()-fnc); | 202 | signeds.append(fields,fnc,fields.size()-fnc); |
201 | }else{ | 203 | }else{ |
202 | if(lnc<(ss-2)) | 204 | if(lnc<(ss-2)) |
203 | signeds.replace(lnc+2,ss-lnc-2, | 205 | signeds.replace(lnc+2,ss-lnc-2, |
204 | fields,fnc,fields.size()-fnc); | 206 | fields,fnc,fields.size()-fnc); |
205 | else | 207 | else |
206 | signeds.append(fields,fnc,fields.size()-fnc); | 208 | signeds.append(fields,fnc,fields.size()-fnc); |
207 | } | 209 | } |
208 | } | 210 | } |
209 | }catch(failed_lookup&) { | 211 | }catch(failed_lookup&) { |
210 | signeds.assign(fields,fnc,fields.size()-fnc); | 212 | signeds.assign(fields,fnc,fields.size()-fnc); |
211 | } | 213 | } |
212 | set_field("signed",signeds); | 214 | set_field("signed",signeds); |
213 | } | 215 | } |
214 | 216 | ||
215 | string basic_openid_message::find_ns(const string& uri,const char *pfx) const { | 217 | string basic_openid_message::find_ns(const string& uri,const char *pfx) const { |
216 | try { | 218 | try { |
217 | return get_ns(uri); | 219 | return get_ns(uri); |
218 | }catch(failed_lookup&) { | 220 | }catch(failed_lookup&) { |
219 | return pfx; | 221 | return pfx; |
220 | } | 222 | } |
221 | } | 223 | } |
222 | string basic_openid_message::allocate_ns(const string& uri,const char *pfx) { | 224 | string basic_openid_message::allocate_ns(const string& uri,const char *pfx) { |
223 | if(!has_field("ns")) | 225 | if(!has_field("ns")) |
224 | return pfx; | 226 | return pfx; |
225 | if(has_ns(uri)) | 227 | if(has_ns(uri)) |
226 | throw bad_input(OPKELE_CP_ "OpenID message already contains namespace"); | 228 | throw bad_input(OPKELE_CP_ "OpenID message already contains namespace"); |
227 | string rv = pfx; | 229 | string rv = pfx; |
228 | if(has_field("ns."+rv)) { | 230 | if(has_field("ns."+rv)) { |
229 | string::reference c=rv[rv.length()]; | 231 | string::reference c=rv[rv.length()]; |
230 | for(c='a';c<='z' && has_field("ns."+rv);++c); | 232 | for(c='a';c<='z' && has_field("ns."+rv);++c); |
231 | if(c=='z') | 233 | if(c=='z') |
232 | throw exception(OPKELE_CP_ "Failed to allocate namespace"); | 234 | throw exception(OPKELE_CP_ "Failed to allocate namespace"); |
233 | } | 235 | } |
234 | set_field("ns."+rv,uri); | 236 | set_field("ns."+rv,uri); |
235 | return rv; | 237 | return rv; |
236 | } | 238 | } |
237 | 239 | ||
238 | void openid_message_t::copy_to(basic_openid_message& x) const { | 240 | void openid_message_t::copy_to(basic_openid_message& x) const { |
239 | x.reset_fields(); | 241 | x.reset_fields(); |
240 | for(const_iterator i=begin();i!=end();++i) | 242 | for(const_iterator i=begin();i!=end();++i) |
241 | x.set_field(i->first,i->second); | 243 | x.set_field(i->first,i->second); |
242 | } | 244 | } |
243 | 245 | ||
244 | bool openid_message_t::has_field(const string& n) const { | 246 | bool openid_message_t::has_field(const string& n) const { |
245 | return find(n)!=end(); | 247 | return find(n)!=end(); |
246 | } | 248 | } |
247 | const string& openid_message_t::get_field(const string& n) const { | 249 | const string& openid_message_t::get_field(const string& n) const { |
248 | const_iterator i=find(n); | 250 | const_iterator i=find(n); |
249 | if(i==end()) | 251 | if(i==end()) |
250 | throw failed_lookup(OPKELE_CP_ n+": no such field"); | 252 | throw failed_lookup(OPKELE_CP_ n+": no such field"); |
251 | return i->second; | 253 | return i->second; |
252 | } | 254 | } |
253 | 255 | ||
254 | openid_message_t::fields_iterator openid_message_t::fields_begin() const { | 256 | openid_message_t::fields_iterator openid_message_t::fields_begin() const { |
255 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(begin(),end()); | 257 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(begin(),end()); |
256 | } | 258 | } |
257 | openid_message_t::fields_iterator openid_message_t::fields_end() const { | 259 | openid_message_t::fields_iterator openid_message_t::fields_end() const { |
258 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(end(),end()); | 260 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(end(),end()); |
259 | } | 261 | } |
260 | 262 | ||
261 | void openid_message_t::reset_fields() { | 263 | void openid_message_t::reset_fields() { |
262 | clear(); | 264 | clear(); |
263 | } | 265 | } |
264 | void openid_message_t::set_field(const string& n,const string& v) { | 266 | void openid_message_t::set_field(const string& n,const string& v) { |
265 | (*this)[n]=v; | 267 | (*this)[n]=v; |
266 | } | 268 | } |
267 | void openid_message_t::reset_field(const string& n) { | 269 | void openid_message_t::reset_field(const string& n) { |
268 | erase(n); | 270 | erase(n); |
269 | } | 271 | } |
270 | 272 | ||
271 | } | 273 | } |