author | Michael Krelin <hacker@klever.net> | 2008-02-02 10:49:52 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-02-02 10:49:52 (UTC) |
commit | f29ad6501686e5f43b536258b86d12683c711f02 (patch) (unidiff) | |
tree | 79ce9cf3f75449846bdf556550eaa927b20074be | |
parent | 61e6da06804f98d0cbb9d27eeb335351b3e05d4d (diff) | |
download | libopkele-f29ad6501686e5f43b536258b86d12683c711f02.zip libopkele-f29ad6501686e5f43b536258b86d12683c711f02.tar.gz libopkele-f29ad6501686e5f43b536258b86d12683c711f02.tar.bz2 |
generate html form hiddens from the openid message
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/types.h | 2 | ||||
-rw-r--r-- | lib/openid_message.cc | 20 |
2 files changed, 22 insertions, 0 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h index 842a722..5d39a5c 100644 --- a/include/opkele/types.h +++ b/include/opkele/types.h | |||
@@ -127,48 +127,50 @@ namespace opkele { | |||
127 | basic_openid_message() { } | 127 | basic_openid_message() { } |
128 | basic_openid_message(const basic_openid_message& x); | 128 | basic_openid_message(const basic_openid_message& x); |
129 | void copy_to(basic_openid_message& x) const; | 129 | void copy_to(basic_openid_message& x) const; |
130 | 130 | ||
131 | virtual bool has_field(const string& n) const = 0; | 131 | virtual bool has_field(const string& n) const = 0; |
132 | virtual const string& get_field(const string& n) const = 0; | 132 | virtual const string& get_field(const string& n) const = 0; |
133 | 133 | ||
134 | virtual bool has_ns(const string& uri) const; | 134 | virtual bool has_ns(const string& uri) const; |
135 | virtual string get_ns(const string& uri) const; | 135 | virtual string get_ns(const string& uri) const; |
136 | 136 | ||
137 | virtual fields_iterator fields_begin() const = 0; | 137 | virtual fields_iterator fields_begin() const = 0; |
138 | virtual fields_iterator fields_end() const = 0; | 138 | virtual fields_iterator fields_end() const = 0; |
139 | 139 | ||
140 | virtual string append_query(const string& url) const; | 140 | virtual string append_query(const string& url) const; |
141 | virtual string query_string() const; | 141 | virtual string query_string() const; |
142 | 142 | ||
143 | 143 | ||
144 | virtual void reset_fields(); | 144 | virtual void reset_fields(); |
145 | virtual void set_field(const string& n,const string& v); | 145 | virtual void set_field(const string& n,const string& v); |
146 | virtual void reset_field(const string& n); | 146 | virtual void reset_field(const string& n); |
147 | 147 | ||
148 | virtual void from_keyvalues(const string& kv); | 148 | virtual void from_keyvalues(const string& kv); |
149 | virtual void to_keyvalues(ostream& o) const; | 149 | virtual void to_keyvalues(ostream& o) const; |
150 | 150 | ||
151 | virtual void to_htmlhiddens(ostream& o) const; | ||
152 | |||
151 | void add_to_signed(const string& fields); | 153 | void add_to_signed(const string& fields); |
152 | string find_ns(const string& uri,const char *pfx) const; | 154 | string find_ns(const string& uri,const char *pfx) const; |
153 | string allocate_ns(const string& uri,const char *pfx); | 155 | string allocate_ns(const string& uri,const char *pfx); |
154 | }; | 156 | }; |
155 | 157 | ||
156 | class openid_message_t : public basic_openid_message, public map<string,string> { | 158 | class openid_message_t : public basic_openid_message, public map<string,string> { |
157 | public: | 159 | public: |
158 | openid_message_t() { } | 160 | openid_message_t() { } |
159 | openid_message_t(const basic_openid_message& x) | 161 | openid_message_t(const basic_openid_message& x) |
160 | : basic_openid_message(x) { } | 162 | : basic_openid_message(x) { } |
161 | 163 | ||
162 | void copy_to(basic_openid_message& x) const; | 164 | void copy_to(basic_openid_message& x) const; |
163 | 165 | ||
164 | bool has_field(const string& n) const; | 166 | bool has_field(const string& n) const; |
165 | const string& get_field(const string& n) const; | 167 | const string& get_field(const string& n) const; |
166 | virtual fields_iterator fields_begin() const; | 168 | virtual fields_iterator fields_begin() const; |
167 | virtual fields_iterator fields_end() const; | 169 | virtual fields_iterator fields_end() const; |
168 | 170 | ||
169 | void reset_fields(); | 171 | void reset_fields(); |
170 | void set_field(const string& n,const string& v); | 172 | void set_field(const string& n,const string& v); |
171 | void reset_field(const string& n); | 173 | void reset_field(const string& n); |
172 | }; | 174 | }; |
173 | 175 | ||
174 | /** | 176 | /** |
diff --git a/lib/openid_message.cc b/lib/openid_message.cc index 905ea95..fdb4b04 100644 --- a/lib/openid_message.cc +++ b/lib/openid_message.cc | |||
@@ -138,48 +138,68 @@ namespace opkele { | |||
138 | if(nolb==string::npos) | 138 | if(nolb==string::npos) |
139 | break; | 139 | break; |
140 | p = nolb; | 140 | p = nolb; |
141 | #endif /* POSTELS_LAW */ | 141 | #endif /* POSTELS_LAW */ |
142 | } | 142 | } |
143 | } | 143 | } |
144 | 144 | ||
145 | struct __om_kv_outputter : public unary_function<const string&,void> { | 145 | struct __om_kv_outputter : public unary_function<const string&,void> { |
146 | public: | 146 | public: |
147 | const basic_openid_message& om; | 147 | const basic_openid_message& om; |
148 | ostream& os; | 148 | ostream& os; |
149 | 149 | ||
150 | __om_kv_outputter(const basic_openid_message& om,ostream& os) | 150 | __om_kv_outputter(const basic_openid_message& om,ostream& os) |
151 | : om(om), os(os) { } | 151 | : om(om), os(os) { } |
152 | 152 | ||
153 | result_type operator()(argument_type f) { | 153 | result_type operator()(argument_type f) { |
154 | os << f << ':' << om.get_field(f) << '\n'; | 154 | os << f << ':' << om.get_field(f) << '\n'; |
155 | } | 155 | } |
156 | }; | 156 | }; |
157 | 157 | ||
158 | void basic_openid_message::to_keyvalues(ostream& o) const { | 158 | void basic_openid_message::to_keyvalues(ostream& o) const { |
159 | for_each(fields_begin(),fields_end(),__om_kv_outputter(*this,o)); | 159 | for_each(fields_begin(),fields_end(),__om_kv_outputter(*this,o)); |
160 | } | 160 | } |
161 | 161 | ||
162 | struct __om_html_outputter : public unary_function<const string&,void> { | ||
163 | public: | ||
164 | const basic_openid_message& om; | ||
165 | ostream& os; | ||
166 | |||
167 | __om_html_outputter(const basic_openid_message& om,ostream& os) | ||
168 | : om(om), os(os) { } | ||
169 | |||
170 | result_type operator()(argument_type f) { | ||
171 | os << | ||
172 | "<input type=\"hidden\"" | ||
173 | " name=\"" << util::attr_escape(f) << "\"" | ||
174 | " value=\"" << util::attr_escape(om.get_field(f)) << "\" />"; | ||
175 | } | ||
176 | }; | ||
177 | |||
178 | void basic_openid_message::to_htmlhiddens(ostream& o) const { | ||
179 | for_each(fields_begin(),fields_end(),__om_html_outputter(*this,o)); | ||
180 | } | ||
181 | |||
162 | void basic_openid_message::add_to_signed(const string& fields) { | 182 | void basic_openid_message::add_to_signed(const string& fields) { |
163 | string::size_type fnc = fields.find_first_not_of(","); | 183 | string::size_type fnc = fields.find_first_not_of(","); |
164 | if(fnc==string::npos) | 184 | if(fnc==string::npos) |
165 | throw bad_input(OPKELE_CP_ "Trying to add nothing in particular to the list of signed fields"); | 185 | throw bad_input(OPKELE_CP_ "Trying to add nothing in particular to the list of signed fields"); |
166 | string signeds; | 186 | string signeds; |
167 | try { | 187 | try { |
168 | signeds = get_field("signed"); | 188 | signeds = get_field("signed"); |
169 | string::size_type lnc = signeds.find_last_not_of(","); | 189 | string::size_type lnc = signeds.find_last_not_of(","); |
170 | if(lnc==string::npos) | 190 | if(lnc==string::npos) |
171 | signeds.assign(fields,fnc,fields.size()-fnc); | 191 | signeds.assign(fields,fnc,fields.size()-fnc); |
172 | else{ | 192 | else{ |
173 | string::size_type ss = signeds.size(); | 193 | string::size_type ss = signeds.size(); |
174 | if(lnc==(ss-1)) { | 194 | if(lnc==(ss-1)) { |
175 | signeds+= ','; | 195 | signeds+= ','; |
176 | signeds.append(fields,fnc,fields.size()-fnc); | 196 | signeds.append(fields,fnc,fields.size()-fnc); |
177 | }else{ | 197 | }else{ |
178 | if(lnc<(ss-2)) | 198 | if(lnc<(ss-2)) |
179 | signeds.replace(lnc+2,ss-lnc-2, | 199 | signeds.replace(lnc+2,ss-lnc-2, |
180 | fields,fnc,fields.size()-fnc); | 200 | fields,fnc,fields.size()-fnc); |
181 | else | 201 | else |
182 | signeds.append(fields,fnc,fields.size()-fnc); | 202 | signeds.append(fields,fnc,fields.size()-fnc); |
183 | } | 203 | } |
184 | } | 204 | } |
185 | }catch(failed_lookup&) { | 205 | }catch(failed_lookup&) { |