author | Michael Krelin <hacker@klever.net> | 2008-02-16 22:45:49 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-02-16 22:45:49 (UTC) |
commit | c18b77c610d0f963a274420a6558629d198818ee (patch) (unidiff) | |
tree | 953a2ab1e3b436f00d383e4c9c6fe87e3b876b80 | |
parent | 21bddce2d98394865cf2ed0b144f92bbb6993bc9 (diff) | |
download | libopkele-c18b77c610d0f963a274420a6558629d198818ee.zip libopkele-c18b77c610d0f963a274420a6558629d198818ee.tar.gz libopkele-c18b77c610d0f963a274420a6558629d198818ee.tar.bz2 |
do not tidy XRD documents
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | lib/discovery.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/discovery.cc b/lib/discovery.cc index 6f9926c..b7f2db6 100644 --- a/lib/discovery.cc +++ b/lib/discovery.cc | |||
@@ -1,577 +1,577 @@ | |||
1 | #include <list> | 1 | #include <list> |
2 | #include <opkele/curl.h> | 2 | #include <opkele/curl.h> |
3 | #include <opkele/expat.h> | 3 | #include <opkele/expat.h> |
4 | #include <opkele/uris.h> | 4 | #include <opkele/uris.h> |
5 | #include <opkele/discovery.h> | 5 | #include <opkele/discovery.h> |
6 | #include <opkele/exception.h> | 6 | #include <opkele/exception.h> |
7 | #include <opkele/util.h> | 7 | #include <opkele/util.h> |
8 | #include <opkele/tidy.h> | 8 | #include <opkele/tidy.h> |
9 | #include <opkele/debug.h> | 9 | #include <opkele/debug.h> |
10 | 10 | ||
11 | #include "config.h" | 11 | #include "config.h" |
12 | 12 | ||
13 | #define XRDS_HEADER "X-XRDS-Location" | 13 | #define XRDS_HEADER "X-XRDS-Location" |
14 | #define CT_HEADER "Content-Type" | 14 | #define CT_HEADER "Content-Type" |
15 | 15 | ||
16 | namespace opkele { | 16 | namespace opkele { |
17 | using std::list; | 17 | using std::list; |
18 | using xrd::XRD_t; | 18 | using xrd::XRD_t; |
19 | using xrd::service_t; | 19 | using xrd::service_t; |
20 | 20 | ||
21 | /* TODO: the whole discovery thing needs cleanup and optimization due to | 21 | /* TODO: the whole discovery thing needs cleanup and optimization due to |
22 | * many changes of concept. */ | 22 | * many changes of concept. */ |
23 | 23 | ||
24 | static const char *whitespace = " \t\r\n"; | 24 | static const char *whitespace = " \t\r\n"; |
25 | static const char *i_leaders = "=@+$!("; | 25 | static const char *i_leaders = "=@+$!("; |
26 | static const size_t max_html = 16384; | 26 | static const size_t max_html = 16384; |
27 | 27 | ||
28 | static const struct service_type_t { | 28 | static const struct service_type_t { |
29 | const char *uri; | 29 | const char *uri; |
30 | const char *forceid; | 30 | const char *forceid; |
31 | } op_service_types[] = { | 31 | } op_service_types[] = { |
32 | { STURI_OPENID20_OP, IDURI_SELECT20 }, | 32 | { STURI_OPENID20_OP, IDURI_SELECT20 }, |
33 | { STURI_OPENID20, 0 }, | 33 | { STURI_OPENID20, 0 }, |
34 | { STURI_OPENID11, 0 }, | 34 | { STURI_OPENID11, 0 }, |
35 | { STURI_OPENID10, 0 } | 35 | { STURI_OPENID10, 0 } |
36 | }; | 36 | }; |
37 | enum { | 37 | enum { |
38 | st_index_1 = 2, st_index_2 = 1 | 38 | st_index_1 = 2, st_index_2 = 1 |
39 | }; | 39 | }; |
40 | 40 | ||
41 | 41 | ||
42 | static inline bool is_qelement(const XML_Char *n,const char *qen) { | 42 | static inline bool is_qelement(const XML_Char *n,const char *qen) { |
43 | return !strcasecmp(n,qen); | 43 | return !strcasecmp(n,qen); |
44 | } | 44 | } |
45 | static inline bool is_element(const XML_Char *n,const char *en) { | 45 | static inline bool is_element(const XML_Char *n,const char *en) { |
46 | if(!strcasecmp(n,en)) return true; | 46 | if(!strcasecmp(n,en)) return true; |
47 | int nl = strlen(n), enl = strlen(en); | 47 | int nl = strlen(n), enl = strlen(en); |
48 | if( (nl>=(enl+1)) && n[nl-enl-1]=='\t' | 48 | if( (nl>=(enl+1)) && n[nl-enl-1]=='\t' |
49 | && !strcasecmp(&n[nl-enl],en) ) | 49 | && !strcasecmp(&n[nl-enl],en) ) |
50 | return true; | 50 | return true; |
51 | return false; | 51 | return false; |
52 | } | 52 | } |
53 | 53 | ||
54 | static long element_priority(const XML_Char **a) { | 54 | static long element_priority(const XML_Char **a) { |
55 | for(;*a;++a) | 55 | for(;*a;++a) |
56 | if(!strcasecmp(*(a++),"priority")) { | 56 | if(!strcasecmp(*(a++),"priority")) { |
57 | long rv; | 57 | long rv; |
58 | return (sscanf(*a,"%ld",&rv)==1)?rv:-1; | 58 | return (sscanf(*a,"%ld",&rv)==1)?rv:-1; |
59 | } | 59 | } |
60 | return -1; | 60 | return -1; |
61 | } | 61 | } |
62 | /* TODO: ideally all attributes should be | 62 | /* TODO: ideally all attributes should be |
63 | * retrieved in one run */ | 63 | * retrieved in one run */ |
64 | static const char *element_attr(const XML_Char **a, const char *at) { | 64 | static const char *element_attr(const XML_Char **a, const char *at) { |
65 | for(;*a;++a) | 65 | for(;*a;++a) |
66 | if(!strcasecmp(*(a++),at)) { | 66 | if(!strcasecmp(*(a++),at)) { |
67 | return *a; | 67 | return *a; |
68 | } | 68 | } |
69 | return 0; | 69 | return 0; |
70 | } | 70 | } |
71 | 71 | ||
72 | class idigger_t : public util::curl_t, public util::expat_t { | 72 | class idigger_t : public util::curl_t, public util::expat_t { |
73 | public: | 73 | public: |
74 | string xri_proxy; | 74 | string xri_proxy; |
75 | 75 | ||
76 | enum { | 76 | enum { |
77 | xmode_html = 1, xmode_xrd = 2, xmode_cid = 4, | 77 | xmode_html = 1, xmode_xrd = 2, xmode_cid = 4, |
78 | xmode_noredirs = 8 | 78 | xmode_noredirs = 8 |
79 | }; | 79 | }; |
80 | int xmode; | 80 | int xmode; |
81 | 81 | ||
82 | string xrds_location; | 82 | string xrds_location; |
83 | string http_content_type; | 83 | string http_content_type; |
84 | service_t html_openid1; | 84 | service_t html_openid1; |
85 | service_t html_openid2; | 85 | service_t html_openid2; |
86 | string cdata_buf; | 86 | string cdata_buf; |
87 | long status_code; | 87 | long status_code; |
88 | string status_string; | 88 | string status_string; |
89 | 89 | ||
90 | typedef list<string> pt_stack_t; | 90 | typedef list<string> pt_stack_t; |
91 | pt_stack_t pt_stack; | 91 | pt_stack_t pt_stack; |
92 | int skipping; | 92 | int skipping; |
93 | bool parser_choked; | 93 | bool parser_choked; |
94 | string save_html; | 94 | string save_html; |
95 | 95 | ||
96 | XRD_t *xrd; | 96 | XRD_t *xrd; |
97 | service_t *xrd_service; | 97 | service_t *xrd_service; |
98 | string* cdata; | 98 | string* cdata; |
99 | 99 | ||
100 | idigger_t() | 100 | idigger_t() |
101 | : util::curl_t(easy_init()), | 101 | : util::curl_t(easy_init()), |
102 | util::expat_t(0), | 102 | util::expat_t(0), |
103 | xri_proxy(XRI_PROXY_URL) { | 103 | xri_proxy(XRI_PROXY_URL) { |
104 | CURLcode r; | 104 | CURLcode r; |
105 | (r=misc_sets()) | 105 | (r=misc_sets()) |
106 | || (r=set_write()) | 106 | || (r=set_write()) |
107 | || (r=set_header()) | 107 | || (r=set_header()) |
108 | ; | 108 | ; |
109 | if(r) | 109 | if(r) |
110 | throw exception_curl(OPKELE_CP_ "failed to set curly options",r); | 110 | throw exception_curl(OPKELE_CP_ "failed to set curly options",r); |
111 | } | 111 | } |
112 | ~idigger_t() throw() { } | 112 | ~idigger_t() throw() { } |
113 | 113 | ||
114 | void yadiscover(endpoint_discovery_iterator oi,const string& yurl,const char **types,bool redirs) { | 114 | void yadiscover(endpoint_discovery_iterator oi,const string& yurl,const char **types,bool redirs) { |
115 | idiscovery_t idis; | 115 | idiscovery_t idis; |
116 | idis.xri_identity = false; | 116 | idis.xri_identity = false; |
117 | discover_at(idis,yurl,xmode_html|xmode_xrd|(redirs?0:xmode_noredirs)); | 117 | discover_at(idis,yurl,xmode_html|xmode_xrd|(redirs?0:xmode_noredirs)); |
118 | if(!xrds_location.empty()) { | 118 | if(!xrds_location.empty()) { |
119 | idis.clear(); | 119 | idis.clear(); |
120 | discover_at(idis,xrds_location,xmode_xrd); | 120 | discover_at(idis,xrds_location,xmode_xrd); |
121 | } | 121 | } |
122 | idis.normalized_id = idis.canonicalized_id = yurl; | 122 | idis.normalized_id = idis.canonicalized_id = yurl; |
123 | service_type_t st; | 123 | service_type_t st; |
124 | for(st.uri=*types;*types;st.uri=*(++types)) | 124 | for(st.uri=*types;*types;st.uri=*(++types)) |
125 | queue_endpoints(oi,idis,&st); | 125 | queue_endpoints(oi,idis,&st); |
126 | } | 126 | } |
127 | 127 | ||
128 | string discover(endpoint_discovery_iterator& oi,const string& identity) { | 128 | string discover(endpoint_discovery_iterator& oi,const string& identity) { |
129 | string rv; | 129 | string rv; |
130 | idiscovery_t idis; | 130 | idiscovery_t idis; |
131 | string::size_type fsc = identity.find_first_not_of(whitespace); | 131 | string::size_type fsc = identity.find_first_not_of(whitespace); |
132 | if(fsc==string::npos) | 132 | if(fsc==string::npos) |
133 | throw bad_input(OPKELE_CP_ "whitespace-only identity"); | 133 | throw bad_input(OPKELE_CP_ "whitespace-only identity"); |
134 | string::size_type lsc = identity.find_last_not_of(whitespace); | 134 | string::size_type lsc = identity.find_last_not_of(whitespace); |
135 | assert(lsc!=string::npos); | 135 | assert(lsc!=string::npos); |
136 | if(!strncasecmp(identity.c_str()+fsc,"xri://",sizeof("xri://")-1)) | 136 | if(!strncasecmp(identity.c_str()+fsc,"xri://",sizeof("xri://")-1)) |
137 | fsc += sizeof("xri://")-1; | 137 | fsc += sizeof("xri://")-1; |
138 | if((fsc+1)>=lsc) | 138 | if((fsc+1)>=lsc) |
139 | throw bad_input(OPKELE_CP_ "not a character of importance in identity"); | 139 | throw bad_input(OPKELE_CP_ "not a character of importance in identity"); |
140 | string id(identity,fsc,lsc-fsc+1); | 140 | string id(identity,fsc,lsc-fsc+1); |
141 | idis.clear(); | 141 | idis.clear(); |
142 | if(strchr(i_leaders,id[0])) { | 142 | if(strchr(i_leaders,id[0])) { |
143 | /* TODO: further normalize xri identity? Like folding case | 143 | /* TODO: further normalize xri identity? Like folding case |
144 | * or whatever... */ | 144 | * or whatever... */ |
145 | rv = id; | 145 | rv = id; |
146 | set<string> cids; | 146 | set<string> cids; |
147 | for(const struct service_type_t *st=op_service_types; | 147 | for(const struct service_type_t *st=op_service_types; |
148 | st<&op_service_types[sizeof(op_service_types)/sizeof(*op_service_types)];++st) { | 148 | st<&op_service_types[sizeof(op_service_types)/sizeof(*op_service_types)];++st) { |
149 | idis.clear(); | 149 | idis.clear(); |
150 | discover_at( idis, | 150 | discover_at( idis, |
151 | xri_proxy + util::url_encode(id)+ | 151 | xri_proxy + util::url_encode(id)+ |
152 | "?_xrd_t="+util::url_encode(st->uri)+ | 152 | "?_xrd_t="+util::url_encode(st->uri)+ |
153 | "&_xrd_r=application/xrd%2Bxml" | 153 | "&_xrd_r=application/xrd%2Bxml" |
154 | ";sep=true;refs=true", | 154 | ";sep=true;refs=true", |
155 | xmode_xrd ); | 155 | xmode_xrd ); |
156 | if(status_code==241) continue; | 156 | if(status_code==241) continue; |
157 | if(status_code!=100) | 157 | if(status_code!=100) |
158 | throw failed_xri_resolution(OPKELE_CP_ | 158 | throw failed_xri_resolution(OPKELE_CP_ |
159 | "XRI resolution failed with '"+status_string+"' message" | 159 | "XRI resolution failed with '"+status_string+"' message" |
160 | ", while looking for SEP with type '"+st->uri+"'", status_code); | 160 | ", while looking for SEP with type '"+st->uri+"'", status_code); |
161 | if(idis.xrd.canonical_ids.empty()) | 161 | if(idis.xrd.canonical_ids.empty()) |
162 | throw opkele::failed_discovery(OPKELE_CP_ "No CanonicalID found for XRI identity found"); | 162 | throw opkele::failed_discovery(OPKELE_CP_ "No CanonicalID for XRI identity found"); |
163 | string cid = idis.xrd.canonical_ids.begin()->second; | 163 | string cid = idis.xrd.canonical_ids.begin()->second; |
164 | if(cids.find(cid)==cids.end()) { | 164 | if(cids.find(cid)==cids.end()) { |
165 | cids.insert(cid); | 165 | cids.insert(cid); |
166 | idis.clear(); | 166 | idis.clear(); |
167 | discover_at( idis, | 167 | discover_at( idis, |
168 | xri_proxy + util::url_encode(id)+ | 168 | xri_proxy + util::url_encode(id)+ |
169 | "?_xrd_t="+util::url_encode(st->uri)+ | 169 | "?_xrd_t="+util::url_encode(st->uri)+ |
170 | "&_xrd_r=application/xrd%2Bxml" | 170 | "&_xrd_r=application/xrd%2Bxml" |
171 | ";sep=true;refs=true", | 171 | ";sep=true;refs=true", |
172 | xmode_xrd ); | 172 | xmode_xrd ); |
173 | if(status_code==241) continue; | 173 | if(status_code==241) continue; |
174 | if(status_code!=100) | 174 | if(status_code!=100) |
175 | throw failed_xri_resolution(OPKELE_CP_ | 175 | throw failed_xri_resolution(OPKELE_CP_ |
176 | "XRI resolution failed with '"+status_string+"' message" | 176 | "XRI resolution failed with '"+status_string+"' message" |
177 | ", while looking for SEP with type '"+st->uri+"'" | 177 | ", while looking for SEP with type '"+st->uri+"'" |
178 | " on canonical id", status_code); | 178 | " on canonical id", status_code); |
179 | } | 179 | } |
180 | idis.canonicalized_id = cid; | 180 | idis.canonicalized_id = cid; |
181 | idis.normalized_id = rv; idis.xri_identity = true; | 181 | idis.normalized_id = rv; idis.xri_identity = true; |
182 | queue_endpoints(oi,idis,st); | 182 | queue_endpoints(oi,idis,st); |
183 | } | 183 | } |
184 | }else{ | 184 | }else{ |
185 | idis.xri_identity = false; | 185 | idis.xri_identity = false; |
186 | if(id.find("://")==string::npos) | 186 | if(id.find("://")==string::npos) |
187 | id.insert(0,"http://"); | 187 | id.insert(0,"http://"); |
188 | string::size_type fp = id.find('#'); | 188 | string::size_type fp = id.find('#'); |
189 | if(fp!=string::npos) { | 189 | if(fp!=string::npos) { |
190 | string::size_type qp = id.find('?'); | 190 | string::size_type qp = id.find('?'); |
191 | if(qp==string::npos || qp<fp) | 191 | if(qp==string::npos || qp<fp) |
192 | id.erase(fp); | 192 | id.erase(fp); |
193 | else if(qp>fp) | 193 | else if(qp>fp) |
194 | id.erase(fp,qp-fp); | 194 | id.erase(fp,qp-fp); |
195 | } | 195 | } |
196 | rv = idis.normalized_id = util::rfc_3986_normalize_uri(id); | 196 | rv = idis.normalized_id = util::rfc_3986_normalize_uri(id); |
197 | discover_at(idis,id,xmode_html|xmode_xrd); | 197 | discover_at(idis,id,xmode_html|xmode_xrd); |
198 | const char * eu = 0; | 198 | const char * eu = 0; |
199 | CURLcode r = easy_getinfo(CURLINFO_EFFECTIVE_URL,&eu); | 199 | CURLcode r = easy_getinfo(CURLINFO_EFFECTIVE_URL,&eu); |
200 | if(r) | 200 | if(r) |
201 | throw exception_curl(OPKELE_CP_ "failed to get CURLINFO_EFFECTIVE_URL",r); | 201 | throw exception_curl(OPKELE_CP_ "failed to get CURLINFO_EFFECTIVE_URL",r); |
202 | string cid = util::strip_uri_fragment_part( idis.canonicalized_id = util::rfc_3986_normalize_uri(eu) ); | 202 | string cid = util::strip_uri_fragment_part( idis.canonicalized_id = util::rfc_3986_normalize_uri(eu) ); |
203 | if(xrds_location.empty()) { | 203 | if(xrds_location.empty()) { |
204 | html2xrd(oi,idis); | 204 | html2xrd(oi,idis); |
205 | }else{ | 205 | }else{ |
206 | idis.clear(); | 206 | idis.clear(); |
207 | idis.canonicalized_id = cid; | 207 | idis.canonicalized_id = cid; |
208 | discover_at(idis,xrds_location,xmode_xrd); | 208 | discover_at(idis,xrds_location,xmode_xrd); |
209 | if(idis.xrd.empty()) | 209 | if(idis.xrd.empty()) |
210 | html2xrd(oi,idis); | 210 | html2xrd(oi,idis); |
211 | else{ | 211 | else{ |
212 | for(const service_type_t *st=op_service_types; | 212 | for(const service_type_t *st=op_service_types; |
213 | st<&op_service_types[sizeof(op_service_types)/sizeof(*op_service_types)];++st) | 213 | st<&op_service_types[sizeof(op_service_types)/sizeof(*op_service_types)];++st) |
214 | queue_endpoints(oi,idis,st); | 214 | queue_endpoints(oi,idis,st); |
215 | } | 215 | } |
216 | } | 216 | } |
217 | } | 217 | } |
218 | return rv; | 218 | return rv; |
219 | } | 219 | } |
220 | 220 | ||
221 | void discover_at(idiscovery_t& idis,const string& url,int xm) { | 221 | void discover_at(idiscovery_t& idis,const string& url,int xm) { |
222 | CURLcode r = easy_setopt(CURLOPT_MAXREDIRS, (xm&xmode_noredirs)?0:5); | 222 | CURLcode r = easy_setopt(CURLOPT_MAXREDIRS, (xm&xmode_noredirs)?0:5); |
223 | if(r) | 223 | if(r) |
224 | throw exception_curl(OPKELE_CP_ "failed to set curly maxredirs option"); | 224 | throw exception_curl(OPKELE_CP_ "failed to set curly maxredirs option"); |
225 | if( (r=easy_setopt(CURLOPT_URL,url.c_str())) ) | 225 | if( (r=easy_setopt(CURLOPT_URL,url.c_str())) ) |
226 | throw exception_curl(OPKELE_CP_ "failed to set curly urlie",r); | 226 | throw exception_curl(OPKELE_CP_ "failed to set curly urlie",r); |
227 | 227 | ||
228 | http_content_type.clear(); | 228 | http_content_type.clear(); |
229 | xmode = xm; | 229 | xmode = xm; |
230 | prepare_to_parse(); | 230 | prepare_to_parse(); |
231 | if(xmode&xmode_html) { | 231 | if(xmode&xmode_html) { |
232 | xrds_location.clear(); | 232 | xrds_location.clear(); |
233 | save_html.clear(); | 233 | save_html.clear(); |
234 | save_html.reserve(max_html); | 234 | save_html.reserve(max_html); |
235 | } | 235 | } |
236 | xrd = &idis.xrd; | 236 | xrd = &idis.xrd; |
237 | 237 | ||
238 | r = easy_perform(); | 238 | r = easy_perform(); |
239 | if(r && r!=CURLE_WRITE_ERROR) | 239 | if(r && r!=CURLE_WRITE_ERROR) |
240 | throw exception_curl(OPKELE_CP_ "failed to perform curly request",r); | 240 | throw exception_curl(OPKELE_CP_ "failed to perform curly request",r); |
241 | 241 | ||
242 | if(!parser_choked) { | 242 | if(!parser_choked) { |
243 | parse(0,0,true); | 243 | parse(0,0,true); |
244 | }else{ | 244 | }else if(xmode&xmode_html){ |
245 | /* TODO: do not bother if we've seen xml */ | 245 | /* TODO: do not bother if we've seen xml */ |
246 | try { | 246 | try { |
247 | util::tidy_doc_t td = util::tidy_doc_t::create(); | 247 | util::tidy_doc_t td = util::tidy_doc_t::create(); |
248 | if(!td) | 248 | if(!td) |
249 | throw exception_tidy(OPKELE_CP_ "failed to create htmltidy document"); | 249 | throw exception_tidy(OPKELE_CP_ "failed to create htmltidy document"); |
250 | #ifndef NDEBUG | 250 | #ifndef NDEBUG |
251 | td.opt_set(TidyQuiet,false); | 251 | td.opt_set(TidyQuiet,false); |
252 | td.opt_set(TidyShowWarnings,false); | 252 | td.opt_set(TidyShowWarnings,false); |
253 | #endif /* NDEBUG */ | 253 | #endif /* NDEBUG */ |
254 | td.opt_set(TidyForceOutput,true); | 254 | td.opt_set(TidyForceOutput,true); |
255 | td.opt_set(TidyXhtmlOut,true); | 255 | td.opt_set(TidyXhtmlOut,true); |
256 | td.opt_set(TidyDoctypeMode,TidyDoctypeOmit); | 256 | td.opt_set(TidyDoctypeMode,TidyDoctypeOmit); |
257 | td.opt_set(TidyMark,false); | 257 | td.opt_set(TidyMark,false); |
258 | if(td.parse_string(save_html)<=0) | 258 | if(td.parse_string(save_html)<=0) |
259 | throw exception_tidy(OPKELE_CP_ "tidy failed to parse document"); | 259 | throw exception_tidy(OPKELE_CP_ "tidy failed to parse document"); |
260 | if(td.clean_and_repair()<=0) | 260 | if(td.clean_and_repair()<=0) |
261 | throw exception_tidy(OPKELE_CP_ "tidy failed to clean and repair"); | 261 | throw exception_tidy(OPKELE_CP_ "tidy failed to clean and repair"); |
262 | util::tidy_buf_t tide; | 262 | util::tidy_buf_t tide; |
263 | if(td.save_buffer(tide)<=0) | 263 | if(td.save_buffer(tide)<=0) |
264 | throw exception_tidy(OPKELE_CP_ "tidy failed to save buffer"); | 264 | throw exception_tidy(OPKELE_CP_ "tidy failed to save buffer"); |
265 | prepare_to_parse(); | 265 | prepare_to_parse(); |
266 | parse(tide.c_str(),tide.size(),true); | 266 | parse(tide.c_str(),tide.size(),true); |
267 | }catch(exception_tidy& et) { } | 267 | }catch(exception_tidy& et) { } |
268 | } | 268 | } |
269 | save_html.clear(); | 269 | save_html.clear(); |
270 | } | 270 | } |
271 | 271 | ||
272 | void prepare_to_parse() { | 272 | void prepare_to_parse() { |
273 | (*(expat_t*)this) = parser_create_ns(); | 273 | (*(expat_t*)this) = parser_create_ns(); |
274 | set_user_data(); set_element_handler(); | 274 | set_user_data(); set_element_handler(); |
275 | set_character_data_handler(); | 275 | set_character_data_handler(); |
276 | 276 | ||
277 | if(xmode&xmode_html) { | 277 | if(xmode&xmode_html) { |
278 | html_openid1.clear(); html_openid2.clear(); | 278 | html_openid1.clear(); html_openid2.clear(); |
279 | parser_choked = false; | 279 | parser_choked = false; |
280 | } | 280 | } |
281 | 281 | ||
282 | cdata = 0; xrd_service = 0; skipping = 0; | 282 | cdata = 0; xrd_service = 0; skipping = 0; |
283 | pt_stack.clear(); | 283 | pt_stack.clear(); |
284 | status_code = 100; status_string.clear(); | 284 | status_code = 100; status_string.clear(); |
285 | } | 285 | } |
286 | 286 | ||
287 | void html2xrd(endpoint_discovery_iterator& oi,idiscovery_t& id) { | 287 | void html2xrd(endpoint_discovery_iterator& oi,idiscovery_t& id) { |
288 | XRD_t& x = id.xrd; | 288 | XRD_t& x = id.xrd; |
289 | if(!html_openid2.uris.empty()) { | 289 | if(!html_openid2.uris.empty()) { |
290 | html_openid2.types.insert(STURI_OPENID20); | 290 | html_openid2.types.insert(STURI_OPENID20); |
291 | x.services.add(-1,html_openid2); | 291 | x.services.add(-1,html_openid2); |
292 | queue_endpoints(oi,id,&op_service_types[st_index_2]); | 292 | queue_endpoints(oi,id,&op_service_types[st_index_2]); |
293 | } | 293 | } |
294 | if(!html_openid1.uris.empty()) { | 294 | if(!html_openid1.uris.empty()) { |
295 | html_openid1.types.insert(STURI_OPENID11); | 295 | html_openid1.types.insert(STURI_OPENID11); |
296 | x.services.add(-1,html_openid1); | 296 | x.services.add(-1,html_openid1); |
297 | queue_endpoints(oi,id,&op_service_types[st_index_1]); | 297 | queue_endpoints(oi,id,&op_service_types[st_index_1]); |
298 | } | 298 | } |
299 | } | 299 | } |
300 | 300 | ||
301 | size_t write(void *p,size_t s,size_t nm) { | 301 | size_t write(void *p,size_t s,size_t nm) { |
302 | /* TODO: limit total size */ | 302 | /* TODO: limit total size */ |
303 | size_t bytes = s*nm; | 303 | size_t bytes = s*nm; |
304 | const char *inbuf = (const char*)p; | 304 | const char *inbuf = (const char*)p; |
305 | if(xmode&xmode_html) { | 305 | if(xmode&xmode_html) { |
306 | size_t mbts = save_html.capacity()-save_html.size(); | 306 | size_t mbts = save_html.capacity()-save_html.size(); |
307 | size_t bts = 0; | 307 | size_t bts = 0; |
308 | if(mbts>0) { | 308 | if(mbts>0) { |
309 | bts = (bytes>mbts)?mbts:bytes; | 309 | bts = (bytes>mbts)?mbts:bytes; |
310 | save_html.append(inbuf,bts); | 310 | save_html.append(inbuf,bts); |
311 | } | 311 | } |
312 | if(skipping<0) return bts; | 312 | if(skipping<0) return bts; |
313 | } | 313 | } |
314 | if(skipping<0) return 0; | 314 | if(skipping<0) return 0; |
315 | bool rp = parse(inbuf,bytes,false); | 315 | bool rp = parse(inbuf,bytes,false); |
316 | if(!rp) { | 316 | if(!rp) { |
317 | parser_choked = true; | 317 | parser_choked = true; |
318 | skipping = -1; | 318 | skipping = -1; |
319 | if(!(xmode&xmode_html)) | 319 | if(!(xmode&xmode_html)) |
320 | bytes = 0; | 320 | bytes = 0; |
321 | } | 321 | } |
322 | return bytes; | 322 | return bytes; |
323 | } | 323 | } |
324 | size_t header(void *p,size_t s,size_t nm) { | 324 | size_t header(void *p,size_t s,size_t nm) { |
325 | size_t bytes = s*nm; | 325 | size_t bytes = s*nm; |
326 | const char *h = (const char*)p; | 326 | const char *h = (const char*)p; |
327 | const char *colon = (const char*)memchr(p,':',bytes); | 327 | const char *colon = (const char*)memchr(p,':',bytes); |
328 | const char *space = (const char*)memchr(p,' ',bytes); | 328 | const char *space = (const char*)memchr(p,' ',bytes); |
329 | if(space && ( (!colon) || space<colon ) ) { | 329 | if(space && ( (!colon) || space<colon ) ) { |
330 | xrds_location.clear(); http_content_type.clear(); | 330 | xrds_location.clear(); http_content_type.clear(); |
331 | }else if(colon) { | 331 | }else if(colon) { |
332 | const char *hv = ++colon; | 332 | const char *hv = ++colon; |
333 | size_t hnl = colon-h; | 333 | size_t hnl = colon-h; |
334 | int rb; | 334 | int rb; |
335 | for(rb = bytes-hnl-1;rb>0 && isspace(*hv);++hv,--rb); | 335 | for(rb = bytes-hnl-1;rb>0 && isspace(*hv);++hv,--rb); |
336 | while(rb>0 && isspace(hv[rb-1])) --rb; | 336 | while(rb>0 && isspace(hv[rb-1])) --rb; |
337 | if(rb) { | 337 | if(rb) { |
338 | if( (hnl>=sizeof(XRDS_HEADER)) | 338 | if( (hnl>=sizeof(XRDS_HEADER)) |
339 | && !strncasecmp(h,XRDS_HEADER":", | 339 | && !strncasecmp(h,XRDS_HEADER":", |
340 | sizeof(XRDS_HEADER)) ) { | 340 | sizeof(XRDS_HEADER)) ) { |
341 | xrds_location.assign(hv,rb); | 341 | xrds_location.assign(hv,rb); |
342 | }else if( (hnl>=sizeof(CT_HEADER)) | 342 | }else if( (hnl>=sizeof(CT_HEADER)) |
343 | && !strncasecmp(h,CT_HEADER":", | 343 | && !strncasecmp(h,CT_HEADER":", |
344 | sizeof(CT_HEADER)) ) { | 344 | sizeof(CT_HEADER)) ) { |
345 | const char *sc = (const char*)memchr( | 345 | const char *sc = (const char*)memchr( |
346 | hv,';',rb); | 346 | hv,';',rb); |
347 | http_content_type.assign(hv,sc?(sc-hv):rb); | 347 | http_content_type.assign(hv,sc?(sc-hv):rb); |
348 | } | 348 | } |
349 | } | 349 | } |
350 | } | 350 | } |
351 | return curl_t::header(p,s,nm); | 351 | return curl_t::header(p,s,nm); |
352 | } | 352 | } |
353 | 353 | ||
354 | void start_element(const XML_Char *n,const XML_Char **a) { | 354 | void start_element(const XML_Char *n,const XML_Char **a) { |
355 | if(skipping<0) return; | 355 | if(skipping<0) return; |
356 | if(skipping) { | 356 | if(skipping) { |
357 | if(xmode&xmode_html) | 357 | if(xmode&xmode_html) |
358 | html_start_element(n,a); | 358 | html_start_element(n,a); |
359 | ++skipping; return; | 359 | ++skipping; return; |
360 | } | 360 | } |
361 | if(pt_stack.empty()) { | 361 | if(pt_stack.empty()) { |
362 | if(is_qelement(n,NSURI_XRDS "\tXRDS")) | 362 | if(is_qelement(n,NSURI_XRDS "\tXRDS")) |
363 | return; | 363 | return; |
364 | if(is_qelement(n,NSURI_XRD "\tXRD")) { | 364 | if(is_qelement(n,NSURI_XRD "\tXRD")) { |
365 | assert(xrd); | 365 | assert(xrd); |
366 | xrd->clear(); | 366 | xrd->clear(); |
367 | pt_stack.push_back(n); | 367 | pt_stack.push_back(n); |
368 | }else if(xmode&xmode_html) { | 368 | }else if(xmode&xmode_html) { |
369 | html_start_element(n,a); | 369 | html_start_element(n,a); |
370 | }else{ | 370 | }else{ |
371 | skipping = -1; | 371 | skipping = -1; |
372 | } | 372 | } |
373 | }else{ | 373 | }else{ |
374 | int pt_s = pt_stack.size(); | 374 | int pt_s = pt_stack.size(); |
375 | if(pt_s==1) { | 375 | if(pt_s==1) { |
376 | if(is_qelement(n,NSURI_XRD "\tCanonicalID")) { | 376 | if(is_qelement(n,NSURI_XRD "\tCanonicalID")) { |
377 | assert(xrd); | 377 | assert(xrd); |
378 | cdata = &(xrd->canonical_ids.add(element_priority(a),string())); | 378 | cdata = &(xrd->canonical_ids.add(element_priority(a),string())); |
379 | }else if(is_qelement(n,NSURI_XRD "\tLocalID")) { | 379 | }else if(is_qelement(n,NSURI_XRD "\tLocalID")) { |
380 | assert(xrd); | 380 | assert(xrd); |
381 | cdata = &(xrd->local_ids.add(element_priority(a),string())); | 381 | cdata = &(xrd->local_ids.add(element_priority(a),string())); |
382 | }else if(is_qelement(n,NSURI_XRD "\tProviderID")) { | 382 | }else if(is_qelement(n,NSURI_XRD "\tProviderID")) { |
383 | assert(xrd); | 383 | assert(xrd); |
384 | cdata = &(xrd->provider_id); | 384 | cdata = &(xrd->provider_id); |
385 | }else if(is_qelement(n,NSURI_XRD "\tService")) { | 385 | }else if(is_qelement(n,NSURI_XRD "\tService")) { |
386 | assert(xrd); | 386 | assert(xrd); |
387 | xrd_service = &(xrd->services.add(element_priority(a), | 387 | xrd_service = &(xrd->services.add(element_priority(a), |
388 | service_t())); | 388 | service_t())); |
389 | pt_stack.push_back(n); | 389 | pt_stack.push_back(n); |
390 | }else if(is_qelement(n,NSURI_XRD "\tStatus")) { | 390 | }else if(is_qelement(n,NSURI_XRD "\tStatus")) { |
391 | for(;*a;) { | 391 | for(;*a;) { |
392 | if(!strcasecmp(*(a++),"code")) { | 392 | if(!strcasecmp(*(a++),"code")) { |
393 | if(sscanf(*(a++),"%ld",&status_code)==1 && status_code!=100) { | 393 | if(sscanf(*(a++),"%ld",&status_code)==1 && status_code!=100) { |
394 | cdata = &status_string; | 394 | cdata = &status_string; |
395 | pt_stack.push_back(n); | 395 | pt_stack.push_back(n); |
396 | break; | 396 | break; |
397 | } | 397 | } |
398 | }else | 398 | }else |
399 | ++a; | 399 | ++a; |
400 | } | 400 | } |
401 | }else if(is_qelement(n,NSURI_XRD "\tExpires")) { | 401 | }else if(is_qelement(n,NSURI_XRD "\tExpires")) { |
402 | assert(xrd); | 402 | assert(xrd); |
403 | cdata_buf.clear(); | 403 | cdata_buf.clear(); |
404 | cdata = &cdata_buf; | 404 | cdata = &cdata_buf; |
405 | }else if(xmode&xmode_html) { | 405 | }else if(xmode&xmode_html) { |
406 | html_start_element(n,a); | 406 | html_start_element(n,a); |
407 | }else{ | 407 | }else{ |
408 | skipping = 1; | 408 | skipping = 1; |
409 | } | 409 | } |
410 | }else if(pt_s==2) { | 410 | }else if(pt_s==2) { |
411 | if(is_qelement(pt_stack.back().c_str(), NSURI_XRD "\tService")) { | 411 | if(is_qelement(pt_stack.back().c_str(), NSURI_XRD "\tService")) { |
412 | if(is_qelement(n,NSURI_XRD "\tType")) { | 412 | if(is_qelement(n,NSURI_XRD "\tType")) { |
413 | assert(xrd); assert(xrd_service); | 413 | assert(xrd); assert(xrd_service); |
414 | cdata_buf.clear(); | 414 | cdata_buf.clear(); |
415 | cdata = &cdata_buf; | 415 | cdata = &cdata_buf; |
416 | }else if(is_qelement(n,NSURI_XRD "\tURI")) { | 416 | }else if(is_qelement(n,NSURI_XRD "\tURI")) { |
417 | assert(xrd); assert(xrd_service); | 417 | assert(xrd); assert(xrd_service); |
418 | const char *append = element_attr(a,"append"); | 418 | const char *append = element_attr(a,"append"); |
419 | xrd::uri_t& uri = xrd_service->uris.add(element_priority(a),xrd::uri_t("",append?append:"")); | 419 | xrd::uri_t& uri = xrd_service->uris.add(element_priority(a),xrd::uri_t("",append?append:"")); |
420 | cdata = &uri.uri; | 420 | cdata = &uri.uri; |
421 | }else if(is_qelement(n,NSURI_XRD "\tLocalID") | 421 | }else if(is_qelement(n,NSURI_XRD "\tLocalID") |
422 | || is_qelement(n,NSURI_OPENID10 "\tDelegate") ) { | 422 | || is_qelement(n,NSURI_OPENID10 "\tDelegate") ) { |
423 | assert(xrd); assert(xrd_service); | 423 | assert(xrd); assert(xrd_service); |
424 | cdata = &(xrd_service->local_ids.add(element_priority(a),string())); | 424 | cdata = &(xrd_service->local_ids.add(element_priority(a),string())); |
425 | }else if(is_qelement(n,NSURI_XRD "\tProviderID")) { | 425 | }else if(is_qelement(n,NSURI_XRD "\tProviderID")) { |
426 | assert(xrd); assert(xrd_service); | 426 | assert(xrd); assert(xrd_service); |
427 | cdata = &(xrd_service->provider_id); | 427 | cdata = &(xrd_service->provider_id); |
428 | }else{ | 428 | }else{ |
429 | skipping = 1; | 429 | skipping = 1; |
430 | } | 430 | } |
431 | }else | 431 | }else |
432 | skipping = 1; | 432 | skipping = 1; |
433 | }else if(xmode&xmode_html) { | 433 | }else if(xmode&xmode_html) { |
434 | html_start_element(n,a); | 434 | html_start_element(n,a); |
435 | }else{ | 435 | }else{ |
436 | skipping = 1; | 436 | skipping = 1; |
437 | } | 437 | } |
438 | } | 438 | } |
439 | } | 439 | } |
440 | void end_element(const XML_Char *n) { | 440 | void end_element(const XML_Char *n) { |
441 | if(skipping<0) return; | 441 | if(skipping<0) return; |
442 | if(skipping) { | 442 | if(skipping) { |
443 | --skipping; return; | 443 | --skipping; return; |
444 | } | 444 | } |
445 | if(is_qelement(n,NSURI_XRD "\tType")) { | 445 | if(is_qelement(n,NSURI_XRD "\tType")) { |
446 | assert(xrd); assert(xrd_service); assert(cdata==&cdata_buf); | 446 | assert(xrd); assert(xrd_service); assert(cdata==&cdata_buf); |
447 | xrd_service->types.insert(cdata_buf); | 447 | xrd_service->types.insert(cdata_buf); |
448 | }else if(is_qelement(n,NSURI_XRD "\tService")) { | 448 | }else if(is_qelement(n,NSURI_XRD "\tService")) { |
449 | assert(xrd); assert(xrd_service); | 449 | assert(xrd); assert(xrd_service); |
450 | assert(!pt_stack.empty()); | 450 | assert(!pt_stack.empty()); |
451 | assert(pt_stack.back()==(NSURI_XRD "\tService")); | 451 | assert(pt_stack.back()==(NSURI_XRD "\tService")); |
452 | pt_stack.pop_back(); | 452 | pt_stack.pop_back(); |
453 | xrd_service = 0; | 453 | xrd_service = 0; |
454 | }else if(is_qelement(n,NSURI_XRD "\tStatus")) { | 454 | }else if(is_qelement(n,NSURI_XRD "\tStatus")) { |
455 | assert(xrd); | 455 | assert(xrd); |
456 | if(is_qelement(pt_stack.back().c_str(),n)) { | 456 | if(is_qelement(pt_stack.back().c_str(),n)) { |
457 | assert(cdata==&status_string); | 457 | assert(cdata==&status_string); |
458 | pt_stack.pop_back(); | 458 | pt_stack.pop_back(); |
459 | if(status_code!=100) | 459 | if(status_code!=100) |
460 | skipping = -1; | 460 | skipping = -1; |
461 | } | 461 | } |
462 | }else if(is_qelement(n,NSURI_XRD "\tExpires")) { | 462 | }else if(is_qelement(n,NSURI_XRD "\tExpires")) { |
463 | assert(xrd); | 463 | assert(xrd); |
464 | xrd->expires = util::w3c_to_time(cdata_buf); | 464 | xrd->expires = util::w3c_to_time(cdata_buf); |
465 | }else if((xmode&xmode_html) && is_element(n,"head")) { | 465 | }else if((xmode&xmode_html) && is_element(n,"head")) { |
466 | skipping = -1; | 466 | skipping = -1; |
467 | } | 467 | } |
468 | cdata = 0; | 468 | cdata = 0; |
469 | } | 469 | } |
470 | void character_data(const XML_Char *s,int l) { | 470 | void character_data(const XML_Char *s,int l) { |
471 | if(skipping) return; | 471 | if(skipping) return; |
472 | if(cdata) cdata->append(s,l); | 472 | if(cdata) cdata->append(s,l); |
473 | } | 473 | } |
474 | 474 | ||
475 | void html_start_element(const XML_Char *n,const XML_Char **a) { | 475 | void html_start_element(const XML_Char *n,const XML_Char **a) { |
476 | if(is_element(n,"meta")) { | 476 | if(is_element(n,"meta")) { |
477 | bool heq = false; | 477 | bool heq = false; |
478 | string l; | 478 | string l; |
479 | for(;*a;a+=2) { | 479 | for(;*a;a+=2) { |
480 | if(!( strcasecmp(a[0],"http-equiv") | 480 | if(!( strcasecmp(a[0],"http-equiv") |
481 | || strcasecmp(a[1],XRDS_HEADER) )) | 481 | || strcasecmp(a[1],XRDS_HEADER) )) |
482 | heq = true; | 482 | heq = true; |
483 | else if(!strcasecmp(a[0],"content")) | 483 | else if(!strcasecmp(a[0],"content")) |
484 | l.assign(a[1]); | 484 | l.assign(a[1]); |
485 | } | 485 | } |
486 | if(heq) | 486 | if(heq) |
487 | xrds_location = l; | 487 | xrds_location = l; |
488 | }else if(is_element(n,"link")) { | 488 | }else if(is_element(n,"link")) { |
489 | string rels; | 489 | string rels; |
490 | string href; | 490 | string href; |
491 | for(;*a;a+=2) { | 491 | for(;*a;a+=2) { |
492 | if( !strcasecmp(a[0],"rel") ) { | 492 | if( !strcasecmp(a[0],"rel") ) { |
493 | rels.assign(a[1]); | 493 | rels.assign(a[1]); |
494 | }else if( !strcasecmp(a[0],"href") ) { | 494 | }else if( !strcasecmp(a[0],"href") ) { |
495 | const char *ns = a[1]; | 495 | const char *ns = a[1]; |
496 | for(;*ns && isspace(*ns);++ns); | 496 | for(;*ns && isspace(*ns);++ns); |
497 | href.assign(ns); | 497 | href.assign(ns); |
498 | string::size_type lns=href.find_last_not_of(whitespace); | 498 | string::size_type lns=href.find_last_not_of(whitespace); |
499 | href.erase(lns+1); | 499 | href.erase(lns+1); |
500 | } | 500 | } |
501 | } | 501 | } |
502 | for(string::size_type ns=rels.find_first_not_of(whitespace); | 502 | for(string::size_type ns=rels.find_first_not_of(whitespace); |
503 | ns!=string::npos; ns=rels.find_first_not_of(whitespace,ns)) { | 503 | ns!=string::npos; ns=rels.find_first_not_of(whitespace,ns)) { |
504 | string::size_type s = rels.find_first_of(whitespace,ns); | 504 | string::size_type s = rels.find_first_of(whitespace,ns); |
505 | string rel; | 505 | string rel; |
506 | if(s==string::npos) { | 506 | if(s==string::npos) { |
507 | rel.assign(rels,ns,string::npos); | 507 | rel.assign(rels,ns,string::npos); |
508 | ns = string::npos; | 508 | ns = string::npos; |
509 | }else{ | 509 | }else{ |
510 | rel.assign(rels,ns,s-ns); | 510 | rel.assign(rels,ns,s-ns); |
511 | ns = s; | 511 | ns = s; |
512 | } | 512 | } |
513 | if(rel=="openid.server") | 513 | if(rel=="openid.server") |
514 | html_openid1.uris.add(-1,xrd::uri_t(href)); | 514 | html_openid1.uris.add(-1,xrd::uri_t(href)); |
515 | else if(rel=="openid.delegate") | 515 | else if(rel=="openid.delegate") |
516 | html_openid1.local_ids.add(-1,href); | 516 | html_openid1.local_ids.add(-1,href); |
517 | else if(rel=="openid2.provider") | 517 | else if(rel=="openid2.provider") |
518 | html_openid2.uris.add(-1,xrd::uri_t(href)); | 518 | html_openid2.uris.add(-1,xrd::uri_t(href)); |
519 | else if(rel=="openid2.local_id") | 519 | else if(rel=="openid2.local_id") |
520 | html_openid2.local_ids.add(-1,href); | 520 | html_openid2.local_ids.add(-1,href); |
521 | } | 521 | } |
522 | }else if(is_element(n,"body")) { | 522 | }else if(is_element(n,"body")) { |
523 | skipping = -1; | 523 | skipping = -1; |
524 | } | 524 | } |
525 | } | 525 | } |
526 | 526 | ||
527 | void queue_endpoints(endpoint_discovery_iterator& oi, | 527 | void queue_endpoints(endpoint_discovery_iterator& oi, |
528 | const idiscovery_t &id, | 528 | const idiscovery_t &id, |
529 | const service_type_t *st) { | 529 | const service_type_t *st) { |
530 | openid_endpoint_t ep; | 530 | openid_endpoint_t ep; |
531 | ep.claimed_id = id.canonicalized_id; | 531 | ep.claimed_id = id.canonicalized_id; |
532 | for(xrd::services_t::const_iterator isvc=id.xrd.services.begin(); | 532 | for(xrd::services_t::const_iterator isvc=id.xrd.services.begin(); |
533 | isvc!=id.xrd.services.end(); ++isvc) { | 533 | isvc!=id.xrd.services.end(); ++isvc) { |
534 | const xrd::service_t svc = isvc->second; | 534 | const xrd::service_t svc = isvc->second; |
535 | if(svc.types.find(st->uri)==svc.types.end()) continue; | 535 | if(svc.types.find(st->uri)==svc.types.end()) continue; |
536 | for(xrd::uris_t::const_iterator iu=svc.uris.begin();iu!=svc.uris.end();++iu) { | 536 | for(xrd::uris_t::const_iterator iu=svc.uris.begin();iu!=svc.uris.end();++iu) { |
537 | ep.uri = iu->second.uri; | 537 | ep.uri = iu->second.uri; |
538 | if(id.xri_identity) { | 538 | if(id.xri_identity) { |
539 | if(iu->second.append=="qxri") { | 539 | if(iu->second.append=="qxri") { |
540 | ep.uri += id.normalized_id; | 540 | ep.uri += id.normalized_id; |
541 | } /* TODO: else handle other append attribute values */ | 541 | } /* TODO: else handle other append attribute values */ |
542 | } | 542 | } |
543 | if(st->forceid) { | 543 | if(st->forceid) { |
544 | ep.local_id = ep.claimed_id = st->forceid; | 544 | ep.local_id = ep.claimed_id = st->forceid; |
545 | *(oi++) = ep; | 545 | *(oi++) = ep; |
546 | }else{ | 546 | }else{ |
547 | if(svc.local_ids.empty()) { | 547 | if(svc.local_ids.empty()) { |
548 | ep.local_id = ep.claimed_id; | 548 | ep.local_id = ep.claimed_id; |
549 | *(oi++) = ep; | 549 | *(oi++) = ep; |
550 | }else{ | 550 | }else{ |
551 | for(xrd::local_ids_t::const_iterator ilid=svc.local_ids.begin(); | 551 | for(xrd::local_ids_t::const_iterator ilid=svc.local_ids.begin(); |
552 | ilid!=svc.local_ids.end(); ++ilid) { | 552 | ilid!=svc.local_ids.end(); ++ilid) { |
553 | ep.local_id = ilid->second; | 553 | ep.local_id = ilid->second; |
554 | *(oi++) = ep; | 554 | *(oi++) = ep; |
555 | } | 555 | } |
556 | } | 556 | } |
557 | } | 557 | } |
558 | } | 558 | } |
559 | } | 559 | } |
560 | } | 560 | } |
561 | 561 | ||
562 | }; | 562 | }; |
563 | 563 | ||
564 | string idiscover(endpoint_discovery_iterator oi,const string& identity) { | 564 | string idiscover(endpoint_discovery_iterator oi,const string& identity) { |
565 | idigger_t idigger; | 565 | idigger_t idigger; |
566 | return idigger.discover(oi,identity); | 566 | return idigger.discover(oi,identity); |
567 | } | 567 | } |
568 | 568 | ||
569 | void yadiscover(endpoint_discovery_iterator oi,const string& yurl,const char **types,bool redirs) try { | 569 | void yadiscover(endpoint_discovery_iterator oi,const string& yurl,const char **types,bool redirs) try { |
570 | idigger_t idigger; | 570 | idigger_t idigger; |
571 | idigger.yadiscover(oi,yurl,types,redirs); | 571 | idigger.yadiscover(oi,yurl,types,redirs); |
572 | }catch(exception_curl& ec) { | 572 | }catch(exception_curl& ec) { |
573 | if(redirs || ec._error!=CURLE_TOO_MANY_REDIRECTS) | 573 | if(redirs || ec._error!=CURLE_TOO_MANY_REDIRECTS) |
574 | throw; | 574 | throw; |
575 | } | 575 | } |
576 | 576 | ||
577 | } | 577 | } |