summaryrefslogtreecommitdiffabout
path: root/include
authorMichael Krelin <hacker@klever.net>2007-01-12 00:28:16 (UTC)
committer Michael Krelin <hacker@klever.net>2007-01-12 00:28:16 (UTC)
commit4cc2e58186e8cd9b96a3573c92f6664064cf11fe (patch) (side-by-side diff)
tree762943dfd3db8b6c48d5b31418310962376746d3 /include
parentf5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88 (diff)
downloadlibopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.zip
libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.gz
libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.bz2
extended server and consumer classes
Diffstat (limited to 'include') (more/less context) (ignore whitespace changes)
-rw-r--r--include/Makefile.am4
-rw-r--r--include/opkele/consumer.h8
-rw-r--r--include/opkele/server.h6
-rw-r--r--include/opkele/xconsumer.h41
-rw-r--r--include/opkele/xserver.h37
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
@@ -10,3 +10,5 @@ nobase_include_HEADERS = \
opkele/sreg.h \
- opkele/extension_chain.h
+ opkele/extension_chain.h \
+ opkele/xconsumer.h \
+ opkele/xserver.h
EXTRA_DIST = \
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
@@ -89,3 +89,3 @@ namespace opkele {
*/
- string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
+ virtual string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
/**
@@ -100,3 +100,3 @@ namespace opkele {
*/
- string checkid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
+ virtual string checkid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
/**
@@ -112,3 +112,3 @@ namespace opkele {
*/
- string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
+ virtual string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0);
/**
@@ -125,3 +125,3 @@ namespace opkele {
*/
- void id_res(const params_t& pin,const string& identity="",extension_t *ext=0);
+ virtual void id_res(const params_t& pin,const string& identity="",extension_t *ext=0);
/**
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
@@ -66,3 +66,3 @@ namespace opkele {
*/
- void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0);
+ virtual void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0);
/**
@@ -75,3 +75,3 @@ namespace opkele {
*/
- void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0);
+ virtual void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0);
/**
@@ -87,3 +87,3 @@ namespace opkele {
*/
- void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0);
+ virtual void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0);
/**
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 @@
+#ifndef __OPKELE_XCONSUMER_H
+#define __OPKELE_XCONSUMER_H
+
+/**
+ * @file
+ * @brief OpenID consumer with built-in extension chain
+ */
+
+#include <opkele/extension_chain.h>
+#include <opkele/consumer.h>
+
+/**
+ * @brief the main opkele namespace
+ */
+namespace opkele {
+
+ /**
+ * Extended OpenID consumer implementation with built in
+ * extensions chain.
+ */
+ class xconsumer_t : public consumer_t, public extension_chain_t {
+ public:
+
+ string checkid_immediate(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0) {
+ return consumer_t::checkid_immediate(identity,return_to,trust_root,this);
+ }
+ string chekid_setup(const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0) {
+ return consumer_t::checkid_setup(identity,return_to,trust_root,this);
+ }
+ string checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root="",extension_t *ext=0) {
+ return consumer_t::checkid_(mode,identity,return_to,trust_root,this);
+ }
+ void id_res(const params_t& pin,const string& identity="",extension_t *ext=0) {
+ consumer_t::id_res(pin,identity,this);
+ }
+
+ };
+
+}
+
+#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 @@
+#ifndef __OPKELE_XSERVER_H
+#define __OPKELE_XSERVER_H
+
+/**
+ * @file
+ * @brief OpenID server with built-in extension chain
+ */
+
+#include <opkele/extension_chain.h>
+#include <opkele/server.h>
+
+/**
+ * @brief the main opkele namespace
+ */
+namespace opkele {
+
+ /**
+ * Extended OpenID server implementationwith built in
+ * extensions chain.
+ */
+ class xserver_t : public server_t, public extension_chain_t {
+ public:
+
+ void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
+ server_t::checkid_immediate(pin,return_to,pout,this);
+ }
+ void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
+ server_t::checkid_setup(pin,return_to,pout,this);
+ }
+ void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
+ server_t::checkid_(mode,pin,return_to,pout,this);
+ }
+ };
+
+}
+
+#endif /* __OPKELE_XSERVER_H */