summaryrefslogtreecommitdiffstats
path: root/examples/nanohttp/http_client.c
blob: e2b2654299cf59621efa60f8ad32d2478fa65524 (plain)
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
/******************************************************************
*  $Id: http_client.c,v 1.11 2007/11/04 07:37:38 m0gg Exp $
*
* CSOAP Project:  A http client/server library in C (example)
* Copyright (C) 2003-2004  Ferhat Ayaz
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA  02111-1307, USA.
* 
* Email: hero@persua.de
******************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <nanohttp/nanohttp-logging.h>
#include <nanohttp/nanohttp-client.h>

#define MAX_BUFFER_SIZE 1024

static int show_http_status_code = 0;
static int show_headers = 0;
static int show_content = 1;

static char *username = NULL;
static char *password = NULL;

static void show_response(hresponse_t *res)
{
  unsigned char buffer[MAX_BUFFER_SIZE+1];
  int len;

  if (!res)
  {
    fprintf(stderr, "hresponse_t is NULL!\n");
    return;
  }
  
  if (res->errcode != 200 || show_http_status_code)
    printf("HTTP Status: %d \"%s\"\n", res->errcode, res->desc);

  if (show_headers)
  {
    hpair_t *pair;

    printf("HTTP Headers:\n");
    for (pair = res->header; pair; pair=pair->next)
      printf("  %s: %s\n", pair->key, pair->value);
  }

  if (!res->in)
  {
    fprintf(stderr, "No input stream!\n");
    return;
  }

  while (http_input_stream_is_ready(res->in))
  {
    len = http_input_stream_read(res->in, buffer, MAX_BUFFER_SIZE);

    if (show_content)
      fwrite(buffer, len, 1, stdout);
  }
  return;
}

int main(int argc, char **argv)
{
  httpc_conn_t *conn; /* Client connection */
  hresponse_t *res;   /* HTTP response */
  herror_t status;    /* Function return value */
  int i;

  /* check usage */
  if (argc < 2)
  {
    fprintf(stderr, "usage: %s [-headers] [-status] [-noout] [-username name] [-password secret] <url>\n", argv[0]);
    exit(1);
  }

  /* XXX: argv[i+1] is not safe (userame/password) */
  for (i=0; i<argc; i++)
  {
    if (!strcmp("-headers", argv[i]))
      show_headers = 1;
    else if (!strcmp("-status", argv[i]))
      show_http_status_code = 1;
    else if (!strcmp("-noout", argv[i]))
      show_content = 0;
    else if (!strcmp("-username", argv[i]))
      username = argv[i+1];
    else if (!strcmp("-password", argv[i]))
      password = argv[i+1];
  }

  /* Set log level to see more information written by the library */
  nanohttp_log_set_loglevel(NANOHTTP_LOG_INFO);

  /* Initialize httpc module */
  if (httpc_init(argc, argv))
  {
    fprintf(stderr, "Cannot inititialize HTTP client\n");
    exit(1);
  }

  /* Create the client connection object */
  if (!(conn = httpc_new()))
  {
    fprintf(stderr, "httpc_new failed\n");
    exit(1);
  }
  
  /* set the credentials, if specified */
  if (username || password)
  {
    httpc_set_basic_authorization(conn, username, password);
  }

  /* Send GET method and receive response */
  if ((status = httpc_get(conn, &res, argv[argc-1])) != H_OK)
  {
    fprintf(stderr, "httpc_get failed (%s)\n", herror_message(status));
    herror_release(status);
    exit(1);
  }

  /* Show response */
  show_response(res);

  /* Clean up */
  hresponse_free(res);

  httpc_free(conn);

  return 0;
}