53d065ae3a2b8dc75ab6832948c385e9a3067d46
[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
20 #include "local-def.h"
21
22 // With content-type=json data are directly avaliable in request->post->data
23 STATIC json_object* GetJsonByPost (AFB_request *request) {
24     json_object* jresp;
25     char query [256];
26     int  len;
27     
28     // check if we have some post data
29     if (request->post == NULL)  request->post->data="NoData"; 
30     
31     // Get all query string [Note real app should probably use value=getQueryValue(request,"key")]
32     len = getQueryAll (request, query, sizeof(query));
33     if (len == 0) strncpy (query, "NoSearchQueryList", sizeof(query));
34     
35     // for debug/test return response to caller
36     jresp = jsonNewMessage(AFB_SUCCESS, "GetJsonByPost query={%s} PostData: [%s]", query, request->post->data);
37     
38     return (jresp);    
39 }
40
41
42
43 // Upload a file and execute a function when upload is done
44 STATIC json_object* UploadAppli (AFB_request *request, AFB_PostItem *item) {
45     
46     char *destination = "applications";
47
48     // This is called after PostForm and then after DonePostForm
49     if (item == NULL) {
50         AFB_PostCtx *postFileCtx = getPostContext(request);      
51         if (postFileCtx != NULL) {            
52             // Do something intelligent here to install application
53             
54             postFileCtx->errcode = MHD_HTTP_OK;   // or error is something went wrong;   
55             postFileCtx->jresp   = jsonNewMessage(AFB_SUCCESS,"UploadFile Post Appli done");
56         }
57     }
58     
59     // upload multi iteration logic is handle by getPostedFile
60     return (getPostFile (request, item, destination));
61 }
62
63 // Simples Upload case just upload a file
64 STATIC json_object* UploadMusic (AFB_request *request, AFB_PostItem *item) {
65     
66     // upload multi iteration logic is handle by getPostedFile
67     return (getPostFile (request, item, "musics"));
68 }
69
70 // PostForm callback is called multiple times (one or each key within form, or once per file buffer)
71 // When file has been fully uploaded call is call with item==NULL 
72 STATIC json_object* UploadImage (AFB_request *request, AFB_PostItem *item) {
73     
74     // note if directory is relative it will be prefixed by request->config->sessiondir
75     char *destination = "images";
76
77     // This is called after PostForm and then after DonePostForm
78     if (item == NULL) {
79         AFB_PostCtx *postFileCtx = getPostContext(request);
80         
81         // if postFileCtx == NULL then an error happen [getPostedFile automatically reports errors]
82         if (postFileCtx != NULL) {
83             // Do something with your newly upload filepath=postFileCtx->path
84             request->errcode = MHD_HTTP_OK;     
85             request->jresp   = jsonNewMessage(AFB_FAIL,"UploadFile Post Image done");    
86             
87             // Note: should not return here in order getPostedFile to clear Post resources.
88         }
89     }
90     
91     // upload multi iteration logic is handle by getPostedFile
92     return (getPostFile (request, item, destination));
93 }
94
95
96 // NOTE: this sample does not use session to keep test a basic as possible
97 //       in real application upload-xxx should be protected with AFB_SESSION_CHECK
98 STATIC  AFB_restapi pluginApis[]= {
99   {"ping"         , AFB_SESSION_NONE  , (AFB_apiCB)getPingTest    ,"Ping Rest Test Service"},
100   {"upload-json"  , AFB_SESSION_NONE  , (AFB_apiCB)GetJsonByPost  ,"Demo for Json Buffer on Post"},
101   {"upload-image" , AFB_SESSION_NONE  , (AFB_apiCB)UploadImage    ,"Demo for file upload"},
102   {"upload-music" , AFB_SESSION_NONE  , (AFB_apiCB)UploadMusic    ,"Demo for file upload"},
103   {"upload-appli" , AFB_SESSION_NONE  , (AFB_apiCB)UploadAppli    ,"Demo for file upload"},
104   {NULL}
105 };
106
107 PUBLIC AFB_plugin *pluginRegister () {
108     AFB_plugin *plugin = malloc (sizeof (AFB_plugin));
109     plugin->type  = AFB_PLUGIN_JSON; 
110     plugin->info  = "Application Framework Binder Service";
111     plugin->prefix= "post";  // url base
112     plugin->apis  = pluginApis;
113     plugin->handle= (void*) "What ever you want";
114     
115     return (plugin);
116 };