mirror of https://github.com/aria2/aria2
157 lines
4.0 KiB
C++
157 lines
4.0 KiB
C++
/* <!-- copyright */
|
|
/*
|
|
* aria2 - The high speed download utility
|
|
*
|
|
* Copyright (C) 2010 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 --> */
|
|
#include "Cookie.h"
|
|
|
|
#include <sstream>
|
|
|
|
#include "A2STR.h"
|
|
#include "a2functional.h"
|
|
#include "cookie_helper.h"
|
|
|
|
namespace aria2 {
|
|
|
|
Cookie::Cookie(std::string name, std::string value, time_t expiryTime,
|
|
bool persistent, std::string domain, bool hostOnly,
|
|
std::string path, bool secure, bool httpOnly,
|
|
time_t creationTime)
|
|
: expiryTime_(expiryTime),
|
|
creationTime_(creationTime),
|
|
lastAccessTime_(creationTime),
|
|
name_(std::move(name)),
|
|
value_(std::move(value)),
|
|
domain_(std::move(domain)),
|
|
path_(std::move(path)),
|
|
persistent_(persistent),
|
|
hostOnly_(hostOnly),
|
|
secure_(secure),
|
|
httpOnly_(httpOnly)
|
|
{
|
|
}
|
|
|
|
Cookie::Cookie()
|
|
: expiryTime_(0),
|
|
creationTime_(0),
|
|
lastAccessTime_(0),
|
|
persistent_(false),
|
|
hostOnly_(false),
|
|
secure_(false),
|
|
httpOnly_(false)
|
|
{
|
|
}
|
|
|
|
std::string Cookie::toString() const
|
|
{
|
|
std::string s = name_;
|
|
s += "=";
|
|
s += value_;
|
|
return s;
|
|
}
|
|
|
|
bool Cookie::match(const std::string& requestHost,
|
|
const std::string& requestPath, time_t date,
|
|
bool secure) const
|
|
{
|
|
if ((secure_ && !secure) || isExpired(date) ||
|
|
!cookie::pathMatch(requestPath, path_)) {
|
|
return false;
|
|
}
|
|
if (hostOnly_) {
|
|
return requestHost == domain_;
|
|
}
|
|
else {
|
|
return cookie::domainMatch(requestHost, domain_);
|
|
}
|
|
}
|
|
|
|
bool Cookie::operator==(const Cookie& cookie) const
|
|
{
|
|
return domain_ == cookie.domain_ && path_ == cookie.path_ &&
|
|
name_ == cookie.name_;
|
|
}
|
|
|
|
bool Cookie::operator!=(const Cookie& cookie) const
|
|
{
|
|
return !(*this == cookie);
|
|
}
|
|
|
|
bool Cookie::isExpired(time_t base) const
|
|
{
|
|
return persistent_ && base > expiryTime_;
|
|
}
|
|
|
|
std::string Cookie::toNsCookieFormat() const
|
|
{
|
|
std::stringstream ss;
|
|
if (!hostOnly_) {
|
|
ss << ".";
|
|
}
|
|
ss << domain_ << "\t";
|
|
if (hostOnly_) {
|
|
ss << "FALSE";
|
|
}
|
|
else {
|
|
ss << "TRUE";
|
|
}
|
|
ss << "\t";
|
|
ss << path_ << "\t";
|
|
if (secure_) {
|
|
ss << "TRUE";
|
|
}
|
|
else {
|
|
ss << "FALSE";
|
|
}
|
|
ss << "\t";
|
|
if (persistent_) {
|
|
ss << expiryTime_;
|
|
}
|
|
else {
|
|
ss << 0;
|
|
}
|
|
ss << "\t";
|
|
ss << name_ << "\t";
|
|
ss << value_;
|
|
return ss.str();
|
|
}
|
|
|
|
void Cookie::setName(std::string name) { name_ = std::move(name); }
|
|
|
|
void Cookie::setValue(std::string value) { value_ = std::move(value); }
|
|
|
|
void Cookie::setDomain(std::string domain) { domain_ = std::move(domain); }
|
|
|
|
void Cookie::setPath(std::string path) { path_ = std::move(path); }
|
|
|
|
} // namespace aria2
|