summaryrefslogtreecommitdiffabout
path: root/lib/message.cc
Unidiff
Diffstat (limited to 'lib/message.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/message.cc270
1 files changed, 270 insertions, 0 deletions
diff --git a/lib/message.cc b/lib/message.cc
new file mode 100644
index 0000000..78f20f4
--- a/dev/null
+++ b/lib/message.cc
@@ -0,0 +1,270 @@
1#include <cassert>
2#include <opkele/types.h>
3#include <opkele/exception.h>
4#include <opkele/util.h>
5#include <opkele/debug.h>
6
7#include "config.h"
8
9namespace opkele {
10 using std::input_iterator_tag;
11 using std::unary_function;
12
13 struct __om_copier : public unary_function<const string&,void> {
14 public:
15 const basic_message& from;
16 basic_message& to;
17
18 __om_copier(basic_message& t,const basic_message& f)
19 : from(f), to(t) { }
20
21 result_type operator()(argument_type f) {
22 to.set_field(f,from.get_field(f)); }
23 };
24
25 basic_message::basic_message(const basic_message& x) {
26 x.copy_to(*this);
27 }
28 void basic_message::copy_to(basic_message& x) const {
29 x.reset_fields();
30 for_each(fields_begin(),fields_end(),
31 __om_copier(x,*this) );
32 }
33 void basic_message::append_to(basic_message& x) const {
34 for_each(fields_begin(),fields_end(),
35 __om_copier(x,*this) );
36 }
37
38 struct __om_query_builder : public unary_function<const string&,void> {
39 public:
40 const basic_message& om;
41 bool first;
42 string& rv;
43 const char *pfx;
44
45 __om_query_builder(const char *p,string& r,const basic_message& m)
46 : om(m), first(true), rv(r), pfx(p) {
47 for_each(om.fields_begin(),om.fields_end(),*this);
48 }
49 __om_query_builder(const char *p,string& r,const basic_message& m,const string& u)
50 : om(m), first(true), rv(r), pfx(p) {
51 rv = u;
52 if(rv.find('?')==string::npos)
53 rv += '?';
54 else
55 first = false;
56 for_each(om.fields_begin(),om.fields_end(),*this);
57 }
58
59 result_type operator()(argument_type f) {
60 if(first)
61 first = false;
62 else
63 rv += '&';
64 if(pfx) rv += pfx;
65 rv+= f;
66 rv += '=';
67 rv += util::url_encode(om.get_field(f));
68 }
69 };
70
71 string basic_message::append_query(const string& url,const char *pfx) const {
72 string rv;
73 return __om_query_builder(pfx,rv,*this,url).rv;
74 }
75 string basic_message::query_string(const char *pfx) const {
76 string rv;
77 return __om_query_builder(pfx,rv,*this).rv;
78 }
79
80 void basic_message::reset_fields() {
81 throw not_implemented(OPKELE_CP_ "reset_fields() not implemented");
82 }
83 void basic_message::set_field(const string&,const string&) {
84 throw not_implemented(OPKELE_CP_ "set_field() not implemented");
85 }
86 void basic_message::reset_field(const string&) {
87 throw not_implemented(OPKELE_CP_ "reset_field() not implemented");
88 }
89
90 struct __om_ns_finder : public unary_function<const string&,bool> {
91 public:
92 const basic_openid_message& om;
93 const string& uri;
94
95 __om_ns_finder(const basic_openid_message& m,
96 const string& u) : om(m), uri(u) { }
97
98 result_type operator()(argument_type f) {
99 return
100 (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1))
101 && om.get_field(f)==uri ;
102 }
103 };
104
105 bool basic_openid_message::has_ns(const string& uri) const {
106 fields_iterator ei = fields_end();
107 fields_iterator i = find_if(fields_begin(),fields_end(),
108 __om_ns_finder(*this,uri));
109 return !(i==ei);
110 }
111 string basic_openid_message::get_ns(const string& uri) const {
112 fields_iterator ei = fields_end();
113 fields_iterator i = find_if(fields_begin(),fields_end(),
114 __om_ns_finder(*this,uri));
115 if(i==ei)
116 throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri);
117 return i->substr(3);
118 }
119
120 void basic_openid_message::from_keyvalues(const string& kv) {
121 reset_fields();
122 string::size_type p = 0;
123 while(true) {
124 string::size_type co = kv.find(':',p);
125 if(co==string::npos)
126 break;
127#ifndef POSTELS_LAW
128 string::size_type nl = kv.find('\n',co+1);
129 if(nl==string::npos)
130 throw bad_input(OPKELE_CP_ "malformed input");
131 if(nl>co)
132 insert(value_type(kv.substr(p,co-p),kv.substr(co+1,nl-co-1)));
133 p = nl+1;
134#else /* POSTELS_LAW */
135 string::size_type lb = kv.find_first_of("\r\n",co+1);
136 if(lb==string::npos) {
137 set_field(kv.substr(p,co-p),kv.substr(co+1));
138 break;
139 }
140 if(lb>co)
141 set_field(kv.substr(p,co-p),kv.substr(co+1,lb-co-1));
142 string::size_type nolb = kv.find_first_not_of("\r\n",lb);
143 if(nolb==string::npos)
144 break;
145 p = nolb;
146#endif /* POSTELS_LAW */
147 }
148 }
149
150 struct __om_kv_outputter : public unary_function<const string&,void> {
151 public:
152 const basic_openid_message& om;
153 ostream& os;
154
155 __om_kv_outputter(const basic_openid_message& m,ostream& s)
156 : om(m), os(s) { }
157
158 result_type operator()(argument_type f) {
159 os << f << ':' << om.get_field(f) << '\n';
160 }
161 };
162
163 void basic_openid_message::to_keyvalues(ostream& o) const {
164 for_each(fields_begin(),fields_end(),__om_kv_outputter(*this,o));
165 }
166
167 struct __om_html_outputter : public unary_function<const string&,void> {
168 public:
169 const basic_openid_message& om;
170 ostream& os;
171 const char *pfx;
172
173 __om_html_outputter(const basic_openid_message& m,ostream& s,const char *p=0)
174 : om(m), os(s), pfx(p) { }
175
176 result_type operator()(argument_type f) {
177 os <<
178 "<input type=\"hidden\""
179 " name=\"";
180 if(pfx)
181 os << util::attr_escape(pfx);
182 os << util::attr_escape(f) << "\""
183 " value=\"" << util::attr_escape(om.get_field(f)) << "\" />";
184 }
185 };
186
187 void basic_openid_message::to_htmlhiddens(ostream& o,const char* pfx) const {
188 for_each(fields_begin(),fields_end(),__om_html_outputter(*this,o,pfx));
189 }
190
191 void basic_openid_message::add_to_signed(const string& fields) {
192 string::size_type fnc = fields.find_first_not_of(",");
193 if(fnc==string::npos)
194 throw bad_input(OPKELE_CP_ "Trying to add nothing in particular to the list of signed fields");
195 string signeds;
196 try {
197 signeds = get_field("signed");
198 string::size_type lnc = signeds.find_last_not_of(",");
199 if(lnc==string::npos)
200 signeds.assign(fields,fnc,fields.size()-fnc);
201 else{
202 string::size_type ss = signeds.size();
203 if(lnc==(ss-1)) {
204 signeds+= ',';
205 signeds.append(fields,fnc,fields.size()-fnc);
206 }else{
207 if(lnc<(ss-2))
208 signeds.replace(lnc+2,ss-lnc-2,
209 fields,fnc,fields.size()-fnc);
210 else
211 signeds.append(fields,fnc,fields.size()-fnc);
212 }
213 }
214 }catch(failed_lookup&) {
215 signeds.assign(fields,fnc,fields.size()-fnc);
216 }
217 set_field("signed",signeds);
218 }
219
220 string basic_openid_message::find_ns(const string& uri,const char *pfx) const {
221 try {
222 return get_ns(uri);
223 }catch(failed_lookup&) {
224 return pfx;
225 }
226 }
227 string basic_openid_message::allocate_ns(const string& uri,const char *pfx) {
228 if(!has_field("ns"))
229 return pfx;
230 if(has_ns(uri))
231 throw bad_input(OPKELE_CP_ "OpenID message already contains namespace");
232 string rv = pfx;
233 if(has_field("ns."+rv)) {
234 string::reference c=rv[rv.length()];
235 for(c='a';c<='z' && has_field("ns."+rv);++c);
236 if(c=='z')
237 throw exception(OPKELE_CP_ "Failed to allocate namespace");
238 }
239 set_field("ns."+rv,uri);
240 return rv;
241 }
242
243 bool openid_message_t::has_field(const string& n) const {
244 return find(n)!=end();
245 }
246 const string& openid_message_t::get_field(const string& n) const {
247 const_iterator i=find(n);
248 if(i==end())
249 throw failed_lookup(OPKELE_CP_ n+": no such field");
250 return i->second;
251 }
252
253 openid_message_t::fields_iterator openid_message_t::fields_begin() const {
254 return util::map_keys_iterator<const_iterator,string,const string&,const string*>(begin(),end());
255 }
256 openid_message_t::fields_iterator openid_message_t::fields_end() const {
257 return util::map_keys_iterator<const_iterator,string,const string&,const string*>(end(),end());
258 }
259
260 void openid_message_t::reset_fields() {
261 clear();
262 }
263 void openid_message_t::set_field(const string& n,const string& v) {
264 (*this)[n]=v;
265 }
266 void openid_message_t::reset_field(const string& n) {
267 erase(n);
268 }
269
270}