fix file posting
[src/app-framework-binder.git] / plugins / samples / SamplePost.c
1 /*
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #define _GNU_SOURCE
20 #include <stdio.h>
21 #include <string.h>
22 #include <json.h>
23
24 #include "afb-plugin.h"
25 #include "afb-req-itf.h"
26
27
28 static int fillargs(json_object *args, struct afb_arg arg)
29 {
30     json_object *obj;
31
32     obj = json_object_new_object();
33     json_object_object_add (obj, "value", json_object_new_string(arg.value));
34     if (arg.path != NULL)
35         json_object_object_add (obj, "path", json_object_new_string(arg.path));
36     json_object_object_add (obj, "size", json_object_new_int64((int64_t)arg.size));
37     json_object_object_add (args, arg.name && *arg.name ? arg.name : "<empty-string>", obj);
38     return 1; /* continue to iterate */
39 }
40
41 // Sample Generic Ping Debug API
42 static void getPingTest(struct afb_req request)
43 {
44     static int pingcount = 0;
45     json_object *query;
46
47     query = json_object_new_object();
48     afb_req_iterate(request, (void*)fillargs, query);
49
50     afb_req_success_f(request, query, "Ping Binder Daemon count=%d", ++pingcount);
51 }
52
53 // With content-type=json data are directly avaliable in request->post->data
54 static void GetJsonByPost (struct afb_req request)
55 {
56     json_object* jresp;
57     json_object *query;
58     struct afb_arg arg;
59
60     query = json_object_new_object();
61     afb_req_iterate(request, (void*)fillargs, query);
62
63     arg = afb_req_get(request, "");
64     jresp = arg.value ? json_tokener_parse(arg.value) : NULL;
65     afb_req_success_f(request, jresp, "GetJsonByPost query={%s}", json_object_to_json_string(query));
66 }
67
68 // Upload a file and execute a function when upload is done
69 static void Uploads (struct afb_req request, const char *destination)
70 {
71    afb_req_fail_f(request, "unimplemented", "destination: %s", destination);
72 }
73
74 // Upload a file and execute a function when upload is done
75 static void UploadAppli (struct afb_req request)
76 {
77     Uploads(request, "applications");
78 }
79
80 // Simples Upload case just upload a file
81 static void UploadMusic (struct afb_req request)
82 {
83     Uploads(request, "musics");
84 }
85
86 // PostForm callback is called multiple times (one or each key within form, or once per file buffer)
87 // When file has been fully uploaded call is call with item==NULL 
88 static void UploadImage (struct afb_req request)
89 {
90     Uploads(request, "images");
91 }
92
93
94 // NOTE: this sample does not use session to keep test a basic as possible
95 //       in real application upload-xxx should be protected with AFB_SESSION_CHECK
96 static const struct AFB_restapi pluginApis[]= {
97   {"ping"         , AFB_SESSION_NONE  , getPingTest    ,"Ping Rest Test Service"},
98   {"upload-json"  , AFB_SESSION_NONE  , GetJsonByPost  ,"Demo for Json Buffer on Post"},
99   {"upload-image" , AFB_SESSION_NONE  , UploadImage    ,"Demo for file upload"},
100   {"upload-music" , AFB_SESSION_NONE  , UploadMusic    ,"Demo for file upload"},
101   {"upload-appli" , AFB_SESSION_NONE  , UploadAppli    ,"Demo for file upload"},
102   {NULL}
103 };
104
105 static const struct AFB_plugin plugin_desc = {
106         .type = AFB_PLUGIN_JSON,
107         .info = "Sample with Post Upload Files",
108         .prefix = "post",
109         .apis = pluginApis
110 };
111
112 const struct AFB_plugin *pluginRegister (const struct AFB_interface *itf)
113 {
114     return &plugin_desc;
115 };