84481b9a4083a7cbe5da8b1541fd99d8452ff32a
[cascardo/atompub.git] / frontend / cgi / cgi.c
1 /*
2  *  Copyright (C) 2007  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20 #include <atompub/atom.h>
21
22 #include <stdlib.h>
23 #include <string.h>
24
25 void
26 cgi_serve_request (AtomCtx *ctx)
27 {
28   char *method = getenv ("REQUEST_METHOD");
29   char *path = getenv ("PATH_INFO");
30   if (method == NULL)
31     return;
32   if (path == NULL)
33     {
34       path = atom_config_get_str (ctx, "cgi", "index");
35     }
36   if (!strcmp (method, "GET"))
37     {
38       IRI *iri = iri_new ();
39       Atom *atom;
40       iri_set_path (iri, path);
41       atom = atom_retrieve_resource (ctx, iri);
42       iri_delete (iri);
43       if (atom)
44         {
45           fprintf (stdout, "Content-Type: application/atom+xml\n\n");
46           write (stdout, atom_string (atom), atom_len (atom));
47           atom_delete (atom);
48         }
49     }
50   else
51     {
52       fprintf (stdout, "Status: 501 Not Implemented\n\n");
53     }
54 }