aria2/src/HttpRequest.h

267 lines
6.6 KiB
C++

/* <!-- copyright */
/*
* aria2 - The high speed download utility
*
* Copyright (C) 2006 Tatsuhiro Tsujikawa
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
/* copyright --> */
#ifndef D_HTTP_REQUEST_H
#define D_HTTP_REQUEST_H
#include "common.h"
#include <cassert>
#include <string>
#include <vector>
#include <memory>
#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;
std::shared_ptr<Request> request_;
std::shared_ptr<FileEntry> fileEntry_;
std::shared_ptr<Segment> segment_;
std::shared_ptr<Request> proxyRequest_;
std::unique_ptr<AuthConfig> authConfig_;
CookieStorage* cookieStorage_;
AuthConfigFactory* authConfigFactory_;
const Option* option_;
// 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::vector<std::string> headers_;
std::string userAgent_;
std::string ifModSinceHeader_;
bool contentEncodingEnabled_;
// If true, metalink content types are sent in Accept header field.
bool acceptMetalink_;
bool noCache_;
bool acceptGzip_;
std::pair<std::string, std::string> getProxyAuthString() const;
public:
HttpRequest();
~HttpRequest();
const std::shared_ptr<Segment>& getSegment() const
{
return segment_;
}
void setSegment(const std::shared_ptr<Segment>& segment);
void setRequest(const std::shared_ptr<Request>& 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;
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 std::shared_ptr<Request>& 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(CookieStorage* cookieStorage);
CookieStorage* getCookieStorage() const;
void setAuthConfigFactory(AuthConfigFactory* factory);
void setOption(const Option* option);
/*
* To use proxy, pass proxy string to Request::setUri() and set it this
* object.
*/
void setProxyRequest(const std::shared_ptr<Request>& 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 std::unique_ptr<AuthConfig>& getAuthConfig() const;
void setFileEntry(const std::shared_ptr<FileEntry>& fileEntry);
const std::shared_ptr<FileEntry>& 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