summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2007-12-29 21:26:53 (UTC)
committer Michael Krelin <hacker@klever.net>2008-01-04 18:22:12 (UTC)
commit9020dcc4b8187a9dd31c62dbe89041772b0f5473 (patch) (unidiff)
treed04da68e1c01a687834525437487364de53a6ad2
parent3801123163d78896a05fb26323deb7c0fa8c7f8e (diff)
downloadlibopkele-9020dcc4b8187a9dd31c62dbe89041772b0f5473.zip
libopkele-9020dcc4b8187a9dd31c62dbe89041772b0f5473.tar.gz
libopkele-9020dcc4b8187a9dd31c62dbe89041772b0f5473.tar.bz2
xri discovery fills in canonicalized_id for xri identities now
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--lib/discovery.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/discovery.cc b/lib/discovery.cc
index 3b184ee..bc7d6fb 100644
--- a/lib/discovery.cc
+++ b/lib/discovery.cc
@@ -11,192 +11,193 @@
11#define XRDS_HEADER "X-XRDS-Location" 11#define XRDS_HEADER "X-XRDS-Location"
12#define CT_HEADER "Content-Type" 12#define CT_HEADER "Content-Type"
13 13
14namespace opkele { 14namespace opkele {
15 using std::list; 15 using std::list;
16 using xrd::XRD_t; 16 using xrd::XRD_t;
17 using xrd::service_t; 17 using xrd::service_t;
18 18
19 static const char *whitespace = " \t\r\n"; 19 static const char *whitespace = " \t\r\n";
20 static const char *i_leaders = "=@+$!("; 20 static const char *i_leaders = "=@+$!(";
21 21
22 static inline bool is_qelement(const XML_Char *n,const char *qen) { 22 static inline bool is_qelement(const XML_Char *n,const char *qen) {
23 return !strcasecmp(n,qen); 23 return !strcasecmp(n,qen);
24 } 24 }
25 static inline bool is_element(const XML_Char *n,const char *en) { 25 static inline bool is_element(const XML_Char *n,const char *en) {
26 if(!strcasecmp(n,en)) return true; 26 if(!strcasecmp(n,en)) return true;
27 int nl = strlen(n), enl = strlen(en); 27 int nl = strlen(n), enl = strlen(en);
28 if( (nl>=(enl+1)) && n[nl-enl-1]=='\t' 28 if( (nl>=(enl+1)) && n[nl-enl-1]=='\t'
29 && !strcasecmp(&n[nl-enl],en) ) 29 && !strcasecmp(&n[nl-enl],en) )
30 return true; 30 return true;
31 return false; 31 return false;
32 } 32 }
33 33
34 static long element_priority(const XML_Char **a) { 34 static long element_priority(const XML_Char **a) {
35 for(;*a;++a) 35 for(;*a;++a)
36 if(!strcasecmp(*(a++),"priority")) { 36 if(!strcasecmp(*(a++),"priority")) {
37 long rv; 37 long rv;
38 return (sscanf(*a,"%ld",&rv)==1)?rv:-1; 38 return (sscanf(*a,"%ld",&rv)==1)?rv:-1;
39 } 39 }
40 return -1; 40 return -1;
41 } 41 }
42 42
43 class idigger_t : public util::curl_t, public util::expat_t { 43 class idigger_t : public util::curl_t, public util::expat_t {
44 public: 44 public:
45 string xri_proxy; 45 string xri_proxy;
46 46
47 enum { 47 enum {
48 xmode_html = 1, xmode_xrd = 2 48 xmode_html = 1, xmode_xrd = 2
49 }; 49 };
50 int xmode; 50 int xmode;
51 51
52 string xrds_location; 52 string xrds_location;
53 string http_content_type; 53 string http_content_type;
54 service_t html_openid1; 54 service_t html_openid1;
55 service_t html_openid2; 55 service_t html_openid2;
56 string cdata_buf; 56 string cdata_buf;
57 long status_code; 57 long status_code;
58 string status_string; 58 string status_string;
59 59
60 typedef list<string> pt_stack_t; 60 typedef list<string> pt_stack_t;
61 pt_stack_t pt_stack; 61 pt_stack_t pt_stack;
62 int skipping; 62 int skipping;
63 63
64 XRD_t *xrd; 64 XRD_t *xrd;
65 service_t *xrd_service; 65 service_t *xrd_service;
66 string* cdata; 66 string* cdata;
67 67
68 idigger_t() 68 idigger_t()
69 : util::curl_t(easy_init()), 69 : util::curl_t(easy_init()),
70 util::expat_t(0), 70 util::expat_t(0),
71 xri_proxy(XRI_PROXY_URL) { 71 xri_proxy(XRI_PROXY_URL) {
72 CURLcode r; 72 CURLcode r;
73 (r=misc_sets()) 73 (r=misc_sets())
74 || (r=set_write()) 74 || (r=set_write())
75 || (r=set_header()) 75 || (r=set_header())
76 ; 76 ;
77 if(r) 77 if(r)
78 throw exception_curl(OPKELE_CP_ "failed to set curly options",r); 78 throw exception_curl(OPKELE_CP_ "failed to set curly options",r);
79 } 79 }
80 ~idigger_t() throw() { } 80 ~idigger_t() throw() { }
81 81
82 void discover(idiscovery_t& result,const string& identity) { 82 void discover(idiscovery_t& result,const string& identity) {
83 result.clear(); 83 result.clear();
84 string::size_type fsc = identity.find_first_not_of(whitespace); 84 string::size_type fsc = identity.find_first_not_of(whitespace);
85 if(fsc==string::npos) 85 if(fsc==string::npos)
86 throw bad_input(OPKELE_CP_ "whtiespace-only identity"); 86 throw bad_input(OPKELE_CP_ "whtiespace-only identity");
87 string::size_type lsc = identity.find_last_not_of(whitespace); 87 string::size_type lsc = identity.find_last_not_of(whitespace);
88 assert(lsc!=string::npos); 88 assert(lsc!=string::npos);
89 if(!strncasecmp(identity.c_str()+fsc,"xri://",sizeof("xri://")-1)) 89 if(!strncasecmp(identity.c_str()+fsc,"xri://",sizeof("xri://")-1))
90 fsc += sizeof("xri://")-1; 90 fsc += sizeof("xri://")-1;
91 if((fsc+1)>=lsc) 91 if((fsc+1)>=lsc)
92 throw bad_input(OPKELE_CP_ "not a character of importance in identity"); 92 throw bad_input(OPKELE_CP_ "not a character of importance in identity");
93 string id(identity,fsc,lsc-fsc+1); 93 string id(identity,fsc,lsc-fsc+1);
94 if(strchr(i_leaders,id[0])) { 94 if(strchr(i_leaders,id[0])) {
95 result.normalized_id = id; 95 result.normalized_id = id;
96 result.xri_identity = true; 96 result.xri_identity = true;
97 /* TODO: further canonicalize xri identity? Like folding case or whatever... */ 97 /* TODO: further canonicalize xri identity? Like folding case or whatever... */
98 discover_at( 98 discover_at(
99 result, 99 result,
100 xri_proxy + util::url_encode(id)+ 100 xri_proxy + util::url_encode(id)+
101 "?_xrd_r=application/xrd+xml;sep=false", xmode_xrd); 101 "?_xrd_r=application/xrd+xml;sep=false", xmode_xrd);
102 if(status_code!=100) 102 if(status_code!=100)
103 throw failed_xri_resolution(OPKELE_CP_ 103 throw failed_xri_resolution(OPKELE_CP_
104 "XRI resolution failed with '"+status_string+"' message",status_code); 104 "XRI resolution failed with '"+status_string+"' message",status_code);
105 if(result.xrd.canonical_ids.empty()) 105 if(result.xrd.canonical_ids.empty())
106 throw opkele::failed_discovery(OPKELE_CP_ "No CanonicalID for XRI identity found"); 106 throw opkele::failed_discovery(OPKELE_CP_ "No CanonicalID for XRI identity found");
107 result.canonicalized_id = result.xrd.canonical_ids.begin()->second;
107 }else{ 108 }else{
108 result.xri_identity = false; 109 result.xri_identity = false;
109 if(id.find("://")==string::npos) 110 if(id.find("://")==string::npos)
110 id.insert(0,"http://"); 111 id.insert(0,"http://");
111 string::size_type fp = id.find('#'); 112 string::size_type fp = id.find('#');
112 if(fp!=string::npos) { 113 if(fp!=string::npos) {
113 string::size_type qp = id.find('?'); 114 string::size_type qp = id.find('?');
114 if(qp==string::npos || qp<fp) 115 if(qp==string::npos || qp<fp)
115 id.erase(fp); 116 id.erase(fp);
116 else if(qp>fp) 117 else if(qp>fp)
117 id.erase(fp,qp-fp); 118 id.erase(fp,qp-fp);
118 } 119 }
119 result.normalized_id = util::rfc_3986_normalize_uri(id); 120 result.normalized_id = util::rfc_3986_normalize_uri(id);
120 discover_at(result,id,xmode_html|xmode_xrd); 121 discover_at(result,id,xmode_html|xmode_xrd);
121 const char * eu = 0; 122 const char * eu = 0;
122 CURLcode r = easy_getinfo(CURLINFO_EFFECTIVE_URL,&eu); 123 CURLcode r = easy_getinfo(CURLINFO_EFFECTIVE_URL,&eu);
123 if(r) 124 if(r)
124 throw exception_curl(OPKELE_CP_ "failed to get CURLINFO_EFFECTIVE_URL",r); 125 throw exception_curl(OPKELE_CP_ "failed to get CURLINFO_EFFECTIVE_URL",r);
125 result.canonicalized_id = util::rfc_3986_normalize_uri(eu); /* XXX: strip fragment part? */ 126 result.canonicalized_id = util::rfc_3986_normalize_uri(eu); /* XXX: strip fragment part? */
126 if(xrds_location.empty()) { 127 if(xrds_location.empty()) {
127 html2xrd(result.xrd); 128 html2xrd(result.xrd);
128 }else{ 129 }else{
129 discover_at(result,xrds_location,xmode_xrd); 130 discover_at(result,xrds_location,xmode_xrd);
130 if(result.xrd.empty()) 131 if(result.xrd.empty())
131 html2xrd(result.xrd); 132 html2xrd(result.xrd);
132 } 133 }
133 } 134 }
134 } 135 }
135 136
136 void discover_at(idiscovery_t& result,const string& url,int xm) { 137 void discover_at(idiscovery_t& result,const string& url,int xm) {
137 CURLcode r = easy_setopt(CURLOPT_URL,url.c_str()); 138 CURLcode r = easy_setopt(CURLOPT_URL,url.c_str());
138 if(r) 139 if(r)
139 throw exception_curl(OPKELE_CP_ "failed to set culry urlie",r); 140 throw exception_curl(OPKELE_CP_ "failed to set culry urlie",r);
140 141
141 (*(expat_t*)this) = parser_create_ns(); 142 (*(expat_t*)this) = parser_create_ns();
142 set_user_data(); set_element_handler(); 143 set_user_data(); set_element_handler();
143 set_character_data_handler(); 144 set_character_data_handler();
144 145
145 http_content_type.clear(); 146 http_content_type.clear();
146 xmode = xm; 147 xmode = xm;
147 if(xmode&xmode_html) { 148 if(xmode&xmode_html) {
148 xrds_location.clear(); 149 xrds_location.clear();
149 html_openid1.clear(); html_openid2.clear(); 150 html_openid1.clear(); html_openid2.clear();
150 } 151 }
151 xrd = &result.xrd; 152 xrd = &result.xrd;
152 cdata = 0; xrd_service = 0; skipping = 0; 153 cdata = 0; xrd_service = 0; skipping = 0;
153 status_code = 100; status_string.clear(); 154 status_code = 100; status_string.clear();
154 155
155 r = easy_perform(); 156 r = easy_perform();
156 if(r && r!=CURLE_WRITE_ERROR) 157 if(r && r!=CURLE_WRITE_ERROR)
157 throw exception_curl(OPKELE_CP_ "failed to perform curly request",r); 158 throw exception_curl(OPKELE_CP_ "failed to perform curly request",r);
158 159
159 parse(0,0,true); 160 parse(0,0,true);
160 } 161 }
161 162
162 void html2xrd(XRD_t& x) { 163 void html2xrd(XRD_t& x) {
163 if(!html_openid1.uris.empty()) { 164 if(!html_openid1.uris.empty()) {
164 html_openid1.types.insert(STURI_OPENID11); 165 html_openid1.types.insert(STURI_OPENID11);
165 x.services.add(-1,html_openid1); 166 x.services.add(-1,html_openid1);
166 } 167 }
167 if(!html_openid2.uris.empty()) { 168 if(!html_openid2.uris.empty()) {
168 html_openid2.types.insert(STURI_OPENID20); 169 html_openid2.types.insert(STURI_OPENID20);
169 x.services.add(-1,html_openid2); 170 x.services.add(-1,html_openid2);
170 } 171 }
171 } 172 }
172 173
173 size_t write(void *p,size_t s,size_t nm) { 174 size_t write(void *p,size_t s,size_t nm) {
174 if(skipping<0) return 0; 175 if(skipping<0) return 0;
175 /* TODO: limit total size */ 176 /* TODO: limit total size */
176 size_t bytes = s*nm; 177 size_t bytes = s*nm;
177 parse((const char *)p,bytes,false); 178 parse((const char *)p,bytes,false);
178 return bytes; 179 return bytes;
179 } 180 }
180 size_t header(void *p,size_t s,size_t nm) { 181 size_t header(void *p,size_t s,size_t nm) {
181 size_t bytes = s*nm; 182 size_t bytes = s*nm;
182 const char *h = (const char*)p; 183 const char *h = (const char*)p;
183 const char *colon = (const char*)memchr(p,':',bytes); 184 const char *colon = (const char*)memchr(p,':',bytes);
184 const char *space = (const char*)memchr(p,' ',bytes); 185 const char *space = (const char*)memchr(p,' ',bytes);
185 if(space && ( (!colon) || space<colon ) ) { 186 if(space && ( (!colon) || space<colon ) ) {
186 xrds_location.clear(); http_content_type.clear(); 187 xrds_location.clear(); http_content_type.clear();
187 }else if(colon) { 188 }else if(colon) {
188 const char *hv = ++colon; 189 const char *hv = ++colon;
189 int hnl = colon-h; 190 int hnl = colon-h;
190 int rb; 191 int rb;
191 for(rb = bytes-hnl-1;rb>0 && isspace(*hv);++hv,--rb); 192 for(rb = bytes-hnl-1;rb>0 && isspace(*hv);++hv,--rb);
192 while(rb>0 && isspace(hv[rb-1])) --rb; 193 while(rb>0 && isspace(hv[rb-1])) --rb;
193 if(rb) { 194 if(rb) {
194 if( (hnl>=sizeof(XRDS_HEADER)) 195 if( (hnl>=sizeof(XRDS_HEADER))
195 && !strncasecmp(h,XRDS_HEADER":", 196 && !strncasecmp(h,XRDS_HEADER":",
196 sizeof(XRDS_HEADER)) ) { 197 sizeof(XRDS_HEADER)) ) {
197 xrds_location.assign(hv,rb); 198 xrds_location.assign(hv,rb);
198 }else if( (hnl>=sizeof(CT_HEADER)) 199 }else if( (hnl>=sizeof(CT_HEADER))
199 && !strncasecmp(h,CT_HEADER":", 200 && !strncasecmp(h,CT_HEADER":",
200 sizeof(CT_HEADER)) ) { 201 sizeof(CT_HEADER)) ) {
201 const char *sc = (const char*)memchr( 202 const char *sc = (const char*)memchr(
202 hv,';',rb); 203 hv,';',rb);