Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TS3HTTPRequest.h
Go to the documentation of this file.
1 // @(#)root/net:$Id$
2 // Author: Fabio Hernandez 30/01/2013
3 // based on an initial version by Marcelo Sousa (class THTTPMessage)
4 
5 /*************************************************************************
6  * Copyright (C) 1995-2011, Rene Brun and Fons Rademakers. *
7  * All rights reserved. *
8  * *
9  * For the licensing terms see $ROOTSYS/LICENSE. *
10  * For the list of contributors see $ROOTSYS/README/CREDITS. *
11  *************************************************************************/
12 
13 #ifndef ROOT_TS3HTTPRequest
14 #define ROOT_TS3HTTPRequest
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TS3HTTPRequest //
19 // //
20 // An object of this class represents an HTTP request extended to be //
21 // compatible with Amazon's S3 protocol. //
22 // Specifically, such a request contains an 'Authorization' header with //
23 // information used by the S3 server for authenticating this request. //
24 // The authentication information is computed based on a pair of access //
25 // key and secret key which are both provided to the user by the S3 //
26 // service provider (e.g. Amazon, Google, etc.). //
27 // The secret key is used to compute a signature of selected fields in //
28 // the request. The algorithm for computing the signature is documented //
29 // in: //
30 // //
31 // Google storage: //
32 // http://code.google.com/apis/storage/docs/reference/v1/developer-guidev1.html#authentication
33 // //
34 // Amazon: //
35 // http://docs.aws.amazon.com/AmazonS3/latest/dev/S3_Authentication2.html
36 // //
37 //////////////////////////////////////////////////////////////////////////
38 
39 #include "TObject.h"
40 
41 #include "TString.h"
42 
43 
44 
45 class TS3HTTPRequest : public TObject {
46 
47 public:
48 
49  enum EHTTPVerb { kGET, kPOST, kPUT, kDELETE, kHEAD, kCOPY };
50  enum EAuthType { kNoAuth, kAmazon, kGoogle };
51 
52 private:
53  EHTTPVerb fVerb; // HTTP Verb
54  EAuthType fAuthType; // Authentication type
55  TString fHost; // Host name
56  TString fBucket; // Bucket name
57  TString fObjectKey; // Object key
58  TString fTimeStamp; // Request time stamp
59  TString fAccessKey; // Access key (for authentication)
60  TString fSecretKey; // Secret key (for authentication)
61  TString fSessionToken; // Session token (for authentication)
62 
63 
64 protected:
65  TString HTTPVerbToTString(EHTTPVerb httpVerb) const;
66  TString MakeRequestLine(TS3HTTPRequest::EHTTPVerb httpVerb) const;
67  TString MakeAuthHeader(TS3HTTPRequest::EHTTPVerb httpVerb) const;
68  TString ComputeSignature(TS3HTTPRequest::EHTTPVerb httpVerb) const;
69  TString MakeAuthPrefix() const;
70  TString MakeHostHeader() const;
71  TString MakeDateHeader() const;
72  TString MakeTokenHeader() const;
73  TS3HTTPRequest& SetTimeStamp();
74 
75 public:
76 
77  TS3HTTPRequest();
78  TS3HTTPRequest(EHTTPVerb httpVerb, const TString& host,
79  const TString& bucket, const TString& objectKey,
80  EAuthType authType, const TString& accessKey,
81  const TString& secretKey);
82  TS3HTTPRequest(const TS3HTTPRequest& m);
83  virtual ~TS3HTTPRequest() { }
84 
85  EHTTPVerb GetHTTPVerb() const { return fVerb; }
86  const TString& GetHost() const { return fHost; }
87  const TString& GetBucket() const { return fBucket; }
88  const TString& GetObjectKey() const { return fObjectKey; }
89  const TString& GetTimeStamp() const { return fTimeStamp; }
90  const TString& GetAccessKey() const { return fAccessKey; }
91  const TString& GetSecretKey() const { return fSecretKey; }
92  TString GetAuthType() const { return fAuthType; }
93  TString GetRequest(TS3HTTPRequest::EHTTPVerb httpVerb, Bool_t appendCRLF=kTRUE);
94 
95  TS3HTTPRequest& SetHost(const TString& host);
96  TS3HTTPRequest& SetBucket(const TString& bucket);
97  TS3HTTPRequest& SetObjectKey(const TString& objectKey);
98  TS3HTTPRequest& SetAccessKey(const TString& accessKey);
99  TS3HTTPRequest& SetSecretKey(const TString& secretKey);
100  TS3HTTPRequest& SetAuthKeys(const TString& accessKey, const TString& secretKey);
101  TS3HTTPRequest& SetAuthType(TS3HTTPRequest::EAuthType authType);
102  TS3HTTPRequest& SetSessionToken(const TString& token);
103 
104  ClassDef(TS3HTTPRequest, 0) // Create generic HTTP request for Amazon S3 and Google Storage services
105 };
106 
107 
108 //////////////////////////////////////////////////////////////////////////
109 // //
110 // Inlines //
111 // //
112 //////////////////////////////////////////////////////////////////////////
113 
114 inline TS3HTTPRequest& TS3HTTPRequest::SetHost(const TString& host)
115 {
116  fHost = host;
117  return *this;
118 }
119 
120 inline TS3HTTPRequest& TS3HTTPRequest::SetBucket(const TString& bucket)
121 {
122  fBucket = bucket;
123  return *this;
124 }
125 
126 inline TS3HTTPRequest& TS3HTTPRequest::SetObjectKey(const TString& objectKey)
127 {
128  fObjectKey = objectKey;
129  return *this;
130 }
131 
132 inline TS3HTTPRequest& TS3HTTPRequest::SetAuthKeys(const TString& accessKey, const TString& secretKey)
133 {
134  fAccessKey = accessKey;
135  fSecretKey = secretKey;
136  return *this;
137 }
138 
139 inline TS3HTTPRequest& TS3HTTPRequest::SetAuthType(TS3HTTPRequest::EAuthType authType)
140 {
141  fAuthType = authType;
142  return *this;
143 }
144 
145 inline TS3HTTPRequest& TS3HTTPRequest::SetAccessKey(const TString& accessKey)
146 {
147  fAccessKey = accessKey;
148  return *this;
149 }
150 
151 inline TS3HTTPRequest& TS3HTTPRequest::SetSecretKey(const TString& secretKey)
152 {
153  fSecretKey = secretKey;
154  return *this;
155 }
156 
157 inline TS3HTTPRequest& TS3HTTPRequest::SetSessionToken(const TString& token)
158 {
159  fSessionToken = token;
160  return *this;
161 }
162 
163 #endif