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
|
/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
*
* Use of this source code is governed by a zlib-style license that can
* be found in the License.txt file in the root of the source tree.
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//---------------------------------------------------------------------------
#include "ZenLib/PreComp.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include "ZenLib/Conf_Internal.h"
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include "ZenLib/Format/Http/Http_Cookies.h"
#include "ZenLib/Format/Http/Http_Utils.h"
using namespace std;
//---------------------------------------------------------------------------
namespace ZenLib
{
namespace Format
{
namespace Http
{
//***************************************************************************
// Constructor/Destructor
//***************************************************************************
//---------------------------------------------------------------------------
Cookies::Cookies()
{
}
//***************************************************************************
// Helpers
//***************************************************************************
//---------------------------------------------------------------------------
size_t Cookies::Set(const std::string &Name, const std::string &Value, std::time_t Expires, const std::string &Path, const std::string &Domain, bool Secure)
{
//Name must not be empty
if (Name.empty())
return 1;
//Default values handling
if (Value.empty())
Expires=time(NULL)-365*24*60*60-1; //minus 1 year
//Default value
if (Expires==(time_t)-1)
Expires=time(NULL)+1*365*24*60*60; //+1 year
//Expires can be the count of seconds to handle instead of real time
if (Expires>=0 && Expires<3*365*24*60*60) //Les than year 1973, this is not a date, this is a time
Expires+=time(NULL);
//Registering
Cookie Data;
Data.Value=Value.empty()?std::string("Deleted"):URL_Encoded_Encode(Value); //If no value, we force a default value for having the cookie understable
Data.Expires=Expires;
Data.Path=URL_Encoded_Encode(Path.empty()?string("/"):Path);
Data.Domain=URL_Encoded_Encode(Domain);
Data.Secure=Secure;
(*this)[URL_Encoded_Encode(Name)]=Data;
return 0;
}
//---------------------------------------------------------------------------
void Cookies::Create_Lines(std::ostream& Out)
{
for (Cookies::iterator Cookie=begin(); Cookie!=end(); ++Cookie)
{
Out << "Set-Cookie: " << Cookie->first << "=" << Cookie->second.Value;
if (Cookie->second.Expires!=(time_t)-1)
{
char Temp[200];
#if defined(HAVE_GMTIME_R)
struct tm Gmt_Temp;
struct tm *Gmt=gmtime_r(&Cookie->second.Expires, &Gmt_Temp);
#elif defined(_MSC_VER)
struct tm Gmt_Temp;
errno_t gmtime_s_Result=gmtime_s(&Gmt_Temp , &Cookie->second.Expires);
struct tm* Gmt=gmtime_s_Result?NULL:&Gmt_Temp;
#else
#ifdef __GNUC__
#warning "This version of ZenLib is not thread safe"
#endif
struct tm *Gmt=gmtime(&Cookie->second.Expires);
#endif
if (strftime(Temp, 200, "%a, %d-%b-%Y %H:%M:%S GMT", Gmt))
Out << "; expires=" << Temp;
}
if (!Cookie->second.Path.empty())
{
Out << "; path=" << Cookie->second.Path;
}
Out << "\r\n";
}
}
} //Namespace
} //Namespace
} //Namespace
|