X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=plugins%2Fsamples%2FSamplePost.c;h=beadb774600ea462f681678142b9293009f6619f;hb=c6853a55ca911415e6851de27621b7022a665933;hp=56c3f24b22a773f3d80c16d5489bdf4f1d7068cd;hpb=5472e85501418302959040eacb819c57f849d63e;p=src%2Fapp-framework-binder.git diff --git a/plugins/samples/SamplePost.c b/plugins/samples/SamplePost.c index 56c3f24b..beadb774 100644 --- a/plugins/samples/SamplePost.c +++ b/plugins/samples/SamplePost.c @@ -50,10 +50,10 @@ STATIC json_object* UploadAppli (AFB_request *request, AFB_PostItem *item) { AFB_PostCtx *postFileCtx = getPostContext(request); if (postFileCtx != NULL) { - // request Application Framework to install application + // Do something intelligent here 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); + postFileCtx->errcode = MHD_HTTP_OK; // or error is something went wrong; + postFileCtx->jresp = jsonNewMessage(AFB_SUCCESS,"UploadFile Post Appli done"); } } @@ -64,10 +64,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 +83,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. }