| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 | /* <!-- copyright *//* * aria2 - The high speed download utility * * Copyright (C) 2006 Tatsuhiro Tsujikawa * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA * * In addition, as a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each * individual source file, and distribute linked combinations * including the two. * You must obey the GNU General Public License in all respects * for all of the code used other than OpenSSL.  If you modify * file(s) with this exception, you may extend this exception to your * version of the file(s), but you are not obligated to do so.  If you * do not wish to do so, delete this exception statement from your * version.  If you delete this exception statement from all source * files in the program, then also delete it here. *//* copyright --> */#include "Request.h"#include "Util.h"#include "FeatureConfig.h"#include "CookieBoxFactory.h"#include "CookieBox.h"#include "RecoverableException.h"#include "StringFormat.h"#include "A2STR.h"#include <utility>namespace aria2 {const std::string Request::METHOD_GET = "GET";const std::string Request::METHOD_HEAD = "HEAD";const std::string Request::PROTO_HTTP("http");const std::string Request::PROTO_HTTPS("https");const std::string Request::PROTO_FTP("ftp");Request::Request():  port(0), tryCount(0),  _redirectCount(0),  _supportsPersistentConnection(true),  _keepAliveHint(false),  _pipeliningHint(false),  method(METHOD_GET),  cookieBox(CookieBoxFactorySingletonHolder::instance()->createNewInstance()){}Request::~Request() {}bool Request::setUrl(const std::string& url) {  this->url = url;  return parseUrl(url);}bool Request::resetUrl() {  previousUrl = referer;  return setUrl(url);}bool Request::redirectUrl(const std::string& url) {  previousUrl = A2STR::NIL;  _supportsPersistentConnection = true;  ++_redirectCount;  return parseUrl(url);}bool Request::parseUrl(const std::string& url) {  std::string tempUrl;  std::string::size_type sharpIndex = url.find("#");  if(sharpIndex != std::string::npos) {    urlencode(tempUrl, url.substr(0, sharpIndex));  } else {    urlencode(tempUrl, url);  }  currentUrl = tempUrl;  std::string query;  host = A2STR::NIL;  port = 0;  dir = A2STR::NIL;  file = A2STR::NIL;  _query = A2STR::NIL;  _username = A2STR::NIL;  _password = A2STR::NIL;  // find query part  std::string queryTemp;  std::string::size_type startQueryIndex = tempUrl.find("?");  if(startQueryIndex != std::string::npos) {    queryTemp = tempUrl.substr(startQueryIndex);    tempUrl.erase(startQueryIndex);  }  // find protocol  std::string::size_type hp = tempUrl.find("://");  if(hp == std::string::npos) return false;  protocol = tempUrl.substr(0, hp);  uint16_t defPort;  if((defPort = FeatureConfig::getInstance()->getDefaultPort(protocol)) == 0) {    return false;  }  hp += 3;  // find host part  if(tempUrl.size() <= hp) return false;  std::string::size_type hep = tempUrl.find("/", hp);  if(hep == std::string::npos) {    hep = tempUrl.size();  }  std::string hostPart = tempUrl.substr(hp, hep-hp);  //   find username and password in host part if they exist  std::string::size_type atmarkp =  hostPart.find_last_of("@");  if(atmarkp != std::string::npos) {    std::string authPart = hostPart.substr(0, atmarkp);    std::pair<std::string, std::string> userPass =      Util::split(authPart, A2STR::COLON_C);    _username = Util::urldecode(userPass.first);    _password = Util::urldecode(userPass.second);    hostPart.erase(0, atmarkp+1);  }  std::pair<std::string, std::string> hostAndPort;  Util::split(hostAndPort, hostPart, ':');  host = hostAndPort.first;  if(hostAndPort.second != A2STR::NIL) {    try {      port = Util::parseInt(hostAndPort.second);    } catch(RecoverableException& e) {      return false;    }  } else {    // If port is not specified, then we set it to default port of its protocol..    port = defPort;  }  // find directory and file part  std::string::size_type direp = tempUrl.find_last_of("/");  if(direp == std::string::npos || direp <= hep) {    dir = A2STR::SLASH_C;    direp = hep;  } else {    std::string rawDir = tempUrl.substr(hep, direp-hep);    std::string::size_type p = rawDir.find_first_not_of("/");    if(p != std::string::npos) {      rawDir.erase(0, p-1);    }    p = rawDir.find_last_not_of("/");    if(p != std::string::npos) {      rawDir.erase(p+1);    }    dir = rawDir;  }  if(tempUrl.size() > direp+1) {    file = tempUrl.substr(direp+1);  }  _query = queryTemp;  return true;}bool Request::isHexNumber(const char c) const{  return ('0' <= c && c <= '9') || ('A' <= c && c <= 'F') || ('a' <= c && c <= 'f');}void Request::urlencode(std::string& result, const std::string& src) const{  if(src.empty()) {    result = A2STR::NIL;    return;  }  size_t lastIndex = src.size()-1;  result = src+"  ";  size_t index = lastIndex;  while(index-- > 0) {    const char c = result[index];    // '/' is not urlencoded because src is expected to be a path.    if(Util::shouldUrlencode(c)) {      if(c == '%') {	if(!isHexNumber(result[index+1]) || !isHexNumber(result[index+2])) {	  result.replace(index, 1, "%25");	}      } else {	result.replace(index, 1, StringFormat("%%%02x", c).str());      }    }  }  result.erase(result.size()-2);}void Request::resetRedirectCount(){  _redirectCount = 0;}  unsigned int Request::getRedirectCount() const{  return _redirectCount;}} // namespace aria2
 |