mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
168 lines
4.9 KiB
C++
168 lines
4.9 KiB
C++
/*
|
|
* Copyright (c) 2011, Peter Thorson. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* * Neither the name of the WebSocket++ Project nor the
|
|
* names of its contributors may be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
#ifndef HTTP_PARSER_IMPL_HPP
|
|
#define HTTP_PARSER_IMPL_HPP
|
|
|
|
#include <algorithm>
|
|
#include <sstream>
|
|
|
|
namespace websocketpp {
|
|
namespace http {
|
|
namespace parser {
|
|
|
|
inline bool parser::parse_parameter_list(const std::string& in,
|
|
parameter_list& out) const
|
|
{
|
|
if (in.size() == 0) {
|
|
return false;
|
|
}
|
|
|
|
std::string::const_iterator it;
|
|
it = extract_parameters(in.begin(),in.end(),out);
|
|
return (it == in.begin());
|
|
}
|
|
|
|
inline bool parser::get_header_as_plist(const std::string& key,
|
|
parameter_list& out) const
|
|
{
|
|
header_list::const_iterator it = m_headers.find(key);
|
|
|
|
// If this header doesn't exist it is valid
|
|
if (it == m_headers.end()) {
|
|
return false;
|
|
}
|
|
|
|
// If this header exists but is empty it is valid
|
|
if (it->second.size() == 0) {
|
|
return false;
|
|
}
|
|
|
|
return this->parse_parameter_list(it->second,out);
|
|
}
|
|
|
|
inline void parser::set_version(const std::string& version) {
|
|
// TODO: validation?
|
|
|
|
// first four chars == HTTP/
|
|
|
|
m_version = version;
|
|
}
|
|
|
|
inline const std::string& parser::get_header(const std::string& key) const {
|
|
header_list::const_iterator h = m_headers.find(key);
|
|
|
|
if (h == m_headers.end()) {
|
|
return EMPTY_HEADER;
|
|
} else {
|
|
return h->second;
|
|
}
|
|
}
|
|
|
|
inline void parser::append_header(const std::string &key,const std::string
|
|
&val)
|
|
{
|
|
if (std::find_if(key.begin(),key.end(),is_not_token_char) != key.end()) {
|
|
throw exception("Invalid header name",status_code::BAD_REQUEST);
|
|
}
|
|
|
|
// TODO: prevent use of reserved headers?
|
|
if (this->get_header(key) == "") {
|
|
m_headers[key] = val;
|
|
} else {
|
|
m_headers[key] += ", " + val;
|
|
}
|
|
}
|
|
|
|
inline void parser::replace_header(const std::string &key,const std::string
|
|
&val)
|
|
{
|
|
m_headers[key] = val;
|
|
}
|
|
|
|
inline void parser::remove_header(const std::string &key) {
|
|
m_headers.erase(key);
|
|
}
|
|
|
|
|
|
inline bool parser::parse_headers(std::istream& s) {
|
|
std::string header;
|
|
std::string::size_type end;
|
|
|
|
// get headers
|
|
while (std::getline(s, header) && header != "\r") {
|
|
if (header[header.size()-1] != '\r') {
|
|
continue; // ignore malformed header lines?
|
|
} else {
|
|
header.erase(header.end()-1);
|
|
}
|
|
|
|
end = header.find(HEADER_SEPARATOR,0);
|
|
|
|
if (end != std::string::npos) {
|
|
append_header(header.substr(0,end),header.substr(end+2));
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
inline std::string parser::raw_headers() const {
|
|
std::stringstream raw;
|
|
|
|
header_list::const_iterator it;
|
|
for (it = m_headers.begin(); it != m_headers.end(); it++) {
|
|
raw << it->first << ": " << it->second << "\r\n";
|
|
}
|
|
|
|
return raw.str();
|
|
}
|
|
|
|
inline void parser::process_header(std::string::iterator begin,
|
|
std::string::iterator end)
|
|
{
|
|
std::string::iterator cursor = std::search(
|
|
begin,
|
|
end,
|
|
HEADER_SEPARATOR,
|
|
HEADER_SEPARATOR + sizeof(HEADER_SEPARATOR) - 1
|
|
);
|
|
|
|
if (cursor == end) {
|
|
throw exception("Invalid header line",status_code::BAD_REQUEST);
|
|
}
|
|
|
|
append_header(std::string(begin,cursor),
|
|
std::string(cursor+sizeof(HEADER_SEPARATOR)-1,end));
|
|
}
|
|
|
|
} // namespace parser
|
|
} // namespace http
|
|
} // namespace websocketpp
|
|
|
|
#endif // HTTP_PARSER_IMPL_HPP
|