changing the license to apache 2
[src/app-framework-binder.git] / plugins / samples / SamplePost.c
1 /*
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #define _GNU_SOURCE
19 #include <stdio.h>
20 #include <string.h>
21 #include <json.h>
22
23 #include "afb-plugin.h"
24 #include "afb-req-itf.h"
25
26
27 // Sample Generic Ping Debug API
28 static void getPingTest(struct afb_req request)
29 {
30     static int pingcount = 0;
31     json_object *query = afb_req_json(request);
32
33     afb_req_success_f(request, query, "Ping Binder Daemon count=%d", ++pingcount);
34 }
35
36 // With content-type=json data are directly avaliable in request->post->data
37 static void GetJsonByPost (struct afb_req request)
38 {
39     struct afb_arg arg;
40     json_object* jresp;
41     json_object *query = afb_req_json(request);
42
43     arg = afb_req_get(request, "");
44     jresp = arg.value ? json_tokener_parse(arg.value) : NULL;
45     afb_req_success_f(request, jresp, "GetJsonByPost query={%s}", json_object_to_json_string(query));
46 }
47
48 // Upload a file and execute a function when upload is done
49 static void Uploads (struct afb_req request, const char *destination)
50 {
51    afb_req_fail_f(request, "unimplemented", "destination: %s", destination);
52 }
53
54 // Upload a file and execute a function when upload is done
55 static void UploadAppli (struct afb_req request)
56 {
57     Uploads(request, "applications");
58 }
59
60 // Simples Upload case just upload a file
61 static void UploadMusic (struct afb_req request)
62 {
63     Uploads(request, "musics");
64 }
65
66 // PostForm callback is called multiple times (one or each key within form, or once per file buffer)
67 // When file has been fully uploaded call is call with item==NULL 
68 static void UploadImage (struct afb_req request)
69 {
70     Uploads(request, "images");
71 }
72
73
74 // NOTE: this sample does not use session to keep test a basic as possible
75 //       in real application upload-xxx should be protected with AFB_SESSION_CHECK
76 static const struct AFB_restapi pluginApis[]= {
77   {"ping"         , AFB_SESSION_NONE  , getPingTest    ,"Ping Rest Test Service"},
78   {"upload-json"  , AFB_SESSION_NONE  , GetJsonByPost  ,"Demo for Json Buffer on Post"},
79   {"upload-image" , AFB_SESSION_NONE  , UploadImage    ,"Demo for file upload"},
80   {"upload-music" , AFB_SESSION_NONE  , UploadMusic    ,"Demo for file upload"},
81   {"upload-appli" , AFB_SESSION_NONE  , UploadAppli    ,"Demo for file upload"},
82   {NULL}
83 };
84
85 static const struct AFB_plugin plugin_desc = {
86         .type = AFB_PLUGIN_JSON,
87         .info = "Sample with Post Upload Files",
88         .prefix = "post",
89         .apis = pluginApis
90 };
91
92 const struct AFB_plugin *pluginRegister (const struct AFB_interface *itf)
93 {
94     return &plugin_desc;
95 };