diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-21 17:46:13 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-21 17:46:13 +0100 |
commit | 923ae026828a5cd325cb0dc658c78f50d029b1bf (patch) | |
tree | 7b89c9f0b2b69a2c36242d58df9015cd0fe3153f /plugins | |
parent | e76dff6729fb9acd1638019507e7edbbd8af23f5 (diff) |
Export getFileUpload to helper-api.c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/samples/SamplePost.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/plugins/samples/SamplePost.c b/plugins/samples/SamplePost.c index 56c3f24b..53d065ae 100644 --- a/plugins/samples/SamplePost.c +++ b/plugins/samples/SamplePost.c @@ -48,12 +48,11 @@ 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 + if (postFileCtx != NULL) { + // 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 +63,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 +82,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. } |