]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/gateway/osrf_json_gateway.c
replaced (printf style) format buffer calls with non-format calls to prevent issues...
[OpenSRF.git] / src / gateway / osrf_json_gateway.c
1 #include "apachetools.h"
2 #include "opensrf/osrf_app_session.h"
3 #include "opensrf/osrf_system.h"
4 #include "opensrf/osrfConfig.h"
5 #include "objson/object.h"
6 #include "objson/json2xml.h"
7 #include <sys/time.h>
8 #include <sys/resource.h>
9 #include <unistd.h>
10
11
12 #define MODULE_NAME "osrf_json_gateway_module"
13 #define GATEWAY_CONFIG "OSRFGatewayConfig"
14 #define CONFIG_CONTEXT "gateway"
15
16 #define GATEWAY_DEFAULT_CONFIG "/openils/conf/opensrf_core.xml"
17
18
19 /* our config structure */
20 typedef struct { 
21         char* configfile;  /* our bootstrap config file */
22 } osrf_json_gateway_config;
23
24 module AP_MODULE_DECLARE_DATA osrf_json_gateway_module;
25
26 char* osrf_json_gateway_config_file = NULL;
27 int bootstrapped = 0;
28 int numserved = 0;
29 osrfStringArray* allowedServices = NULL;
30
31 static const char* osrf_json_gateway_set_config(cmd_parms *parms, void *config, const char *arg) {
32         osrf_json_gateway_config  *cfg;
33         cfg = ap_get_module_config(parms->server->module_config, &osrf_json_gateway_module);
34         cfg->configfile = (char*) arg;
35         osrf_json_gateway_config_file = (char*) arg;
36         return NULL;
37 }
38
39 /* tell apache about our commands */
40 static const command_rec osrf_json_gateway_cmds[] = {
41         AP_INIT_TAKE1( GATEWAY_CONFIG, osrf_json_gateway_set_config, 
42                         NULL, RSRC_CONF, "osrf json gateway config file"),
43         {NULL}
44 };
45
46 /* build the config object */
47 static void* osrf_json_gateway_create_config( apr_pool_t* p, server_rec* s) {
48         osrf_json_gateway_config* cfg = (osrf_json_gateway_config*) 
49                         apr_palloc(p, sizeof(osrf_json_gateway_config));
50         cfg->configfile = GATEWAY_DEFAULT_CONFIG;
51         return (void*) cfg;
52 }
53
54
55 static void osrf_json_gateway_child_init(apr_pool_t *p, server_rec *s) {
56
57         char* cfg = osrf_json_gateway_config_file;
58         char buf[32];
59         memset(buf, 0x0, 32);
60         int t = time(NULL);
61         snprintf(buf, 32, "%d", t);
62
63         if( ! osrfSystemBootstrapClientResc( cfg, CONFIG_CONTEXT, buf ) ) {
64                 ap_log_error( APLOG_MARK, APLOG_ERR, 0, s, 
65                         "Unable to Bootstrap OpenSRF Client with config %s..", cfg);
66                 return;
67         }
68
69         bootstrapped = 1;
70         allowedServices = osrfNewStringArray(8);
71         osrfLogInfo(OSRF_LOG_MARK, "Bootstrapping gateway child for requests");
72         osrfConfigGetValueList( NULL, allowedServices, "/services/service" );
73
74         int i;
75         for( i = 0; i < allowedServices->size; i++ ) {
76                 ap_log_error( APLOG_MARK, APLOG_DEBUG, 0, s, 
77                         "allowed service: %s\n", osrfStringArrayGetString(allowedServices, i));
78         }
79 }
80
81 static int osrf_json_gateway_method_handler (request_rec *r) {
82
83         /* make sure we're needed first thing*/
84         if (strcmp(r->handler, MODULE_NAME )) return DECLINED;
85
86         osrfLogDebug(OSRF_LOG_MARK, "osrf gateway: entered request handler");
87
88         /* verify we are connected */
89         if( !bootstrapped || !osrf_system_get_transport_client()) {
90                 ap_log_rerror( APLOG_MARK, APLOG_ERR, 0, r, "Cannot process request "
91                                 "because the OpenSRF JSON gateway has not been bootstrapped...");
92                 usleep( 100000 ); /* 100 milliseconds */
93                 exit(1);
94         }
95
96         osrfLogSetAppname("osrf_json_gw");
97
98         char* service           = NULL; /* service to connect to */
99         char* method            = NULL; /* method to perform */
100         char* format            = NULL; /* method to perform */
101         char* a_l                       = NULL; /* request api level */
102         int   isXML                     = 0;
103         int   api_level = 1;
104
105         r->allowed |= (AP_METHOD_BIT << M_GET);
106         r->allowed |= (AP_METHOD_BIT << M_POST);
107
108         osrfLogDebug(OSRF_LOG_MARK, "osrf gateway: parsing URL params");
109         string_array* mparams   = NULL;
110         string_array* params            = apacheParseParms(r); /* free me */
111         service         = apacheGetFirstParamValue( params, "service" );
112         method          = apacheGetFirstParamValue( params, "method" ); 
113         format          = apacheGetFirstParamValue( params, "format" ); 
114         a_l                     = apacheGetFirstParamValue( params, "api_level" ); 
115         mparams         = apacheGetParamValues( params, "param" ); /* free me */
116
117         if (a_l)
118                 api_level = atoi(a_l);
119
120         if (format && !strcasecmp(format, "xml" )) {
121                 isXML = 1;
122                 ap_set_content_type(r, "application/xml");
123         } else {
124                 ap_set_content_type(r, "text/plain");
125         }
126
127         int ret = OK;
128
129         if(!(service && method) || 
130                 !osrfStringArrayContains(allowedServices, service)) {
131
132                 osrfLogError(OSRF_LOG_MARK, 
133                         "Service [%s] not found or not allowed", service);
134                 ret = HTTP_NOT_FOUND;
135
136         } else {
137
138                 /* This will log all heaers to the apache error log 
139                 const apr_array_header_t* arr = apr_table_elts(r->headers_in);
140                 const void* ptr;
141
142                 while( (ptr = apr_array_pop(arr)) ) {
143                         apr_table_entry_t* e = (apr_table_entry_t*) ptr;
144                         fprintf(stderr, "Table entry: %s : %s\n", e->key, e->val );
145                 }
146                 fflush(stderr);
147                 */
148
149
150                 /* ----------------------------------------------------------------- */
151                 /* log all requests to the activity log */
152                 const char* authtoken = apr_table_get(r->headers_in, "X-OILS-Authtoken");
153                 if(!authtoken) authtoken = "";
154                 growing_buffer* act = buffer_init(128); 
155                 buffer_fadd(act, "[%s] [%s] %s %s", r->connection->remote_ip, authtoken, service, method );
156                 char* str; int i = 0;
157                 while( (str = osrfStringArrayGetString(mparams, i++)) ) {
158                         if( i == 1 ) {
159             OSRF_BUFFER_ADD(act, " ");
160                                 OSRF_BUFFER_ADD(act, str);
161                         } else {
162                                 OSRF_BUFFER_ADD(act, ", ");
163                                 OSRF_BUFFER_ADD(act, str);
164                         }
165                 }
166
167                 osrfLogActivity( OSRF_LOG_MARK, act->buf );
168                 buffer_free(act);
169                 /* ----------------------------------------------------------------- */
170
171                 osrfAppSession* session = osrf_app_client_session_init(service);
172
173                 double starttime = get_timestamp_millis();
174                 int req_id = osrf_app_session_make_req( session, NULL, method, api_level, mparams );
175
176
177                 if( req_id == -1 ) {
178                         osrfLogError(OSRF_LOG_MARK, "I am unable to communcate with opensrf..going away...");
179                         /* we don't want to spawn an intense re-forking storm 
180                          * if there is no jabber server.. so give it some time before we die */
181                         usleep( 100000 ); /* 100 milliseconds */
182                         exit(1);
183                 }
184
185                 osrf_message* omsg = NULL;
186
187                 int statuscode = 200;
188
189                 /* kick off the object */
190                 if (isXML)
191                         ap_rputs("<response xmlns=\"http://opensrf.org/-/namespaces/gateway/v1\"><payload>", r);
192                 else
193                         ap_rputs("{\"payload\":[", r);
194
195                 int morethan1           = 0;
196                 char* statusname        = NULL;
197                 char* statustext        = NULL;
198                 char* output            = NULL;
199
200                 while((omsg = osrfAppSessionRequestRecv( session, req_id, 60 ))) {
201         
202                         statuscode = omsg->status_code;
203                         jsonObject* res;        
204
205                         if( ( res = osrfMessageGetResult(omsg)) ) {
206
207                                 if (isXML) {
208                                         output = jsonObjectToXML( res );
209                                 } else {
210                                         output = jsonObjectToJSON( res );
211                                         if( morethan1 ) ap_rputs(",", r); /* comma between JSON array items */
212                                 }
213                                 ap_rputs(output, r);
214                                 free(output);
215                                 morethan1 = 1;
216                 
217                         } else {
218         
219                                 if( statuscode > 299 ) { /* the request returned a low level error */
220                                         statusname = omsg->status_name ? strdup(omsg->status_name) : strdup("Unknown Error");
221                                         statustext = omsg->status_text ? strdup(omsg->status_text) : strdup("No Error Message");
222                                         osrfLogError( OSRF_LOG_MARK,  "Gateway received error: %s", statustext );
223                                 }
224                         }
225         
226                         osrf_message_free(omsg);
227                         if(statusname) break;
228                 }
229
230                 double duration = get_timestamp_millis() - starttime;
231                 osrfLogDebug(OSRF_LOG_MARK, "gateway request took %lf seconds", duration);
232
233
234                 if (isXML)
235                         ap_rputs("</payload>", r);
236                 else
237                         ap_rputs("]",r); /* finish off the payload array */
238
239                 if(statusname) {
240
241                         /* add a debug field if the request died */
242                         ap_log_rerror( APLOG_MARK, APLOG_INFO, 0, r, 
243                                         "OpenSRF JSON Request returned error: %s -> %s", statusname, statustext );
244                         int l = strlen(statusname) + strlen(statustext) + 32;
245                         char buf[l];
246                         bzero(buf,l);
247
248                         if (isXML)
249                                 snprintf( buf, l, "<debug>\"%s : %s\"</debug>", statusname, statustext );
250
251                         else {
252                                 char bb[l];
253                                 bzero(bb, l);
254                                 snprintf(bb, l,  "%s : %s", statusname, statustext);
255                                 jsonObject* tmp = jsonNewObject(bb);
256                                 char* j = jsonObjectToJSON(tmp);
257                                 snprintf( buf, l, ",\"debug\": %s", j);
258                                 free(j);
259                                 jsonObjectFree(tmp);
260                         }
261
262                         ap_rputs(buf, r);
263
264                         free(statusname);
265                         free(statustext);
266                 }
267
268                 /* insert the status code */
269                 char buf[32];
270                 bzero(buf,32);
271
272                 if (isXML)
273                         snprintf(buf, 32, "<status>%d</status>", statuscode );
274                 else
275                         snprintf(buf, 32, ",\"status\":%d", statuscode );
276
277                 ap_rputs( buf, r );
278
279                 if (isXML)
280                         ap_rputs("</response>", r);
281                 else
282                         ap_rputs( "}", r ); /* finish off the object */
283
284                 osrf_app_session_destroy(session);
285         }
286
287         osrfLogInfo(OSRF_LOG_MARK, "Completed processing service=%s, method=%s", service, method);
288         string_array_destroy(params);
289         string_array_destroy(mparams);
290
291         osrfLogDebug(OSRF_LOG_MARK, "Gateway served %d requests", ++numserved);
292
293         return ret;
294 }
295
296
297
298 static void osrf_json_gateway_register_hooks (apr_pool_t *p) {
299         ap_hook_handler(osrf_json_gateway_method_handler, NULL, NULL, APR_HOOK_MIDDLE);
300         ap_hook_child_init(osrf_json_gateway_child_init,NULL,NULL,APR_HOOK_MIDDLE);
301 }
302
303
304 module AP_MODULE_DECLARE_DATA osrf_json_gateway_module = {
305         STANDARD20_MODULE_STUFF,
306         NULL,
307         NULL,
308         osrf_json_gateway_create_config,
309         NULL,
310         osrf_json_gateway_cmds,
311         osrf_json_gateway_register_hooks,
312 };
313
314
315
316