summaryrefslogtreecommitdiffabout
path: root/lib
Unidiff
Diffstat (limited to 'lib') (more/less context) (show whitespace changes)
-rw-r--r--lib/openid_message.cc20
1 files changed, 11 insertions, 9 deletions
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
@@ -22,129 +22,131 @@ namespace opkele {
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)