aboutsummaryrefslogtreecommitdiff
path: root/web/apache/request.cxx
blob: 6f043bc3f273d267de2f25dd60ab70d42cf0bbd9 (plain)
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
182
183
184
185
186
// file      : web/apache/request.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <web/apache/request>

#include <stdexcept>
#include <ios>
#include <streambuf>
#include <sstream>
#include <ostream>
#include <memory>    // unique_ptr
#include <algorithm> // move()
#include <chrono>
#include <ctime>

#include <strings.h> // strcasecmp()

#include <apr_tables.h>

using namespace std;

namespace web
{
  namespace apache
  {
    const name_values& request::
    cookies ()
    {
      if (!cookies_)
      {
        cookies_.reset (new name_values ());

        const apr_array_header_t* ha = apr_table_elts (rec_->headers_in);
        size_t n = ha->nelts;

        for (auto h (reinterpret_cast<const apr_table_entry_t *> (ha->elts));
             n--; ++h)
        {
          if (!::strcasecmp (h->key, "Cookie"))
          {
            for (const char* n (h->val); n != 0; )
            {
              const char* v = strchr (n, '=');
              const char* e = strchr (n, ';');

              if (e && e < v)
                v = 0;

              string name (
                v ? mime_url_decode (n, v, true) :
                (e ? mime_url_decode (n, e, true) :
                 mime_url_decode (n, n + strlen (n), true)));

              string value;

              if (v++)
              {
                value = e ? mime_url_decode (v, e, true) :
                  mime_url_decode (v, v + strlen (v), true);
              }

              if (!name.empty () || !value.empty ())
                cookies_->emplace_back (move (name), move (value));

              n = e ? e + 1 : 0;
            }
          }
        }
      }

      return *cookies_;
    }

    ostream& request::
    content (status_code status, const std::string& type, bool buffer)
    {
      if (type.empty ())
      {
        // Getting content stream for writing assumes type to be provided.
        //
        throw std::invalid_argument (
          "::web::apache::request::content invalid type");
      }

      // Due to apache implementation of error custom response there is no
      // way to make it unbuffered.
      //
      buffer = buffer || status != HTTP_OK;

      if ((status != status_ || type != type_ || buffer != buffer_) &
          write_flag ())
      {
        throw sequence_error ("::web::apache::request::content");
      }

      if (status == status_ && type == type_ && buffer == buffer_)
      {
        assert (out_);
        return *out_;
      }

      if (!buffer)
        // Request body will be discarded prior first byte of content is
        // written. Save form data now to make it available for furture
        // parameters () call.
        //
        form_data ();

      std::unique_ptr<std::streambuf> out_buf(
        buffer ? static_cast<std::streambuf*> (new std::stringbuf ()) :
        static_cast<std::streambuf*> (new ostreambuf (rec_)));

      out_.reset (new std::ostream (out_buf.get ()));

      out_buf_ = std::move (out_buf);

      out_->exceptions (
        std::ios::eofbit | std::ios::failbit | std::ios::badbit);

      status_ = status;
      type_ = type;
      buffer_ = buffer;

      if (!buffer_)
        set_content_type ();

      return *out_;
    }

    void request::
    cookie (const char* name,
            const char* value,
            const std::chrono::seconds* max_age,
            const char* path,
            const char* domain,
            bool secure)
    {
      if (write_flag ())
      {
        throw sequence_error ("::web::apache::request::cookie");
      }

      std::ostringstream s;
      mime_url_encode (name, s);
      s << "=";
      mime_url_encode (value, s);

      if (max_age)
      {
        std::chrono::system_clock::time_point tp =
          std::chrono::system_clock::now () + *max_age;

        std::time_t t = std::chrono::system_clock::to_time_t (tp);

        // Assume global "C" locale is not changed.
        //
        char b[100];
        std::strftime (b,
                       sizeof (b),
                       "%a, %d-%b-%Y %H:%M:%S GMT",
                       std::gmtime (&t));

        s << "; Expires=" << b;
      }

      if (path)
      {
        s << ";Path=" << path;
      }

      if (domain)
      {
        s << ";Domain=" << domain;
      }

      if (secure)
      {
        s << ";Secure";
      }

      apr_table_add (rec_->err_headers_out, "Set-Cookie", s.str ().c_str ());
    }

  }
}