-rw-r--r-- | include/opkele/uris.h | 1 | ||||
-rw-r--r-- | lib/sreg.cc | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/opkele/uris.h b/include/opkele/uris.h index 3243831..56c2d6d 100644 --- a/include/opkele/uris.h +++ b/include/opkele/uris.h | |||
@@ -3,12 +3,13 @@ | |||
3 | 3 | ||
4 | #define NSURI_XRDS "xri://$xrds" | 4 | #define NSURI_XRDS "xri://$xrds" |
5 | #define NSURI_XRD "xri://$xrd*($v*2.0)" | 5 | #define NSURI_XRD "xri://$xrd*($v*2.0)" |
6 | #define NSURI_OPENID10 "http://openid.net/xmlns/1.0" | 6 | #define NSURI_OPENID10 "http://openid.net/xmlns/1.0" |
7 | 7 | ||
8 | #define OIURI_OPENID20 "http://specs.openid.net/auth/2.0" | 8 | #define OIURI_OPENID20 "http://specs.openid.net/auth/2.0" |
9 | #define OIURI_SREG11 "http://openid.net/extensions/sreg/1.1" | ||
9 | 10 | ||
10 | #define STURI_OPENID10 "http://openid.net/signon/1.0" | 11 | #define STURI_OPENID10 "http://openid.net/signon/1.0" |
11 | #define STURI_OPENID11 "http://openid.net/signon/1.1" | 12 | #define STURI_OPENID11 "http://openid.net/signon/1.1" |
12 | #define STURI_OPENID20 "http://specs.openid.net/auth/2.0/signon" | 13 | #define STURI_OPENID20 "http://specs.openid.net/auth/2.0/signon" |
13 | #define STURI_OPENID20_OP"http://specs.openid.net/auth/2.0/server" | 14 | #define STURI_OPENID20_OP"http://specs.openid.net/auth/2.0/server" |
14 | 15 | ||
diff --git a/lib/sreg.cc b/lib/sreg.cc index 60dc691..dd7ed12 100644 --- a/lib/sreg.cc +++ b/lib/sreg.cc | |||
@@ -1,8 +1,9 @@ | |||
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 { |
@@ -36,12 +37,13 @@ namespace opkele { | |||
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 */) { |