aboutsummaryrefslogtreecommitdiff
path: root/examples/append.c
blob: 0c7df7e47ede19ea0b566090ece24570644ed4ce (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
#include <cgi.h>
#include <request.h>
#include <stdio.h>
#include <stdlib.h>


void handle_request()
{
    struct magi_request request;
    if (magi_cgi(&request, 0, 0)) {
        struct magi_field * a = magi_field_list_get(request.fields, "addon");
        if (a && a->data) {
            FILE * file = fopen("file_to_append", "a");
            fputs(a->data, file);
            fclose(file);
        }
    } else {
        magi_cgi_error(request.error);
    }
    magi_request_destroy(&request);
}

void print_preamble()
{
    puts("Content-type: application/xhtml+xml\r\n\r\n");
}

void print_webpage()
{
    puts("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' "
         "'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>"
         "<html xmlns='http://www.w3.org/1999/xhtml'>"
         "<head><title>Append to File</title></head>"
         "<body>"
         "<form action='/cgi-bin/append' method='get'><fieldset>"
         "<input type='text' name='addon' value='Whatever you want to add.'/>"
         "<input type='submit' value='Append'/>"
         "</fieldset></form>"
         "</body>"
         "</html>");
}

int main(int argc, char const * argv[])
{
    handle_request();
    print_preamble();
    print_webpage();
    return 0;
}