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
|
/* cxxtools/httprequest.cpp
*
* cxxtools - general purpose C++-toolbox
* Copyright (C) 2005 Tommi Maekitalo
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <cxxtools/httprequest.h>
#include <cctype>
namespace cxxtools
{
HttpRequest::HttpRequest(const std::string& url_, request_type method_)
: method(method_),
port(80),
reading(false)
{
std::string::size_type pos = 0;
if (url_.compare(0, 7, "http://") == 0)
pos = 7;
std::string::size_type e = url_.find(':', pos);
if (e != std::string::npos)
{
host = url_.substr(pos, e - pos);
port = 0;
for (++e; e < url_.size() && url_.at(e) != '/'; ++e)
{
if (!std::isdigit(url_.at(e)))
throw std::runtime_error("invalid url \"" + url_ + '"');
port = port * 10 + (url_.at(e) - '0');
}
if (e >= url_.size())
throw std::runtime_error("invalid url \"" + url_ + '"');
}
else
{
e = url_.find('/', pos);
if (e == std::string::npos)
throw std::runtime_error("invalid url \"" + url_ + '"');
host = url_.substr(pos, e - pos);
}
url = url_.substr(e);
}
void HttpRequest::execute()
{
if (reading)
{
if (connection.peek() != std::ios::traits_type::eof())
return;
connection.close();
connection.clear();
}
connection.connect(host, port);
switch (method)
{
case GET:
connection << "GET ";
if (url.size() == 0 || url.at(0) != '/')
connection << '/';
connection << url;
if (!params.empty())
connection << '?' << params.getUrl();
connection << " HTTP/1.0\r\nHost: " << host << "\r\n\r\n" << std::flush;
break;
case POST:
{
std::string b = (body.empty() ? params.getUrl() : b);
connection << "POST ";
if (url.size() == 0 || url.at(0) != '/')
connection << '/';
connection << url << " HTTP/1.0\r\n"
"Host: " << host << "\r\n"
"Content-Length: " << b.size() << "\r\n"
"\r\n"
<< b << std::flush;
}
break;
}
reading = true;
}
}
|