Merge branch 'master' of github.com:iotbzh/afb-daemon
[src/app-framework-binder.git] / plugins / samples / SamplePost.c
index 56c3f24..e419be4 100644 (file)
@@ -47,14 +47,10 @@ STATIC json_object* UploadAppli (AFB_request *request, AFB_PostItem *item) {
 
     // This is called after PostForm and then after DonePostForm
     if (item == NULL) {
-        AFB_PostCtx *postFileCtx = getPostContext(request);      
-        if (postFileCtx != NULL) {
-            
-            // request Application Framework to install application
-            
-            request->errcode = MHD_HTTP_OK;   // or error is something went wrong;   
-            request->jresp   = jsonNewMessage(AFB_FAIL,"UploadFile Post Request file=[%s] done", postFileCtx->path);
-        }
+        // Do something intelligent here to install application
+        request->errcode = MHD_HTTP_OK;   // or error is something went wrong;   
+        request->jresp   = jsonNewMessage(AFB_SUCCESS,"UploadFile Post Appli=%s done", getPostPath (request));
+        // Note: should not return here in order getPostedFile to clear Post resources.
     }
     
     // upload multi iteration logic is handle by getPostedFile
@@ -64,10 +60,8 @@ STATIC json_object* UploadAppli (AFB_request *request, AFB_PostItem *item) {
 // Simples Upload case just upload a file
 STATIC json_object* UploadMusic (AFB_request *request, AFB_PostItem *item) {
     
-    char *destination = "musics";
-
     // upload multi iteration logic is handle by getPostedFile
-    return (getPostFile (request, item, destination));
+    return (getPostFile (request, item, "musics"));
 }
 
 // PostForm callback is called multiple times (one or each key within form, or once per file buffer)
@@ -85,7 +79,7 @@ STATIC json_object* UploadImage (AFB_request *request, AFB_PostItem *item) {
         if (postFileCtx != NULL) {
             // Do something with your newly upload filepath=postFileCtx->path
             request->errcode = MHD_HTTP_OK;     
-            request->jresp   = jsonNewMessage(AFB_FAIL,"UploadFile Post Request file=[%s] done", postFileCtx->path);    
+            request->jresp   = jsonNewMessage(AFB_FAIL,"UploadFile Post Image done");    
             
             // Note: should not return here in order getPostedFile to clear Post resources.
         }
@@ -110,7 +104,7 @@ STATIC  AFB_restapi pluginApis[]= {
 PUBLIC AFB_plugin *pluginRegister () {
     AFB_plugin *plugin = malloc (sizeof (AFB_plugin));
     plugin->type  = AFB_PLUGIN_JSON; 
-    plugin->info  = "Application Framework Binder Service";
+    plugin->info  = "Sample with Post Upload Files";
     plugin->prefix= "post";  // url base
     plugin->apis  = pluginApis;
     plugin->handle= (void*) "What ever you want";