summaryrefslogtreecommitdiffabout
path: root/include
Unidiff
Diffstat (limited to 'include') (more/less context) (show whitespace changes)
-rw-r--r--include/opkele/oauth/consumer.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/include/opkele/oauth/consumer.h b/include/opkele/oauth/consumer.h
index 9196297..eb4f753 100644
--- a/include/opkele/oauth/consumer.h
+++ b/include/opkele/oauth/consumer.h
@@ -1,101 +1,107 @@
1#ifndef __OPKELE_OAUTH_CONSUMER_H 1#ifndef __OPKELE_OAUTH_CONSUMER_H
2#define __OPKELE_OAUTH_CONSUMER_H 2#define __OPKELE_OAUTH_CONSUMER_H
3 3
4#include <string> 4#include <string>
5#include <opkele/types.h> 5#include <opkele/types.h>
6#include <opkele/oauth.h> 6#include <opkele/oauth.h>
7#include <opkele/curl.h> 7#include <opkele/curl.h>
8 8
9namespace opkele { 9namespace opkele {
10 namespace oauth { 10 namespace oauth {
11 using std::string; 11 using std::string;
12 12
13 enum oauth_method_t { 13 enum oauth_method_t {
14 oauth_auth_header, oauth_post_body, oauth_url_query 14 oauth_auth_header, oauth_post_body, oauth_url_query,
15 oauth_method_default = oauth_auth_header
15 }; 16 };
16 17
17 struct service_endpoint_t { 18 struct service_endpoint_t {
18 string url; 19 string url;
19 string signature_method; 20 string signature_method;
20 oauth_method_t oauth_method; 21 oauth_method_t oauth_method;
21 22
22 service_endpoint_t(const string& u,const string& sm,oauth_method_t om) 23 service_endpoint_t() : oauth_method(oauth_method_default) { }
24 service_endpoint_t(const string& u,const string& sm,oauth_method_t om=oauth_method_default)
23 : url(u), signature_method(sm), oauth_method(om) { } 25 : url(u), signature_method(sm), oauth_method(om) { }
24 }; 26 };
25 27
26 class basic_provider_endpoints { 28 class basic_provider_endpoints {
27 public: 29 public:
28 30
29 virtual ~basic_provider_endpoints() { } 31 virtual ~basic_provider_endpoints() { }
30 32
31 virtual const service_endpoint_t& get_request_token_endpoint() const = 0; 33 virtual const service_endpoint_t& get_request_token_endpoint() const = 0;
32 virtual const service_endpoint_t& get_authorize_user_endpoint() const = 0; 34 virtual const service_endpoint_t& get_authorize_user_endpoint() const = 0;
33 virtual const service_endpoint_t& get_access_token_endpoint() const = 0; 35 virtual const service_endpoint_t& get_access_token_endpoint() const = 0;
34 36
35 virtual service_endpoint_t& get_url_endpoint(service_endpoint_t& sep, 37 virtual service_endpoint_t& get_url_endpoint(service_endpoint_t& sep,
36 const string& url) const = 0; 38 const string& url) const = 0;
37 }; 39 };
38 40
39 struct http_request_t { 41 struct http_request_t {
40 string authorize_header; 42 string authorize_header;
41 string method; 43 string method;
42 string url; 44 string url;
43 string body; 45 string body;
44 46
45 util::curl_slist_t _curl_headers_list; 47 util::curl_slist_t _curl_headers_list;
46 48
47 http_request_t(const string& m,const string& u) 49 http_request_t(const string& m,const string& u)
48 : method(m), url(u) { } 50 : method(m), url(u) { }
49 51
50 void setup_curl(CURL *curl); 52 void setup_curl(CURL *curl);
51 }; 53 };
52 54
53 class basic_consumer { 55 class basic_consumer {
54 public: 56 public:
55 token_t consumer_token; 57 token_t consumer_token;
56 58
57 basic_consumer(const token_t& ct) 59 basic_consumer(const token_t& ct)
58 : consumer_token(ct) { } 60 : consumer_token(ct) { }
59 virtual ~basic_consumer() { } 61 virtual ~basic_consumer() { }
60 62
61 virtual const basic_provider_endpoints& get_endpoints() const = 0; 63 virtual const basic_provider_endpoints& get_endpoints() const = 0;
62 virtual const string allocate_nonce(time_t ts) = 0; 64 virtual const string allocate_nonce(time_t ts) = 0;
63 65
64 token_t get_request_token(); 66 token_t get_request_token();
65 const string get_authorize_url(const token_t& rt,const string& callback=""); 67 const string get_authorize_url(const token_t& rt,const string& callback="");
66 token_t get_access_token(const token_t& rt); 68 token_t get_access_token(const token_t& rt);
67 69
68 void prepare_request( 70 http_request_t& prepare_request(
69 http_request_t& req, 71 http_request_t& req,
70 const basic_fields& qf,const basic_fields& pf, 72 const basic_fields& qf,const basic_fields& pf,
71 oauth_method_t om,const string& sm, 73 oauth_method_t om,const string& sm,
72 const token_t *t=0,const string& realm=""); 74 const token_t *t=0,const string& realm="");
73 void prepare_request( 75 http_request_t& prepare_request(
74 http_request_t& req, 76 http_request_t& req,
75 const basic_fields& qf,const basic_fields& pf, 77 const basic_fields& qf,const basic_fields& pf,
76 const service_endpoint_t& sep, 78 const service_endpoint_t& sep,
77 const token_t *t=0,const string& realm=""); 79 const token_t *t=0,const string& realm="");
80 http_request_t& prepare_request(
81 http_request_t& req,
82 const basic_fields& qf,const basic_fields& pf,
83 const token_t *t=0,const string& realm="");
78 84
79 const string signature( 85 const string signature(
80 const string& method, 86 const string& method,
81 const string& url, 87 const string& url,
82 const basic_fields& fields, 88 const basic_fields& fields,
83 const token_t* rt=0); 89 const token_t* rt=0);
84 90
85 token_t acquire_token( 91 token_t acquire_token(
86 const service_endpoint_t& sep, 92 const service_endpoint_t& sep,
87 const token_t* rt=0); 93 const token_t* rt=0);
88 }; 94 };
89 95
90 class simple_provider_endpoints : public basic_provider_endpoints { 96 class simple_provider_endpoints : public basic_provider_endpoints {
91 public: 97 public:
92 service_endpoint_t sep_request_token; 98 service_endpoint_t sep_request_token;
93 service_endpoint_t sep_authorize_user; 99 service_endpoint_t sep_authorize_user;
94 service_endpoint_t sep_access_token; 100 service_endpoint_t sep_access_token;
95 service_endpoint_t sep_generic; 101 service_endpoint_t sep_generic;
96 102
97 simple_provider_endpoints( 103 simple_provider_endpoints(
98 const string& rt,const string& au,const string& at, 104 const string& rt,const string& au,const string& at,
99 const string& sm, 105 const string& sm,
100 oauth_method_t ams=oauth_post_body, 106 oauth_method_t ams=oauth_post_body,
101 oauth_method_t amr=oauth_auth_header ) 107 oauth_method_t amr=oauth_auth_header )