-rw-r--r-- | lib/sreg.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sreg.cc b/lib/sreg.cc index 60dc691..dd7ed12 100644 --- a/lib/sreg.cc +++ b/lib/sreg.cc | |||
@@ -1,14 +1,15 @@ | |||
1 | #include <opkele/exception.h> | 1 | #include <opkele/exception.h> |
2 | #include <opkele/sreg.h> | 2 | #include <opkele/sreg.h> |
3 | #include <opkele/uris.h> | ||
3 | #include <algorithm> | 4 | #include <algorithm> |
4 | 5 | ||
5 | namespace opkele { | 6 | namespace opkele { |
6 | using std::find; | 7 | using std::find; |
7 | 8 | ||
8 | static const struct _sreg_field { | 9 | static const struct _sreg_field { |
9 | const char *fieldname; | 10 | const char *fieldname; |
10 | sreg_t::fieldbit_t fieldbit; | 11 | sreg_t::fieldbit_t fieldbit; |
11 | }fields[] = { | 12 | }fields[] = { |
12 | { "nickname", sreg_t::field_nickname }, | 13 | { "nickname", sreg_t::field_nickname }, |
13 | { "email", sreg_t::field_email }, | 14 | { "email", sreg_t::field_email }, |
14 | { "fullname", sreg_t::field_fullname }, | 15 | { "fullname", sreg_t::field_fullname }, |
@@ -30,24 +31,25 @@ namespace opkele { | |||
30 | void sreg_t::checkid_hook(params_t& p,const string& /* identity */) { | 31 | void sreg_t::checkid_hook(params_t& p,const string& /* identity */) { |
31 | string fr, fo; | 32 | string fr, fo; |
32 | for(fields_iterator f=fields_BEGIN;f<fields_END;++f) { | 33 | for(fields_iterator f=fields_BEGIN;f<fields_END;++f) { |
33 | if(f->fieldbit&fields_required) { | 34 | if(f->fieldbit&fields_required) { |
34 | if(!fr.empty()) fr+=","; | 35 | if(!fr.empty()) fr+=","; |
35 | fr += f->fieldname; | 36 | fr += f->fieldname; |
36 | } | 37 | } |
37 | if(f->fieldbit&fields_optional) { | 38 | if(f->fieldbit&fields_optional) { |
38 | if(!fo.empty()) fo+=","; | 39 | if(!fo.empty()) fo+=","; |
39 | fo += f->fieldname; | 40 | fo += f->fieldname; |
40 | } | 41 | } |
41 | } | 42 | } |
43 | p["sreg.ns"] = OIURI_SREG11; | ||
42 | if(!fr.empty()) p["sreg.required"]=fr; | 44 | if(!fr.empty()) p["sreg.required"]=fr; |
43 | if(!fo.empty()) p["sreg.optional"]=fo; | 45 | if(!fo.empty()) p["sreg.optional"]=fo; |
44 | if(!policy_url.empty()) p["sreg.policy_url"]=policy_url; | 46 | if(!policy_url.empty()) p["sreg.policy_url"]=policy_url; |
45 | } | 47 | } |
46 | 48 | ||
47 | void sreg_t::id_res_hook(const params_t& /* p */,const params_t& sp,const string& /* identity */) { | 49 | void sreg_t::id_res_hook(const params_t& /* p */,const params_t& sp,const string& /* identity */) { |
48 | clear(); | 50 | clear(); |
49 | for(fields_iterator f=fields_BEGIN;f<fields_END;++f) { | 51 | for(fields_iterator f=fields_BEGIN;f<fields_END;++f) { |
50 | string fn = "sreg."; fn+=f->fieldname; | 52 | string fn = "sreg."; fn+=f->fieldname; |
51 | if(!sp.has_param(fn)) continue; | 53 | if(!sp.has_param(fn)) continue; |
52 | has_fields |= f->fieldbit; | 54 | has_fields |= f->fieldbit; |
53 | response[f->fieldbit]=sp.get_param(fn); | 55 | response[f->fieldbit]=sp.get_param(fn); |