author | Michael Krelin <hacker@klever.net> | 2007-01-12 00:28:16 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-01-12 00:28:16 (UTC) |
commit | 4cc2e58186e8cd9b96a3573c92f6664064cf11fe (patch) (unidiff) | |
tree | 762943dfd3db8b6c48d5b31418310962376746d3 /include | |
parent | f5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88 (diff) | |
download | libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.zip libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.gz libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.bz2 |
extended server and consumer classes
-rw-r--r-- | include/Makefile.am | 4 | ||||
-rw-r--r-- | include/opkele/consumer.h | 8 | ||||
-rw-r--r-- | include/opkele/server.h | 6 | ||||
-rw-r--r-- | include/opkele/xconsumer.h | 41 | ||||
-rw-r--r-- | include/opkele/xserver.h | 37 |
5 files changed, 88 insertions, 8 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 2c190b8..f3551f5 100644 --- a/include/Makefile.am +++ b/include/Makefile.am | |||
@@ -8,7 +8,9 @@ nobase_include_HEADERS = \ | |||
8 | opkele/consumer.h \ | 8 | opkele/consumer.h \ |
9 | opkele/extension.h \ | 9 | opkele/extension.h \ |
10 | opkele/sreg.h \ | 10 | opkele/sreg.h \ |
11 | opkele/extension_chain.h | 11 | opkele/extension_chain.h \ |
12 | opkele/xconsumer.h \ | ||
13 | opkele/xserver.h | ||
12 | EXTRA_DIST = \ | 14 | EXTRA_DIST = \ |
13 | opkele/data.h \ | 15 | opkele/data.h \ |
14 | opkele/util.h | 16 | opkele/util.h |
diff --git a/include/opkele/consumer.h b/include/opkele/consumer.h index f9939cf..f32509e 100644 --- a/include/opkele/consumer.h +++ b/include/opkele/consumer.h | |||
@@ -87,7 +87,7 @@ namespace opkele { | |||
87 | * @return the location string | 87 | * @return the location string |
88 | * @throw exception in case of error | 88 | * @throw exception in case of error |
89 | */ | 89 | */ |
90 | string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); | 90 | virtual string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); |
91 | /** | 91 | /** |
92 | * prepare the parameters for the checkid_setup | 92 | * prepare the parameters for the checkid_setup |
93 | * request. | 93 | * request. |
@@ -98,7 +98,7 @@ namespace opkele { | |||
98 | * @return the location string | 98 | * @return the location string |
99 | * @throw exception in case of error | 99 | * @throw exception in case of error |
100 | */ | 100 | */ |
101 | string checkid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); | 101 | virtual string checkid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); |
102 | /** | 102 | /** |
103 | * the actual implementation behind checkid_immediate() and | 103 | * the actual implementation behind checkid_immediate() and |
104 | * checkid_setup() functions. | 104 | * checkid_setup() functions. |
@@ -110,7 +110,7 @@ namespace opkele { | |||
110 | * @return the location string | 110 | * @return the location string |
111 | * @throw exception in case of error | 111 | * @throw exception in case of error |
112 | */ | 112 | */ |
113 | string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); | 113 | virtual string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0); |
114 | /** | 114 | /** |
115 | * verify the id_res response | 115 | * verify the id_res response |
116 | * @param pin the response parameters | 116 | * @param pin the response parameters |
@@ -123,7 +123,7 @@ namespace opkele { | |||
123 | * @throw id_res_failed in case of failure | 123 | * @throw id_res_failed in case of failure |
124 | * @throw exception in case of other failures | 124 | * @throw exception in case of other failures |
125 | */ | 125 | */ |
126 | void id_res(const params_t& pin,const string& identity="",extension_t *ext=0); | 126 | virtual void id_res(const params_t& pin,const string& identity="",extension_t *ext=0); |
127 | /** | 127 | /** |
128 | * perform a check_authentication request. | 128 | * perform a check_authentication request. |
129 | * @param server the OpenID server | 129 | * @param server the OpenID server |
diff --git a/include/opkele/server.h b/include/opkele/server.h index bf131d8..598eb47 100644 --- a/include/opkele/server.h +++ b/include/opkele/server.h | |||
@@ -64,7 +64,7 @@ namespace opkele { | |||
64 | * @param ext pointer to the extension hooks object | 64 | * @param ext pointer to the extension hooks object |
65 | * @throw exception in case of errors or negative reply | 65 | * @throw exception in case of errors or negative reply |
66 | */ | 66 | */ |
67 | void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); | 67 | virtual void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); |
68 | /** | 68 | /** |
69 | * process the checkid_setup request. | 69 | * process the checkid_setup request. |
70 | * @param pin the incoming request parameters | 70 | * @param pin the incoming request parameters |
@@ -73,7 +73,7 @@ namespace opkele { | |||
73 | * @param ext pointer to the extension hooks object | 73 | * @param ext pointer to the extension hooks object |
74 | * @throw exception in case of errors or negative reply | 74 | * @throw exception in case of errors or negative reply |
75 | */ | 75 | */ |
76 | void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); | 76 | virtual void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); |
77 | /** | 77 | /** |
78 | * the actual functionality behind checkid_immediate() and | 78 | * the actual functionality behind checkid_immediate() and |
79 | * checkid_setup() | 79 | * checkid_setup() |
@@ -85,7 +85,7 @@ namespace opkele { | |||
85 | * @param ext pointer to the extension hooks object | 85 | * @param ext pointer to the extension hooks object |
86 | * @throw exception in case of errors or negative reply | 86 | * @throw exception in case of errors or negative reply |
87 | */ | 87 | */ |
88 | void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); | 88 | virtual void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); |
89 | /** | 89 | /** |
90 | * process the check_authentication request. | 90 | * process the check_authentication request. |
91 | * @param pin incoming request parameters | 91 | * @param pin incoming request parameters |
diff --git a/include/opkele/xconsumer.h b/include/opkele/xconsumer.h new file mode 100644 index 0000000..14a8aaa --- a/dev/null +++ b/include/opkele/xconsumer.h | |||
@@ -0,0 +1,41 @@ | |||
1 | #ifndef __OPKELE_XCONSUMER_H | ||
2 | #define __OPKELE_XCONSUMER_H | ||
3 | |||
4 | /** | ||
5 | * @file | ||
6 | * @brief OpenID consumer with built-in extension chain | ||
7 | */ | ||
8 | |||
9 | #include <opkele/extension_chain.h> | ||
10 | #include <opkele/consumer.h> | ||
11 | |||
12 | /** | ||
13 | * @brief the main opkele namespace | ||
14 | */ | ||
15 | namespace opkele { | ||
16 | |||
17 | /** | ||
18 | * Extended OpenID consumer implementation with built in | ||
19 | * extensions chain. | ||
20 | */ | ||
21 | class xconsumer_t : public consumer_t, public extension_chain_t { | ||
22 | public: | ||
23 | |||
24 | string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0) { | ||
25 | return consumer_t::checkid_immediate(identity,return_to,trust_root,this); | ||
26 | } | ||
27 | string chekid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0) { | ||
28 | return consumer_t::checkid_setup(identity,return_to,trust_root,this); | ||
29 | } | ||
30 | string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0) { | ||
31 | return consumer_t::checkid_(mode,identity,return_to,trust_root,this); | ||
32 | } | ||
33 | void id_res(const params_t& pin,const string& identity="",extension_t *ext=0) { | ||
34 | consumer_t::id_res(pin,identity,this); | ||
35 | } | ||
36 | |||
37 | }; | ||
38 | |||
39 | } | ||
40 | |||
41 | #endif /* __OPKELE_XCONSUMER_H */ | ||
diff --git a/include/opkele/xserver.h b/include/opkele/xserver.h new file mode 100644 index 0000000..e29bfe6 --- a/dev/null +++ b/include/opkele/xserver.h | |||
@@ -0,0 +1,37 @@ | |||
1 | #ifndef __OPKELE_XSERVER_H | ||
2 | #define __OPKELE_XSERVER_H | ||
3 | |||
4 | /** | ||
5 | * @file | ||
6 | * @brief OpenID server with built-in extension chain | ||
7 | */ | ||
8 | |||
9 | #include <opkele/extension_chain.h> | ||
10 | #include <opkele/server.h> | ||
11 | |||
12 | /** | ||
13 | * @brief the main opkele namespace | ||
14 | */ | ||
15 | namespace opkele { | ||
16 | |||
17 | /** | ||
18 | * Extended OpenID server implementationwith built in | ||
19 | * extensions chain. | ||
20 | */ | ||
21 | class xserver_t : public server_t, public extension_chain_t { | ||
22 | public: | ||
23 | |||
24 | void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) { | ||
25 | server_t::checkid_immediate(pin,return_to,pout,this); | ||
26 | } | ||
27 | void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) { | ||
28 | server_t::checkid_setup(pin,return_to,pout,this); | ||
29 | } | ||
30 | void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) { | ||
31 | server_t::checkid_(mode,pin,return_to,pout,this); | ||
32 | } | ||
33 | }; | ||
34 | |||
35 | } | ||
36 | |||
37 | #endif /* __OPKELE_XSERVER_H */ | ||