author | Michael Krelin <hacker@klever.net> | 2008-03-03 15:57:15 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-03-03 15:57:15 (UTC) |
commit | c28479399ef0fedeb6bf14ec665bb4c427654356 (patch) (unidiff) | |
tree | ff1dfe84a54f717772bdb6233a5cbfedb57788d1 | |
parent | 0182b9dee269f1a8f3fc0794bfdf4a143fa1b5be (diff) | |
download | libopkele-c28479399ef0fedeb6bf14ec665bb4c427654356.zip libopkele-c28479399ef0fedeb6bf14ec665bb4c427654356.tar.gz libopkele-c28479399ef0fedeb6bf14ec665bb4c427654356.tar.bz2 |
introduced base_message class as a base for basic_openid_message
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/types.h | 42 | ||||
-rw-r--r-- | lib/Makefile.am | 2 | ||||
-rw-r--r-- | lib/message.cc (renamed from lib/openid_message.cc) | 94 |
3 files changed, 73 insertions, 65 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h index ffb9afb..64f165c 100644 --- a/include/opkele/types.h +++ b/include/opkele/types.h | |||
@@ -115,42 +115,58 @@ namespace opkele { | |||
115 | 115 | ||
116 | /** | 116 | /** |
117 | * the shared_ptr<> for association_t object type | 117 | * the shared_ptr<> for association_t object type |
118 | */ | 118 | */ |
119 | typedef tr1mem::shared_ptr<association_t> assoc_t; | 119 | typedef tr1mem::shared_ptr<association_t> assoc_t; |
120 | 120 | ||
121 | class basic_openid_message { | 121 | class basic_message { |
122 | public: | 122 | public: |
123 | typedef list<string> fields_t; | 123 | typedef list<string> fields_t; |
124 | typedef util::forward_iterator_proxy< | 124 | typedef util::forward_iterator_proxy< |
125 | string,const string&,const string* | 125 | string,const string&,const string* |
126 | > fields_iterator; | 126 | > fields_iterator; |
127 | 127 | ||
128 | basic_openid_message() { } | 128 | basic_message() { } |
129 | virtual ~basic_openid_message() { } | 129 | virtual ~basic_message() { } |
130 | basic_openid_message(const basic_openid_message& x); | 130 | basic_message(const basic_message& x); |
131 | void copy_to(basic_openid_message& x) const; | 131 | void copy_to(basic_message& x) const; |
132 | void append_to(basic_openid_message& x) const; | 132 | void append_to(basic_message& x) const; |
133 | 133 | ||
134 | virtual bool has_field(const string& n) const = 0; | 134 | virtual bool has_field(const string& n) const = 0; |
135 | virtual const string& get_field(const string& n) const = 0; | 135 | virtual const string& get_field(const string& n) const = 0; |
136 | 136 | ||
137 | virtual bool has_ns(const string& uri) const; | ||
138 | virtual string get_ns(const string& uri) const; | ||
139 | |||
140 | virtual fields_iterator fields_begin() const = 0; | 137 | virtual fields_iterator fields_begin() const = 0; |
141 | virtual fields_iterator fields_end() const = 0; | 138 | virtual fields_iterator fields_end() const = 0; |
142 | 139 | ||
143 | virtual string append_query(const string& url,const char *pfx="openid.") const; | 140 | virtual string append_query(const string& url,const char *pfx=0) const; |
144 | virtual string query_string(const char *pfx="openid.") const; | 141 | virtual string query_string(const char *pfx=0) const; |
145 | |||
146 | 142 | ||
147 | virtual void reset_fields(); | 143 | virtual void reset_fields(); |
148 | virtual void set_field(const string& n,const string& v); | 144 | virtual void set_field(const string& n,const string& v); |
149 | virtual void reset_field(const string& n); | 145 | virtual void reset_field(const string& n); |
150 | 146 | ||
147 | }; | ||
148 | |||
149 | class basic_openid_message : public basic_message { | ||
150 | public: | ||
151 | typedef list<string> fields_t; | ||
152 | typedef util::forward_iterator_proxy< | ||
153 | string,const string&,const string* | ||
154 | > fields_iterator; | ||
155 | |||
156 | basic_openid_message() { } | ||
157 | basic_openid_message(const basic_openid_message& x); | ||
158 | |||
159 | virtual bool has_ns(const string& uri) const; | ||
160 | virtual string get_ns(const string& uri) const; | ||
161 | |||
162 | virtual string append_query(const string& url,const char *pfx="openid.") const { | ||
163 | return basic_message::append_query(url,pfx); } | ||
164 | virtual string query_string(const char *pfx="openid.") const { | ||
165 | return basic_message::query_string(pfx); } | ||
166 | |||
151 | virtual void from_keyvalues(const string& kv); | 167 | virtual void from_keyvalues(const string& kv); |
152 | virtual void to_keyvalues(ostream& o) const; | 168 | virtual void to_keyvalues(ostream& o) const; |
153 | 169 | ||
154 | virtual void to_htmlhiddens(ostream& o,const char* pfx=0) const; | 170 | virtual void to_htmlhiddens(ostream& o,const char* pfx=0) const; |
155 | 171 | ||
156 | void add_to_signed(const string& fields); | 172 | void add_to_signed(const string& fields); |
@@ -161,14 +177,12 @@ namespace opkele { | |||
161 | class openid_message_t : public basic_openid_message, public map<string,string> { | 177 | class openid_message_t : public basic_openid_message, public map<string,string> { |
162 | public: | 178 | public: |
163 | openid_message_t() { } | 179 | openid_message_t() { } |
164 | openid_message_t(const basic_openid_message& x) | 180 | openid_message_t(const basic_openid_message& x) |
165 | : basic_openid_message(x) { } | 181 | : basic_openid_message(x) { } |
166 | 182 | ||
167 | void copy_to(basic_openid_message& x) const; | ||
168 | |||
169 | bool has_field(const string& n) const; | 183 | bool has_field(const string& n) const; |
170 | const string& get_field(const string& n) const; | 184 | const string& get_field(const string& n) const; |
171 | virtual fields_iterator fields_begin() const; | 185 | virtual fields_iterator fields_begin() const; |
172 | virtual fields_iterator fields_end() const; | 186 | virtual fields_iterator fields_end() const; |
173 | 187 | ||
174 | void reset_fields(); | 188 | void reset_fields(); |
diff --git a/lib/Makefile.am b/lib/Makefile.am index e8bfbf5..9b25b42 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am | |||
@@ -25,10 +25,10 @@ libopkele_la_SOURCES = \ | |||
25 | extension.cc \ | 25 | extension.cc \ |
26 | sreg.cc \ | 26 | sreg.cc \ |
27 | extension_chain.cc \ | 27 | extension_chain.cc \ |
28 | curl.cc expat.cc \ | 28 | curl.cc expat.cc \ |
29 | discovery.cc \ | 29 | discovery.cc \ |
30 | basic_rp.cc prequeue_rp.cc \ | 30 | basic_rp.cc prequeue_rp.cc \ |
31 | openid_message.cc \ | 31 | message.cc \ |
32 | basic_op.cc verify_op.cc | 32 | basic_op.cc verify_op.cc |
33 | libopkele_la_LDFLAGS = \ | 33 | libopkele_la_LDFLAGS = \ |
34 | -version-info 2:0:0 | 34 | -version-info 2:0:0 |
diff --git a/lib/openid_message.cc b/lib/message.cc index e244f43..78f20f4 100644 --- a/lib/openid_message.cc +++ b/lib/message.cc | |||
@@ -9,77 +9,47 @@ | |||
9 | namespace opkele { | 9 | namespace opkele { |
10 | using std::input_iterator_tag; | 10 | using std::input_iterator_tag; |
11 | using std::unary_function; | 11 | using std::unary_function; |
12 | 12 | ||
13 | struct __om_copier : public unary_function<const string&,void> { | 13 | struct __om_copier : public unary_function<const string&,void> { |
14 | public: | 14 | public: |
15 | const basic_openid_message& from; | 15 | const basic_message& from; |
16 | basic_openid_message& to; | 16 | basic_message& to; |
17 | 17 | ||
18 | __om_copier(basic_openid_message& t,const basic_openid_message& f) | 18 | __om_copier(basic_message& t,const basic_message& f) |
19 | : from(f), to(t) { } | 19 | : from(f), to(t) { } |
20 | 20 | ||
21 | result_type operator()(argument_type f) { | 21 | result_type operator()(argument_type f) { |
22 | to.set_field(f,from.get_field(f)); } | 22 | to.set_field(f,from.get_field(f)); } |
23 | }; | 23 | }; |
24 | 24 | ||
25 | basic_openid_message::basic_openid_message(const basic_openid_message& x) { | 25 | basic_message::basic_message(const basic_message& x) { |
26 | x.copy_to(*this); | 26 | x.copy_to(*this); |
27 | } | 27 | } |
28 | void basic_openid_message::copy_to(basic_openid_message& x) const { | 28 | void basic_message::copy_to(basic_message& x) const { |
29 | x.reset_fields(); | 29 | x.reset_fields(); |
30 | for_each(fields_begin(),fields_end(), | 30 | for_each(fields_begin(),fields_end(), |
31 | __om_copier(x,*this) ); | 31 | __om_copier(x,*this) ); |
32 | } | 32 | } |
33 | void basic_openid_message::append_to(basic_openid_message& x) const { | 33 | void basic_message::append_to(basic_message& x) const { |
34 | for_each(fields_begin(),fields_end(), | 34 | for_each(fields_begin(),fields_end(), |
35 | __om_copier(x,*this) ); | 35 | __om_copier(x,*this) ); |
36 | } | 36 | } |
37 | 37 | ||
38 | struct __om_ns_finder : public unary_function<const string&,bool> { | ||
39 | public: | ||
40 | const basic_openid_message& om; | ||
41 | const string& uri; | ||
42 | |||
43 | __om_ns_finder(const basic_openid_message& m, | ||
44 | const string& u) : om(m), uri(u) { } | ||
45 | |||
46 | result_type operator()(argument_type f) { | ||
47 | return | ||
48 | (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1)) | ||
49 | && om.get_field(f)==uri ; | ||
50 | } | ||
51 | }; | ||
52 | |||
53 | bool basic_openid_message::has_ns(const string& uri) const { | ||
54 | fields_iterator ei = fields_end(); | ||
55 | fields_iterator i = find_if(fields_begin(),fields_end(), | ||
56 | __om_ns_finder(*this,uri)); | ||
57 | return !(i==ei); | ||
58 | } | ||
59 | string basic_openid_message::get_ns(const string& uri) const { | ||
60 | fields_iterator ei = fields_end(); | ||
61 | fields_iterator i = find_if(fields_begin(),fields_end(), | ||
62 | __om_ns_finder(*this,uri)); | ||
63 | if(i==ei) | ||
64 | throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri); | ||
65 | return i->substr(3); | ||
66 | } | ||
67 | |||
68 | struct __om_query_builder : public unary_function<const string&,void> { | 38 | struct __om_query_builder : public unary_function<const string&,void> { |
69 | public: | 39 | public: |
70 | const basic_openid_message& om; | 40 | const basic_message& om; |
71 | bool first; | 41 | bool first; |
72 | string& rv; | 42 | string& rv; |
73 | const char *pfx; | 43 | const char *pfx; |
74 | 44 | ||
75 | __om_query_builder(const char *p,string& r,const basic_openid_message& m) | 45 | __om_query_builder(const char *p,string& r,const basic_message& m) |
76 | : om(m), first(true), rv(r), pfx(p) { | 46 | : om(m), first(true), rv(r), pfx(p) { |
77 | for_each(om.fields_begin(),om.fields_end(),*this); | 47 | for_each(om.fields_begin(),om.fields_end(),*this); |
78 | } | 48 | } |
79 | __om_query_builder(const char *p,string& r,const basic_openid_message& m,const string& u) | 49 | __om_query_builder(const char *p,string& r,const basic_message& m,const string& u) |
80 | : om(m), first(true), rv(r), pfx(p) { | 50 | : om(m), first(true), rv(r), pfx(p) { |
81 | rv = u; | 51 | rv = u; |
82 | if(rv.find('?')==string::npos) | 52 | if(rv.find('?')==string::npos) |
83 | rv += '?'; | 53 | rv += '?'; |
84 | else | 54 | else |
85 | first = false; | 55 | first = false; |
@@ -95,31 +65,61 @@ namespace opkele { | |||
95 | rv+= f; | 65 | rv+= f; |
96 | rv += '='; | 66 | rv += '='; |
97 | rv += util::url_encode(om.get_field(f)); | 67 | rv += util::url_encode(om.get_field(f)); |
98 | } | 68 | } |
99 | }; | 69 | }; |
100 | 70 | ||
101 | string basic_openid_message::append_query(const string& url,const char *pfx) const { | 71 | string basic_message::append_query(const string& url,const char *pfx) const { |
102 | string rv; | 72 | string rv; |
103 | return __om_query_builder(pfx,rv,*this,url).rv; | 73 | return __om_query_builder(pfx,rv,*this,url).rv; |
104 | } | 74 | } |
105 | string basic_openid_message::query_string(const char *pfx) const { | 75 | string basic_message::query_string(const char *pfx) const { |
106 | string rv; | 76 | string rv; |
107 | return __om_query_builder(pfx,rv,*this).rv; | 77 | return __om_query_builder(pfx,rv,*this).rv; |
108 | } | 78 | } |
109 | 79 | ||
110 | void basic_openid_message::reset_fields() { | 80 | void basic_message::reset_fields() { |
111 | throw not_implemented(OPKELE_CP_ "reset_fields() not implemented"); | 81 | throw not_implemented(OPKELE_CP_ "reset_fields() not implemented"); |
112 | } | 82 | } |
113 | void basic_openid_message::set_field(const string&,const string&) { | 83 | void basic_message::set_field(const string&,const string&) { |
114 | throw not_implemented(OPKELE_CP_ "set_field() not implemented"); | 84 | throw not_implemented(OPKELE_CP_ "set_field() not implemented"); |
115 | } | 85 | } |
116 | void basic_openid_message::reset_field(const string&) { | 86 | void basic_message::reset_field(const string&) { |
117 | throw not_implemented(OPKELE_CP_ "reset_field() not implemented"); | 87 | throw not_implemented(OPKELE_CP_ "reset_field() not implemented"); |
118 | } | 88 | } |
119 | 89 | ||
90 | struct __om_ns_finder : public unary_function<const string&,bool> { | ||
91 | public: | ||
92 | const basic_openid_message& om; | ||
93 | const string& uri; | ||
94 | |||
95 | __om_ns_finder(const basic_openid_message& m, | ||
96 | const string& u) : om(m), uri(u) { } | ||
97 | |||
98 | result_type operator()(argument_type f) { | ||
99 | return | ||
100 | (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1)) | ||
101 | && om.get_field(f)==uri ; | ||
102 | } | ||
103 | }; | ||
104 | |||
105 | bool basic_openid_message::has_ns(const string& uri) const { | ||
106 | fields_iterator ei = fields_end(); | ||
107 | fields_iterator i = find_if(fields_begin(),fields_end(), | ||
108 | __om_ns_finder(*this,uri)); | ||
109 | return !(i==ei); | ||
110 | } | ||
111 | string basic_openid_message::get_ns(const string& uri) const { | ||
112 | fields_iterator ei = fields_end(); | ||
113 | fields_iterator i = find_if(fields_begin(),fields_end(), | ||
114 | __om_ns_finder(*this,uri)); | ||
115 | if(i==ei) | ||
116 | throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri); | ||
117 | return i->substr(3); | ||
118 | } | ||
119 | |||
120 | void basic_openid_message::from_keyvalues(const string& kv) { | 120 | void basic_openid_message::from_keyvalues(const string& kv) { |
121 | reset_fields(); | 121 | reset_fields(); |
122 | string::size_type p = 0; | 122 | string::size_type p = 0; |
123 | while(true) { | 123 | while(true) { |
124 | string::size_type co = kv.find(':',p); | 124 | string::size_type co = kv.find(':',p); |
125 | if(co==string::npos) | 125 | if(co==string::npos) |
@@ -237,18 +237,12 @@ namespace opkele { | |||
237 | throw exception(OPKELE_CP_ "Failed to allocate namespace"); | 237 | throw exception(OPKELE_CP_ "Failed to allocate namespace"); |
238 | } | 238 | } |
239 | set_field("ns."+rv,uri); | 239 | set_field("ns."+rv,uri); |
240 | return rv; | 240 | return rv; |
241 | } | 241 | } |
242 | 242 | ||
243 | void openid_message_t::copy_to(basic_openid_message& x) const { | ||
244 | x.reset_fields(); | ||
245 | for(const_iterator i=begin();i!=end();++i) | ||
246 | x.set_field(i->first,i->second); | ||
247 | } | ||
248 | |||
249 | bool openid_message_t::has_field(const string& n) const { | 243 | bool openid_message_t::has_field(const string& n) const { |
250 | return find(n)!=end(); | 244 | return find(n)!=end(); |
251 | } | 245 | } |
252 | const string& openid_message_t::get_field(const string& n) const { | 246 | const string& openid_message_t::get_field(const string& n) const { |
253 | const_iterator i=find(n); | 247 | const_iterator i=find(n); |
254 | if(i==end()) | 248 | if(i==end()) |