2014-09-06 16:24:45 +00:00
|
|
|
#pragma once
|
2014-09-10 21:32:41 +00:00
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
2016-09-21 14:11:06 +00:00
|
|
|
#include "crow/http_request.h"
|
|
|
|
#include "crow/http_response.h"
|
2014-09-06 16:24:45 +00:00
|
|
|
|
|
|
|
namespace crow
|
|
|
|
{
|
2014-09-06 19:30:53 +00:00
|
|
|
// Any middleware requires following 3 members:
|
|
|
|
|
|
|
|
// struct context;
|
|
|
|
// storing data for the middleware; can be read from another middleware or handlers
|
|
|
|
|
2014-09-10 21:32:41 +00:00
|
|
|
// before_handle
|
2014-09-06 19:30:53 +00:00
|
|
|
// called before handling the request.
|
2021-11-25 11:45:38 +00:00
|
|
|
// if res.end() is called, the operation is halted.
|
2014-09-06 19:30:53 +00:00
|
|
|
// (still call after_handle of this middleware)
|
2014-09-10 21:32:41 +00:00
|
|
|
// 2 signatures:
|
|
|
|
// void before_handle(request& req, response& res, context& ctx)
|
|
|
|
// if you only need to access this middlewares context.
|
|
|
|
// template <typename AllContext>
|
|
|
|
// void before_handle(request& req, response& res, context& ctx, AllContext& all_ctx)
|
|
|
|
// you can access another middlewares' context by calling `all_ctx.template get<MW>()'
|
|
|
|
// ctx == all_ctx.template get<CurrentMiddleware>()
|
2014-09-06 19:30:53 +00:00
|
|
|
|
2014-09-10 21:32:41 +00:00
|
|
|
// after_handle
|
2014-09-06 19:30:53 +00:00
|
|
|
// called after handling the request.
|
2014-09-10 21:32:41 +00:00
|
|
|
// void after_handle(request& req, response& res, context& ctx)
|
|
|
|
// template <typename AllContext>
|
|
|
|
// void after_handle(request& req, response& res, context& ctx, AllContext& all_ctx)
|
2014-09-06 19:30:53 +00:00
|
|
|
|
2014-09-10 21:32:41 +00:00
|
|
|
struct CookieParser
|
2014-09-06 16:24:45 +00:00
|
|
|
{
|
|
|
|
struct context
|
|
|
|
{
|
|
|
|
std::unordered_map<std::string, std::string> jar;
|
2014-09-10 21:32:41 +00:00
|
|
|
std::unordered_map<std::string, std::string> cookies_to_add;
|
|
|
|
|
2017-09-17 17:39:46 +00:00
|
|
|
std::string get_cookie(const std::string& key) const
|
2014-09-10 21:32:41 +00:00
|
|
|
{
|
2017-09-17 17:39:46 +00:00
|
|
|
auto cookie = jar.find(key);
|
|
|
|
if (cookie != jar.end())
|
|
|
|
return cookie->second;
|
2014-09-10 21:32:41 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_cookie(const std::string& key, const std::string& value)
|
|
|
|
{
|
|
|
|
cookies_to_add.emplace(key, value);
|
|
|
|
}
|
2014-09-06 16:24:45 +00:00
|
|
|
};
|
|
|
|
|
2014-09-10 21:32:41 +00:00
|
|
|
void before_handle(request& req, response& res, context& ctx)
|
2014-09-06 16:24:45 +00:00
|
|
|
{
|
2014-09-10 21:32:41 +00:00
|
|
|
int count = req.headers.count("Cookie");
|
|
|
|
if (!count)
|
|
|
|
return;
|
|
|
|
if (count > 1)
|
|
|
|
{
|
|
|
|
res.code = 400;
|
|
|
|
res.end();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::string cookies = req.get_header_value("Cookie");
|
|
|
|
size_t pos = 0;
|
2021-11-25 11:45:38 +00:00
|
|
|
while (pos < cookies.size())
|
2014-09-10 21:32:41 +00:00
|
|
|
{
|
|
|
|
size_t pos_equal = cookies.find('=', pos);
|
|
|
|
if (pos_equal == cookies.npos)
|
|
|
|
break;
|
2021-11-25 11:45:38 +00:00
|
|
|
std::string name = cookies.substr(pos, pos_equal - pos);
|
2014-09-10 21:32:41 +00:00
|
|
|
boost::trim(name);
|
2021-11-25 11:45:38 +00:00
|
|
|
pos = pos_equal + 1;
|
|
|
|
while (pos < cookies.size() && cookies[pos] == ' ')
|
|
|
|
pos++;
|
2014-09-10 21:32:41 +00:00
|
|
|
if (pos == cookies.size())
|
|
|
|
break;
|
|
|
|
|
2017-09-17 17:39:46 +00:00
|
|
|
size_t pos_semicolon = cookies.find(';', pos);
|
2021-11-25 11:45:38 +00:00
|
|
|
std::string value = cookies.substr(pos, pos_semicolon - pos);
|
2014-09-10 21:32:41 +00:00
|
|
|
|
2017-09-17 17:39:46 +00:00
|
|
|
boost::trim(value);
|
2021-11-25 11:45:38 +00:00
|
|
|
if (value[0] == '"' && value[value.size() - 1] == '"')
|
2014-09-10 21:32:41 +00:00
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
value = value.substr(1, value.size() - 2);
|
2014-09-10 21:32:41 +00:00
|
|
|
}
|
2017-09-17 17:39:46 +00:00
|
|
|
|
|
|
|
ctx.jar.emplace(std::move(name), std::move(value));
|
|
|
|
|
|
|
|
pos = pos_semicolon;
|
|
|
|
if (pos == cookies.npos)
|
|
|
|
break;
|
|
|
|
pos++;
|
2021-11-25 11:45:38 +00:00
|
|
|
while (pos < cookies.size() && cookies[pos] == ' ')
|
|
|
|
pos++;
|
2014-09-10 21:32:41 +00:00
|
|
|
}
|
2014-09-06 16:24:45 +00:00
|
|
|
}
|
|
|
|
|
2016-08-27 09:03:49 +00:00
|
|
|
void after_handle(request& /*req*/, response& res, context& ctx)
|
2014-09-06 16:24:45 +00:00
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
for (auto& cookie : ctx.cookies_to_add)
|
2014-09-10 21:32:41 +00:00
|
|
|
{
|
2017-09-17 17:39:46 +00:00
|
|
|
if (cookie.second.empty())
|
|
|
|
res.add_header("Set-Cookie", cookie.first + "=\"\"");
|
|
|
|
else
|
|
|
|
res.add_header("Set-Cookie", cookie.first + "=" + cookie.second);
|
2014-09-10 21:32:41 +00:00
|
|
|
}
|
2014-09-06 16:24:45 +00:00
|
|
|
}
|
2014-09-10 21:32:41 +00:00
|
|
|
};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
App<CookieParser, AnotherJarMW> app;
|
|
|
|
A B C
|
|
|
|
A::context
|
|
|
|
int aa;
|
|
|
|
|
|
|
|
ctx1 : public A::context
|
|
|
|
ctx2 : public ctx1, public B::context
|
|
|
|
ctx3 : public ctx2, public C::context
|
|
|
|
|
|
|
|
C depends on A
|
|
|
|
|
|
|
|
C::handle
|
|
|
|
context.aaa
|
|
|
|
|
|
|
|
App::context : private CookieParser::contetx, ...
|
|
|
|
{
|
|
|
|
jar
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleApp
|
|
|
|
*/
|
2021-11-25 11:45:38 +00:00
|
|
|
} // namespace crow
|