]> git.tdb.fi Git - libs/net.git/blobdiff - source/request.cpp
Drop Id tags and copyright notices from source files
[libs/net.git] / source / request.cpp
index e63dc66f7487e08803380a6f82755528733c52ab..31e9c7c201959f158e6443556775d9bdfe4095eb 100644 (file)
@@ -1,14 +1,8 @@
-/* $Id$
-
-This file is part of libmsphttp
-Copyright © 2008  Mikkosoft Productions, Mikko Rasa
-Distributed under the LGPL
-*/
-
 #include <msp/strings/formatter.h>
 #include <msp/strings/regex.h>
 #include <msp/strings/utils.h>
 #include "request.h"
+#include "utils.h"
 
 using namespace std;
 
@@ -22,32 +16,48 @@ Request::Request(const string &m, const string &p):
 
 string Request::str() const
 {
-       string result=format("%s %s %s\r\n", method, path, version_str(http_version));
-       result+=str_common();
+       string result = format("%s %s %s\r\n", method, path, version_str(http_version));
+       result += str_common();
 
        return result;
 }
 
-Request Request::from_url(const string &url)
+Request Request::parse(const string &str)
 {
-       if(RegMatch match=Regex("^http://([a-zA-Z0-9.-]+)(:([0-9]+))?(/[^ #]*)?$").match(url))
+       unsigned lf = str.find('\n');
+       vector<string> parts = split(str.substr(0, lf-(str[lf-1]=='\r')), ' ', 2);
+       if(parts.size()<3)
+               throw InvalidParameterValue("Invalid request");
+
+       Request result(parts[0], parts[1]);
+       result.http_version = parse_version(parts[2]);
+
+       lf += result.parse_headers(str.substr(lf+1));
+
+       result.parse_content(str.substr(lf+1));
+
+       return result;
+}
+
+Request Request::from_url(const string &str)
+{
+       Url url = parse_url(str);
+       if(url.scheme!="http")
+               throw InvalidParameterValue("Only http scheme is supported");
+       string path = url.path;
+       if(path.empty())
+               path = "/";
+       if(!url.query.empty())
        {
-               string host=match[1].str;
-               string port="80";
-               if(match[3])
-                       port=match[3].str;
-               string path=match[4].str;
-               if(path.empty())
-                       path="/";
-
-               Request result("GET", path);
-               result.set_header("host", host);
-               result.set_header("x-port", port);
-
-               return result;
+               path += '?';
+               path += url.query;
        }
-       else
-               throw InvalidParameterValue("Invalid URL");
+
+       Request result("GET", path);
+       result.set_header("Host", url.host);
+       result.set_header("Connection", "close");
+
+       return result;
 }
 
 } // namespace Http