Logo ROOT   6.14/05
Reference Guide
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 
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;
69  TString MakeAuthPrefix() const;
70  TString MakeHostHeader() const;
71  TString MakeDateHeader() const;
72  TString MakeTokenHeader() const;
74 
75 public:
76 
78  TS3HTTPRequest(EHTTPVerb httpVerb, const TString& host,
79  const TString& bucket, const TString& objectKey,
80  EAuthType authType, const TString& accessKey,
81  const TString& secretKey);
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; }
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);
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 
115 {
116  fHost = host;
117  return *this;
118 }
119 
121 {
122  fBucket = bucket;
123  return *this;
124 }
125 
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 
140 {
141  fAuthType = authType;
142  return *this;
143 }
144 
146 {
147  fAccessKey = accessKey;
148  return *this;
149 }
150 
152 {
153  fSecretKey = secretKey;
154  return *this;
155 }
156 
158 {
159  fSessionToken = token;
160  return *this;
161 }
162 
163 #endif
TS3HTTPRequest & SetTimeStamp()
Sets this request's time stamp according to: http://code.google.com/apis/storage/docs/reference-heade...
auto * m
Definition: textangle.C:8
const TString & GetTimeStamp() const
TString fTimeStamp
virtual ~TS3HTTPRequest()
TString MakeTokenHeader() const
Returns the session security token header for this HTTP request.
const TString & GetHost() const
const TString & GetSecretKey() const
TS3HTTPRequest & SetObjectKey(const TString &objectKey)
TString HTTPVerbToTString(EHTTPVerb httpVerb) const
TString MakeAuthPrefix() const
Returns the authentication prefix.
TS3HTTPRequest & SetSecretKey(const TString &secretKey)
Basic string class.
Definition: TString.h:131
bool Bool_t
Definition: RtypesCore.h:59
EAuthType fAuthType
const TString & GetObjectKey() const
TString fObjectKey
TS3HTTPRequest & SetHost(const TString &host)
#define ClassDef(name, id)
Definition: Rtypes.h:320
TString fSecretKey
TString ComputeSignature(TS3HTTPRequest::EHTTPVerb httpVerb) const
Returns this request's signature.
EHTTPVerb GetHTTPVerb() const
TString fAccessKey
TString GetRequest(TS3HTTPRequest::EHTTPVerb httpVerb, Bool_t appendCRLF=kTRUE)
Returns the HTTP request ready to be sent to the server.
TString fSessionToken
TString GetAuthType() const
TS3HTTPRequest & SetAccessKey(const TString &accessKey)
TString MakeDateHeader() const
Returns the date header for this HTTP request.
TS3HTTPRequest & SetAuthType(TS3HTTPRequest::EAuthType authType)
Mother of all ROOT objects.
Definition: TObject.h:37
TS3HTTPRequest & SetAuthKeys(const TString &accessKey, const TString &secretKey)
const TString & GetAccessKey() const
TString MakeRequestLine(TS3HTTPRequest::EHTTPVerb httpVerb) const
Returns the first line of a HTTP request for this object.
TS3HTTPRequest & SetBucket(const TString &bucket)
TS3HTTPRequest & SetSessionToken(const TString &token)
const Bool_t kTRUE
Definition: RtypesCore.h:87
TString MakeAuthHeader(TS3HTTPRequest::EHTTPVerb httpVerb) const
Returns the authentication header for this HTTP request.
TString MakeHostHeader() const
Returns the 'Host' header to include in the HTTP request.
const TString & GetBucket() const
EHTTPVerb fVerb