|
|
|
@@ -14,6 +14,7 @@ using namespace std; |
14 | #include <opkele/association.h> |
14 | #include <opkele/association.h> |
15 | #include <opkele/debug.h> |
15 | #include <opkele/debug.h> |
16 | #include <opkele/verify_op.h> |
16 | #include <opkele/verify_op.h> |
| |
17 | #include <opkele/sreg.h> |
17 | |
18 | |
18 | #include "sqlite.h" |
19 | #include "sqlite.h" |
19 | #include "kingate_openid_message.h" |
20 | #include "kingate_openid_message.h" |
@@ -269,7 +270,8 @@ int main(int argc,char *argv[]) { |
269 | example_op_t OP(gw); |
270 | example_op_t OP(gw); |
270 | if(gw.get_param("hts_id")!=OP.htc.get_value()) |
271 | if(gw.get_param("hts_id")!=OP.htc.get_value()) |
271 | throw opkele::exception(OPKELE_CP_ "toying around, huh?"); |
272 | throw opkele::exception(OPKELE_CP_ "toying around, huh?"); |
272 | OP.checkid_(inm,0); |
273 | opkele::sreg_t sreg; |
| |
274 | OP.checkid_(inm,sreg); |
273 | OP.cookie_header(cout); |
275 | OP.cookie_header(cout); |
274 | opkele::openid_message_t om; |
276 | opkele::openid_message_t om; |
275 | if(op=="id_res") { |
277 | if(op=="id_res") { |
@@ -278,9 +280,13 @@ int main(int argc,char *argv[]) { |
278 | if(OP.is_id_select()) { |
280 | if(OP.is_id_select()) { |
279 | OP.select_identity( get_self_url(gw), get_self_url(gw) ); |
281 | OP.select_identity( get_self_url(gw), get_self_url(gw) ); |
280 | } |
282 | } |
| |
283 | sreg.set_field(opkele::sreg_t::field_nickname,"anonymous"); |
| |
284 | sreg.set_field(opkele::sreg_t::field_fullname,"Ann O'Nymus"); |
| |
285 | sreg.set_field(opkele::sreg_t::field_gender,"F"); |
| |
286 | sreg.setup_response(); |
281 | cout << |
287 | cout << |
282 | "Status: 302 Going back to RP with id_res\n" |
288 | "Status: 302 Going back to RP with id_res\n" |
283 | "Location: " << OP.id_res(om).append_query(OP.get_return_to()) |
289 | "Location: " << OP.id_res(om,sreg).append_query(OP.get_return_to()) |
284 | << "\n\n"; |
290 | << "\n\n"; |
285 | }else{ |
291 | }else{ |
286 | cout << |
292 | cout << |
|