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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
// httpclient.cpp
/* Copyright 2009 10gen Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "pch.h"
#include "httpclient.h"
#include "sock.h"
#include "message.h"
#include "message_port.h"
#include "../mongoutils/str.h"
#include "../../bson/util/builder.h"
namespace mongo {
//#define HD(x) cout << x << endl;
#define HD(x)
int HttpClient::get( string url , Result * result ) {
return _go( "GET" , url , 0 , result );
}
int HttpClient::post( string url , string data , Result * result ) {
return _go( "POST" , url , data.c_str() , result );
}
int HttpClient::_go( const char * command , string url , const char * body , Result * result ) {
bool ssl = false;
if ( url.find( "https://" ) == 0 ) {
ssl = true;
url = url.substr( 8 );
}
else {
uassert( 10271 , "invalid url" , url.find( "http://" ) == 0 );
url = url.substr( 7 );
}
string host , path;
if ( url.find( "/" ) == string::npos ) {
host = url;
path = "/";
}
else {
host = url.substr( 0 , url.find( "/" ) );
path = url.substr( url.find( "/" ) );
}
HD( "host [" << host << "]" );
HD( "path [" << path << "]" );
string server = host;
int port = ssl ? 443 : 80;
string::size_type idx = host.find( ":" );
if ( idx != string::npos ) {
server = host.substr( 0 , idx );
string t = host.substr( idx + 1 );
port = atoi( t.c_str() );
}
HD( "server [" << server << "]" );
HD( "port [" << port << "]" );
string req;
{
stringstream ss;
ss << command << " " << path << " HTTP/1.1\r\n";
ss << "Host: " << host << "\r\n";
ss << "Connection: Close\r\n";
ss << "User-Agent: mongodb http client\r\n";
if ( body ) {
ss << "Content-Length: " << strlen( body ) << "\r\n";
}
ss << "\r\n";
if ( body ) {
ss << body;
}
req = ss.str();
}
SockAddr addr( server.c_str() , port );
HD( "addr: " << addr.toString() );
Socket sock;
if ( ! sock.connect( addr ) )
return -1;
if ( ssl ) {
#ifdef MONGO_SSL
_checkSSLManager();
sock.secure( _sslManager.get() );
#else
uasserted( 15862 , "no ssl support" );
#endif
}
{
const char * out = req.c_str();
int toSend = req.size();
sock.send( out , toSend, "_go" );
}
char buf[4096];
int got = sock.unsafe_recv( buf , 4096 );
buf[got] = 0;
int rc;
char version[32];
assert( sscanf( buf , "%s %d" , version , &rc ) == 2 );
HD( "rc: " << rc );
StringBuilder sb;
if ( result )
sb << buf;
while ( ( got = sock.unsafe_recv( buf , 4096 ) ) > 0) {
if ( result )
sb << buf;
}
if ( result ) {
result->_init( rc , sb.str() );
}
return rc;
}
void HttpClient::Result::_init( int code , string entire ) {
_code = code;
_entireResponse = entire;
while ( true ) {
size_t i = entire.find( '\n' );
if ( i == string::npos ) {
// invalid
break;
}
string h = entire.substr( 0 , i );
entire = entire.substr( i + 1 );
if ( h.size() && h[h.size()-1] == '\r' )
h = h.substr( 0 , h.size() - 1 );
if ( h.size() == 0 )
break;
i = h.find( ':' );
if ( i != string::npos )
_headers[h.substr(0,i)] = str::ltrim(h.substr(i+1));
}
_body = entire;
}
#ifdef MONGO_SSL
void HttpClient::_checkSSLManager() {
_sslManager.reset( new SSLManager( true ) );
}
#endif
}
|