/* */ #ifndef D_HTTP_REQUEST_H #define D_HTTP_REQUEST_H #include "common.h" #include #include #include #include "SharedHandle.h" #include "FileEntry.h" namespace aria2 { class Request; class Segment; struct Range; class Option; class CookieStorage; class AuthConfigFactory; class AuthConfig; class HttpRequest { private: static const std::string USER_AGENT; SharedHandle request_; SharedHandle fileEntry_; SharedHandle segment_; bool contentEncodingEnabled_; std::string userAgent_; std::vector headers_; // If true, metalink content types are sent in Accept header field. bool acceptMetalink_; SharedHandle cookieStorage_; SharedHandle authConfigFactory_; const Option* option_; SharedHandle authConfig_; SharedHandle proxyRequest_; bool noCache_; bool acceptGzip_; // Historically, aria2 did not specify end byte marker unless http // pipelining is enabled. Sometimes end byte is known because the // segment/piece ahead of this request was already acquired. In this // case, specifying end byte enables to reuse connection. To achieve // this, if endOffsetOverride_ is more than 0, its value - 1 is used // as an end byte. Please note that FTP protocol cannot specify end // bytes and it is also true if it is used via HTTP proxy. int64_t endOffsetOverride_; std::string ifModSinceHeader_; std::pair getProxyAuthString() const; public: HttpRequest(); ~HttpRequest(); const SharedHandle& getSegment() const { return segment_; } void setSegment(const SharedHandle& segment); void setRequest(const SharedHandle& request); int64_t getEntityLength() const; const std::string& getHost() const; uint16_t getPort() const; const std::string& getMethod() const; const std::string& getProtocol() const; const std::string& getCurrentURI() const; const std::string& getDir() const; const std::string& getFile() const; const std::string& getQuery() const; const std::string& getPreviousURI() const; std::string getURIHost() const; Range getRange() const; /** * Inspects whether the specified response range is satisfiable * with request range. */ bool isRangeSatisfied(const Range& range) const; const SharedHandle& getRequest() const { return request_; } int64_t getStartByte() const; int64_t getEndByte() const; /** * Returns string representation of http request. It usually starts * with "GET ..." and ends with "\r\n". The AuthConfig for this * request is resolved using authConfigFactory_ and stored in * authConfig_. getAuthConfig() returns AuthConfig used in the last * invocation of createRequest(). */ std::string createRequest(); /** * Returns string representation of http tunnel request. * It usually starts with "CONNECT ..." and ends with "\r\n". */ std::string createProxyRequest() const; void enableContentEncoding(); void disableContentEncoding(); void setUserAgent(const std::string& userAgent); // accepts multiline headers, delimited by LF void addHeader(const std::string& headers); void clearHeader(); void addAcceptType(const std::string& type); void setAcceptMetalink(bool f) { acceptMetalink_ = f; } void setCookieStorage(const SharedHandle& cookieStorage); const SharedHandle& getCookieStorage() const { return cookieStorage_; } void setAuthConfigFactory (const SharedHandle& factory, const Option* option); /* * To use proxy, pass proxy string to Request::setUri() and set it this * object. */ void setProxyRequest(const SharedHandle& proxyRequest); /* * Returns true if non-Null proxy request is set by setProxyRequest(). * Otherwise, returns false. */ bool isProxyRequestSet() const; // Returns true if authentication was used in the last // createRequest(). bool authenticationUsed() const; // Returns AuthConfig used in the last invocation of // createRequest(). const SharedHandle& getAuthConfig() const; void setFileEntry(const SharedHandle& fileEntry); const SharedHandle& getFileEntry() const { return fileEntry_; } void enableNoCache() { noCache_ = true; } void disableNoCache() { noCache_ = false; } void enableAcceptGZip() { acceptGzip_ = true; } void disableAcceptGZip() { acceptGzip_ = false; } bool acceptGZip() const { return acceptGzip_; } void setEndOffsetOverride(int64_t offset) { endOffsetOverride_ = offset; } void setIfModifiedSinceHeader(const std::string& hd); const std::string& getIfModifiedSinceHeader() const { return ifModSinceHeader_; } // Returns true if request is conditional:more specifically, the // request is considered to be conditional if the client sent // "If-Modified-Since" or "If-None-Match" request-header field. bool conditionalRequest() const; }; } // namespace aria2 #endif // D_HTTP_REQUEST_H