mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-13 01:20:22 +03:00
Merge pull request #157 from klondi/httpproxy
Get Jump services working again although, at what price!
This commit is contained in:
commit
9c7fcfbe3f
@ -5,6 +5,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
#include "HTTPProxy.h"
|
#include "HTTPProxy.h"
|
||||||
|
#include "util.h"
|
||||||
#include "Identity.h"
|
#include "Identity.h"
|
||||||
#include "Streaming.h"
|
#include "Streaming.h"
|
||||||
#include "Destination.h"
|
#include "Destination.h"
|
||||||
@ -35,6 +36,7 @@ namespace proxy
|
|||||||
void HTTPRequestFailed(/*std::string message*/);
|
void HTTPRequestFailed(/*std::string message*/);
|
||||||
void ExtractRequest();
|
void ExtractRequest();
|
||||||
bool ValidateHTTPRequest();
|
bool ValidateHTTPRequest();
|
||||||
|
void HandleJumpServices();
|
||||||
bool CreateHTTPRequest(uint8_t *http_buff, std::size_t len);
|
bool CreateHTTPRequest(uint8_t *http_buff, std::size_t len);
|
||||||
void SentHTTPFailed(const boost::system::error_code & ecode);
|
void SentHTTPFailed(const boost::system::error_code & ecode);
|
||||||
void HandleStreamRequestComplete (std::shared_ptr<i2p::stream::Stream> stream);
|
void HandleStreamRequestComplete (std::shared_ptr<i2p::stream::Stream> stream);
|
||||||
@ -124,9 +126,41 @@ namespace proxy
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HTTPProxyHandler::HandleJumpServices() {
|
||||||
|
static const char * helpermark1 = "?i2paddresshelper=";
|
||||||
|
static const char * helpermark2 = "&i2paddresshelper=";
|
||||||
|
size_t addressHelperPos1 = m_path.rfind (helpermark1);
|
||||||
|
size_t addressHelperPos2 = m_path.rfind (helpermark2);
|
||||||
|
size_t addressHelperPos;
|
||||||
|
if (addressHelperPos1 == std::string::npos)
|
||||||
|
{
|
||||||
|
if (addressHelperPos2 == std::string::npos)
|
||||||
|
return; //Not a jump service
|
||||||
|
else
|
||||||
|
addressHelperPos = addressHelperPos2;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (addressHelperPos2 == std::string::npos)
|
||||||
|
addressHelperPos = addressHelperPos1;
|
||||||
|
else if ( addressHelperPos1 > addressHelperPos2 )
|
||||||
|
addressHelperPos = addressHelperPos1;
|
||||||
|
else
|
||||||
|
addressHelperPos = addressHelperPos2;
|
||||||
|
}
|
||||||
|
auto base64 = m_path.substr (addressHelperPos + strlen(helpermark1));
|
||||||
|
base64 = i2p::util::http::urlDecode(base64); //Some of the symbols may be urlencoded
|
||||||
|
LogPrint (eLogDebug,"Jump service for ", m_address, " found at ", base64, ". Inserting to address book");
|
||||||
|
//TODO: this is very dangerous and broken. We should ask the user before doing anything see http://pastethis.i2p/raw/pn5fL4YNJL7OSWj3Sc6N/
|
||||||
|
//TODO: we could redirect the user again to avoid dirtiness in the browser
|
||||||
|
i2p::client::context.GetAddressBook ().InsertAddress (m_address, base64);
|
||||||
|
m_path.erase(addressHelperPos);
|
||||||
|
}
|
||||||
|
|
||||||
bool HTTPProxyHandler::CreateHTTPRequest(uint8_t *http_buff, std::size_t len) {
|
bool HTTPProxyHandler::CreateHTTPRequest(uint8_t *http_buff, std::size_t len) {
|
||||||
ExtractRequest(); //TODO: parse earlier
|
ExtractRequest(); //TODO: parse earlier
|
||||||
if (!ValidateHTTPRequest()) return false;
|
if (!ValidateHTTPRequest()) return false;
|
||||||
|
HandleJumpServices();
|
||||||
m_request = m_method;
|
m_request = m_method;
|
||||||
m_request.push_back(' ');
|
m_request.push_back(' ');
|
||||||
m_request += m_path;
|
m_request += m_path;
|
||||||
|
11
util.cpp
11
util.cpp
@ -1,3 +1,4 @@
|
|||||||
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
@ -444,6 +445,16 @@ namespace http
|
|||||||
query_.assign(query_i, url_s.end());
|
query_.assign(query_i, url_s.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string urlDecode(const std::string& data)
|
||||||
|
{
|
||||||
|
std::string res(data);
|
||||||
|
for (size_t pos = res.find('%'); pos != std::string::npos; pos = res.find('%',pos+1))
|
||||||
|
{
|
||||||
|
char c = strtol(res.substr(pos+1,2).c_str(), NULL, 16);
|
||||||
|
res.replace(pos,3,1,c);
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace net
|
namespace net
|
||||||
|
1
util.h
1
util.h
@ -49,6 +49,7 @@ namespace util
|
|||||||
std::string httpRequest(const std::string& address);
|
std::string httpRequest(const std::string& address);
|
||||||
void MergeChunkedResponse (std::istream& response, std::ostream& merged);
|
void MergeChunkedResponse (std::istream& response, std::ostream& merged);
|
||||||
int httpRequestViaI2pProxy(const std::string& address, std::string &content); // return http code
|
int httpRequestViaI2pProxy(const std::string& address, std::string &content); // return http code
|
||||||
|
std::string urlDecode(const std::string& data);
|
||||||
|
|
||||||
struct url {
|
struct url {
|
||||||
url(const std::string& url_s); // omitted copy, ==, accessors, ...
|
url(const std::string& url_s); // omitted copy, ==, accessors, ...
|
||||||
|
Loading…
Reference in New Issue
Block a user