b55ebf60644852cd8d7aea64be20326bda9168a1
[src/app-framework-binder.git] / src / afbs-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
23 STATIC json_object* pingSample (AFB_session *session, AFB_request *request, void* handle) {
24     static pingcount = 0;
25     json_object *response;
26     char query [512];
27
28     // request all query key/value
29     getQueryAll (request, query, sizeof(query)); 
30     
31     // check if we have some post data
32     if (request->post == NULL)  request->post="NoData";  
33         
34     // return response to caller
35     response = jsonNewMessage(AFB_SUCCESS, "Ping Binder Daemon %d query={%s} PostData: \'%s\' ", pingcount++, query, request->post);
36     
37     if (verbose) fprintf(stderr, "%d: \n", pingcount);
38     return (response);
39 }
40
41
42 STATIC  AFB_restapi pluginApis[]= {
43   {"ping"     , (AFB_apiCB)pingSample ,"Ping Service", NULL},
44   {"get-all"  , (AFB_apiCB)pingSample ,"Ping Application Framework", NULL},
45   {"get-one"  , (AFB_apiCB)pingSample ,"Verbose Mode", NULL},
46   {"start-one", (AFB_apiCB)pingSample ,"Verbose Mode", NULL},
47   {"stop-one" , (AFB_apiCB)pingSample ,"Verbose Mode", NULL},
48   {"probe-one", (AFB_apiCB)pingSample ,"Verbose Mode", NULL},
49   {"ctx-store", (AFB_apiCB)pingSample ,"Verbose Mode", NULL},
50   {"ctx-load" , (AFB_apiCB)pingSample ,"Verbose Mode", NULL},
51   {0,0,0}
52 };
53
54 PUBLIC AFB_plugin *afsvRegister (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= "afbs";  // url base
59     plugin->apis  = pluginApis;
60     
61     return (plugin);
62 };