aboutsummaryrefslogtreecommitdiff
path: root/examples/upload.c
blob: c9752b6a989dd51c7a27417f021b05e71d74dcea (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
/* This is basic example of handling file uploading.
 * It is using magi_loadfiles callback to load file temporarily and change its
 * name into the one specified by user.
 */
#include <magi.h>
#include <stdio.h>


void upload(struct magi_request *r)
{
    char                   *name = magi_request_param(r, "name");
    const struct magi_file *data = magi_request_file(r, "data");
    if (name && data) {  /* If file and its name are in the request: */
        rename("data", name);  /* Rename loaded file to designated name. */
        printf("<p>Uploaded!</p>");  /* And display success message. */
    }
}

void response(struct magi_request *r)
{
    magi_response_default();  /* Pass default headers and send body: */
    printf("<!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>Upload File</title></head>"
           "<body>");
    upload(r);
    printf("<form action='/cgi-bin/upload' method='post' "
           "enctype='multipart/form-data'><fieldset>"
           "<input type='text' name='name' value='filename' />"
           "<input type='file' name='data' />"
           "<input type='submit' value='Upload' />"
           "</fieldset></form>"
           "</body></html>");
}

void get(struct magi_request *r)
{
    struct magi_loadfiles rules = { 0, 0 };
    /* Setup callback to load file from "data" field into file "data": */
    magi_loadfiles_add(&rules, "data", "data", 0);
    magi_loadfiles_set(r, &rules);  /* Setup request to use the callback. */
    magi_parse(r);
    magi_loadfiles_free(&rules);  /* Free data of callback. */
}

int main()
{
    struct magi_request request;
    magi_request_init(&request);
    get(&request);        /* Parse request. */
    if (request.error) {  /* If error occurred display error message: */
        magi_error_response(request.error);
    } else {
        response(&request);  /* Overwise response request. */
    }
    magi_request_free(&request);  /* Don't forget to free everything after. */
    return 0;
}