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
|
// --- BEGIN COPYRIGHT BLOCK ---
// 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;
// version 2.1 of the License.
//
// 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
//
// Copyright (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
#include "nspr.h"
#include <sys/types.h>
#include <stdio.h>
#ifndef XP_WIN32
#include <unistd.h> /* sleep */
#else /* XP_WIN32 */
#include <windows.h>
#endif /* XP_WIN32 */
#include "main/Base.h"
#include "httpClient/httpc/http.h"
#include "httpClient/httpc/request.h"
#include "httpClient/httpc/response.h"
#include "httpClient/httpc/engine.h"
#include "engine/RA.h"
#include "main/Memory.h"
/*
* httpSend: sends to an HTTP server
* host_port should be in the for "host:port"
* e.g. ca.fedora.redhat.com:1027
* uri should contain uri including parameter values
* e.g. https://ca.fedora.redhat.com:1027/ca/profileSubmitSSLClient?profileId=userKey&screenname=user1&publickey=YWJjMTIzCg
* method has to be "GET" or "POST"
* body is the HTTP body. Can have nothing.
*/
PSHttpResponse *httpSend(char *host_port, char *uri, char *method, char *body)
{
const char* nickname;
nickname = RA::GetConfigStore()->GetConfigAsString("ra.clientNickname", "");
PSHttpServer server(host_port, PR_AF_INET);
server.setSSL(PR_TRUE);
// use "HTTP10" if no chunking
PSHttpRequest request( &server, uri, HTTP11, 0 );
request.setSSL(PR_TRUE);
request.setCertNickName(nickname);
request.setMethod(method);
if (body != NULL)
request.setBody( strlen(body), body);
// use with "POST" only
request.addHeader( "Content-Type", "text/xml" );
request.addHeader( "Connection", "keep-alive" );
HttpEngine engine;
PSHttpResponse *resp = engine.makeRequest( request, server, 120 /*_timeout*/ , PR_TRUE /* expect chunked*/);
return resp;
}
|