Added POST, Plugin API signal protection, refactor HTML5 rewrite
[src/app-framework-binder.git] / src / dbus-api.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 STATIC json_object* pingSample (AFB_session *session, AFB_request *request, void* handle) {
23     static pingcount = 0;
24     json_object *response;
25     char query [512];
26
27     // request all query key/value
28     getQueryAll (request, query, sizeof(query)); 
29     
30     // check if we have some post data
31     if (request->post == NULL)  request->post="NoData";  
32         
33     // return response to caller
34     response = jsonNewMessage(AFB_SUCCESS, "Ping Binder Daemon %d query={%s} PostData: \'%s\' ", pingcount++, query, request->post);
35     
36     if (verbose) fprintf(stderr, "%d: \n", pingcount);
37     return (response);
38 }
39
40
41 STATIC struct {
42     void * somedata;
43 } handle;
44
45
46 STATIC  AFB_restapi pluginApis[]= {
47   {"ping"     , (AFB_apiCB)pingSample , "Ping Application Framework", NULL},
48   {"ctx-store", (AFB_apiCB)pingSample , "Verbose Mode", NULL},
49   {"ctx-load" , (AFB_apiCB)pingSample , "Verbose Mode", NULL},
50   {0,0,0}
51 };
52
53
54 PUBLIC AFB_plugin *dbusRegister (AFB_session *session) {
55     AFB_plugin *plugin = malloc (sizeof (AFB_plugin));
56     plugin->type  = AFB_PLUGIN;
57     plugin->info  = "Application Framework Binder Service";
58     plugin->prefix= "dbus";        
59     plugin->apis  = pluginApis;
60     
61     return (plugin);
62 };