forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp_cookie.cpp
More file actions
182 lines (159 loc) · 4.54 KB
/
http_cookie.cpp
File metadata and controls
182 lines (159 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#define CPPCMS_SOURCE
#include <cppcms/http_cookie.h>
#include "http_protocol.h"
#include <cppcms/cppcms_error.h>
#include <booster/posix_time.h>
#include <sstream>
#include <locale>
namespace cppcms { namespace http {
struct cookie::_data { time_t expires; };
bool cookie::empty() const
{
return name_.empty() && value_.empty();
}
std::string cookie::name() const { return name_; }
void cookie::name(std::string v) { name_=v; }
std::string cookie::value() const { return value_; }
void cookie::value(std::string v) { value_=v; }
std::string cookie::path() const { return path_; }
void cookie::path(std::string v) { path_=v; }
std::string cookie::domain() const { return domain_; }
void cookie::domain(std::string v) { domain_=v; }
std::string cookie::comment() const { return comment_; }
void cookie::comment(std::string v) { comment_=v; }
void cookie::expires(time_t when)
{
if(!d.get()) {
d.reset(new _data());
}
has_expiration_=1;
d->expires = when;
}
time_t cookie::expires() const
{
if(has_expiration_)
return d->expires;
return 0;
}
bool cookie::expires_defined() const
{
return has_expiration_ == 1;
}
void cookie::max_age(unsigned age)
{
has_age_=1;
max_age_=age;
}
bool cookie::max_age_defined() const
{
return has_age_ == 1;
}
unsigned cookie::max_age() const
{
if(has_age_)
return max_age_;
return 0;
}
void cookie::browser_age()
{
has_age_=0;
has_expiration_=0;
}
bool cookie::secure() const { return secure_; }
void cookie::secure(bool secure) { secure_ = secure ? 1: 0; }
void cookie::write(std::ostream &out) const
{
if(name_.empty())
throw cppcms_error("Cookie's name is not defined");
out<<"Set-Cookie:"<<name_<<'=';
if(value_.empty()) {
// Nothing to do write
}
if(protocol::tocken(value_.begin(),value_.end())==value_.end())
out<<value_;
else
out<<protocol::quote(value_);
if(!comment_.empty())
out<<"; Comment="<<protocol::quote(comment_);
if(!domain_.empty())
out<<"; Domain="<<domain_;
if(has_age_ || has_expiration_) {
std::locale l=std::locale::classic();
std::stringstream ss;
ss.imbue(l);
if(has_age_)
ss<<"; Max-Age="<<max_age_;
if(has_expiration_ && d.get()) {
ss<<"; Expires=";
std::tm splitted = booster::ptime::universal_time(booster::ptime(d->expires));
static char const format[]="%a, %d %b %Y %H:%M:%S GMT";
char const *b=format;
char const *e=b+sizeof(format)-1;
std::use_facet<std::time_put<char> >(l).put(ss,ss,' ',&splitted,b,e);
}
out << ss.rdbuf();
}
if(!path_.empty())
out<<"; Path="<<path_;
if(secure_)
out<<"; Secure";
out<<"; Version=1";
}
std::ostream &operator<<(std::ostream &out,cookie const &c)
{
c.write(out);
return out;
}
cookie::cookie(std::string name,std::string value) :
name_(name), value_(value), secure_(0), has_age_(0), has_expiration_(0)
{
}
cookie::cookie(std::string name,std::string value,unsigned age) :
name_(name), value_(value), max_age_(age), secure_(0), has_age_(1), has_expiration_(0)
{
}
cookie::cookie(std::string name,std::string value,unsigned age,std::string path,std::string domain,std::string comment) :
name_(name), value_(value), path_(path),domain_(domain),comment_(comment),max_age_(age), secure_(0), has_age_(1), has_expiration_(0)
{
}
cookie::cookie(std::string name,std::string value,std::string path,std::string domain,std::string comment) :
name_(name), value_(value), path_(path),domain_(domain),comment_(comment), secure_(0), has_age_(0), has_expiration_(0)
{
}
cookie::cookie(cookie const &other) :
d(other.d),
name_(other.name_),
value_(other.value_),
path_(other.path_),
domain_(other.domain_),
comment_(other.comment_),
max_age_(other.max_age_),
secure_(other.secure_),
has_age_(other.has_age_),
has_expiration_(other.has_expiration_)
{
}
cookie const &cookie::operator=(cookie const &other)
{
d=other.d;
name_=other.name_;
value_=other.value_;
path_=other.path_;
domain_=other.domain_;
comment_=other.comment_;
max_age_=other.max_age_;
secure_=other.secure_;
has_age_=other.has_age_;
has_expiration_ = other.has_expiration_;
return *this;
}
cookie::cookie() : secure_(0), has_age_(0), has_expiration_(0) {}
cookie::~cookie() {}
} } // cppcms::http