]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/gateway/osrf_json_gateway.c
Patch from Scott McKellar; use camelCase instead of under_score function names
[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 <opensrf/osrf_json.h>
6 #include <opensrf/osrf_json_xml.h>
7 #include <opensrf/osrf_legacy_json.h>
8 #include <sys/time.h>
9 #include <sys/resource.h>
10 #include <unistd.h>
11 #include <strings.h>
12
13
14 #define MODULE_NAME "osrf_json_gateway_module"
15 #define GATEWAY_CONFIG "OSRFGatewayConfig"
16 #define DEFAULT_LOCALE "OSRFDefaultLocale"
17 #define CONFIG_CONTEXT "gateway"
18 #define JSON_PROTOCOL "OSRFGatewayLegacyJSON"
19 #define GATEWAY_USE_LEGACY_JSON 1
20
21 #define GATEWAY_DEFAULT_CONFIG "/openils/conf/opensrf_core.xml"
22
23
24 /* our config structure */
25 typedef struct { 
26         char* configfile;  /* our bootstrap config file */
27 } osrf_json_gateway_config;
28
29 typedef struct { 
30         int legacyJSON;
31 } osrf_json_gateway_dir_config;
32
33
34 module AP_MODULE_DECLARE_DATA osrf_json_gateway_module;
35
36 char* osrf_json_default_locale = "en-US";
37 char* osrf_json_gateway_config_file = NULL;
38 int bootstrapped = 0;
39 int numserved = 0;
40 osrfStringArray* allowedServices = NULL;
41
42 static const char* osrf_json_gateway_set_default_locale(cmd_parms *parms, void *config, const char *arg) {
43         if (arg)
44                 osrf_json_default_locale = (char*) arg;
45         return NULL;
46 }
47
48 static const char* osrf_json_gateway_set_config(cmd_parms *parms, void *config, const char *arg) {
49         osrf_json_gateway_config  *cfg;
50         cfg = ap_get_module_config(parms->server->module_config, &osrf_json_gateway_module);
51         cfg->configfile = (char*) arg;
52         osrf_json_gateway_config_file = (char*) arg;
53         return NULL;
54 }
55
56 static const char* osrf_json_gateway_set_json_proto(cmd_parms *parms, void *config, const char *arg) {
57         osrf_json_gateway_dir_config* cfg = (osrf_json_gateway_dir_config*) config;
58         cfg->legacyJSON = (!strcasecmp((char*) arg, "false")) ? 0 : 1;
59         return NULL;
60 }
61
62 /* tell apache about our commands */
63 static const command_rec osrf_json_gateway_cmds[] = {
64         AP_INIT_TAKE1( GATEWAY_CONFIG, osrf_json_gateway_set_config, 
65                         NULL, RSRC_CONF, "osrf json gateway config file"),
66         AP_INIT_TAKE1( DEFAULT_LOCALE, osrf_json_gateway_set_default_locale, 
67                         NULL, RSRC_CONF, "osrf json gateway default locale"),
68         AP_INIT_TAKE1( JSON_PROTOCOL, osrf_json_gateway_set_json_proto,
69                         NULL, ACCESS_CONF, "osrf json gateway config file"),
70         {NULL}
71 };
72
73 /* build the config object */
74 static void* osrf_json_gateway_create_config( apr_pool_t* p, server_rec* s) {
75         osrf_json_gateway_config* cfg = (osrf_json_gateway_config*) 
76                         apr_palloc(p, sizeof(osrf_json_gateway_config));
77         cfg->configfile = GATEWAY_DEFAULT_CONFIG;
78         return (void*) cfg;
79 }
80
81 static void* osrf_json_gateway_create_dir_config( apr_pool_t* p, char* dir) {
82         osrf_json_gateway_dir_config* cfg = (osrf_json_gateway_dir_config*) 
83                         apr_palloc(p, sizeof(osrf_json_gateway_dir_config));
84         cfg->legacyJSON = GATEWAY_USE_LEGACY_JSON;
85         return (void*) cfg;
86 }
87
88
89 static void osrf_json_gateway_child_init(apr_pool_t *p, server_rec *s) {
90
91         char* cfg = osrf_json_gateway_config_file;
92         char buf[32];
93         int t = time(NULL);
94         snprintf(buf, sizeof(buf), "%d", t);
95
96         if( ! osrfSystemBootstrapClientResc( cfg, CONFIG_CONTEXT, buf ) ) {
97                 ap_log_error( APLOG_MARK, APLOG_ERR, 0, s, 
98                         "Unable to Bootstrap OpenSRF Client with config %s..", cfg);
99                 return;
100         }
101
102         bootstrapped = 1;
103         allowedServices = osrfNewStringArray(8);
104         osrfLogInfo(OSRF_LOG_MARK, "Bootstrapping gateway child for requests");
105         osrfConfigGetValueList( NULL, allowedServices, "/services/service" );
106
107         int i;
108         for( i = 0; i < allowedServices->size; i++ ) {
109                 ap_log_error( APLOG_MARK, APLOG_DEBUG, 0, s, 
110                         "allowed service: %s\n", osrfStringArrayGetString(allowedServices, i));
111         }
112 }
113
114 static int osrf_json_gateway_method_handler (request_rec *r) {
115
116         /* make sure we're needed first thing*/
117         if (strcmp(r->handler, MODULE_NAME )) return DECLINED;
118
119
120         osrf_json_gateway_dir_config* dir_conf =  
121                 ap_get_module_config(r->per_dir_config, &osrf_json_gateway_module);
122
123
124         /* provide 2 different JSON parsers and serializers to support legacy JSON */
125         jsonObject* (*parseJSONFunc) (const char*) = legacy_jsonParseString;
126         char* (*jsonToStringFunc) (const jsonObject*) = legacy_jsonObjectToJSON;
127
128         if(dir_conf->legacyJSON) {
129                 ap_log_rerror( APLOG_MARK, APLOG_INFO, 0, r, "Using legacy JSON");
130
131         } else {
132                 ap_log_rerror( APLOG_MARK, APLOG_INFO, 0, r, "Not using legacy JSON");
133                 parseJSONFunc = jsonParseString;
134                 jsonToStringFunc = jsonObjectToJSON;
135         }
136
137
138         osrfLogDebug(OSRF_LOG_MARK, "osrf gateway: entered request handler");
139
140         /* verify we are connected */
141         if( !bootstrapped || !osrfSystemGetTransportClient()) {
142                 ap_log_rerror( APLOG_MARK, APLOG_ERR, 0, r, "Cannot process request "
143                                 "because the OpenSRF JSON gateway has not been bootstrapped...");
144                 usleep( 100000 ); /* 100 milliseconds */
145                 exit(1);
146         }
147
148         osrfLogSetAppname("osrf_json_gw");
149
150         char* osrf_locale       = NULL;
151         char* param_locale      = NULL; /* locale for this call */
152         char* service           = NULL; /* service to connect to */
153         char* method            = NULL; /* method to perform */
154         char* format            = NULL; /* method to perform */
155         char* a_l               = NULL; /* request api level */
156         char* input_format      = NULL; /* POST data format, defaults to 'format' */
157         int   isXML             = 0;
158         int   api_level         = 1;
159
160         r->allowed |= (AP_METHOD_BIT << M_GET);
161         r->allowed |= (AP_METHOD_BIT << M_POST);
162
163         osrfLogDebug(OSRF_LOG_MARK, "osrf gateway: parsing URL params");
164         string_array* mparams   = NULL;
165         string_array* params    = apacheParseParms(r); /* free me */
166         param_locale            = apacheGetFirstParamValue( params, "locale" );
167         service                 = apacheGetFirstParamValue( params, "service" );
168         method                  = apacheGetFirstParamValue( params, "method" ); 
169         format                  = apacheGetFirstParamValue( params, "format" ); 
170         input_format            = apacheGetFirstParamValue( params, "input_format" ); 
171         a_l                     = apacheGetFirstParamValue( params, "api_level" ); 
172         mparams                 = apacheGetParamValues( params, "param" ); /* free me */
173
174         if(format == NULL)
175                 format = "json";
176         if(input_format == NULL)
177                 input_format = format;
178
179         /* set the user defined timeout value */
180         int timeout = 60;
181         char* tout = apacheGetFirstParamValue( params, "timeout" ); /* request timeout in seconds */
182         if( tout ) {
183                 timeout = atoi(tout);
184                 osrfLogDebug(OSRF_LOG_MARK, "Client supplied timeout of %d", timeout);
185         }
186
187         if (a_l)
188                 api_level = atoi(a_l);
189
190         if (!strcasecmp(format, "xml")) {
191                 isXML = 1;
192                 ap_set_content_type(r, "application/xml");
193         } else {
194                 ap_set_content_type(r, "text/plain");
195         }
196
197         int ret = OK;
198
199         /* ----------------------------------------------------------------- */
200         /* Grab the requested locale using the Accept-Language header*/
201
202
203         if ( !param_locale ) {
204                 if ( apr_table_get(r->headers_in, "X-OpenSRF-Language") ) {
205                         param_locale = strdup( apr_table_get(r->headers_in, "X-OpenSRF-Language") );
206                 } else if ( apr_table_get(r->headers_in, "Accept-Language") ) {
207                         param_locale = strdup( apr_table_get(r->headers_in, "Accept-Language") );
208                 }
209         }
210
211
212         if (param_locale) {
213                 growing_buffer* osrf_locale_buf = buffer_init(16);      
214                 if (index(param_locale, ',')) {
215                         int ind = index(param_locale, ',') - param_locale;
216                         int i;
217                         for ( i = 0; i < ind && i < 128; i++ )
218                                 buffer_add_char( osrf_locale_buf, param_locale[i] );
219                 } else {
220                         buffer_add( osrf_locale_buf, param_locale );
221                 }
222
223                 free(param_locale);
224                 osrf_locale = buffer_release( osrf_locale_buf );
225         } else {
226                 osrf_locale = strdup( osrf_json_default_locale );
227         }
228         /* ----------------------------------------------------------------- */
229
230
231         if(!(service && method) || 
232                 !osrfStringArrayContains(allowedServices, service)) {
233
234                 osrfLogError(OSRF_LOG_MARK, 
235                         "Service [%s] not found or not allowed", service);
236                 ret = HTTP_NOT_FOUND;
237
238         } else {
239
240                 /* This will log all heaers to the apache error log 
241                 const apr_array_header_t* arr = apr_table_elts(r->headers_in);
242                 const void* ptr;
243
244                 while( (ptr = apr_array_pop(arr)) ) {
245                         apr_table_entry_t* e = (apr_table_entry_t*) ptr;
246                         fprintf(stderr, "Table entry: %s : %s\n", e->key, e->val );
247                 }
248                 fflush(stderr);
249                 */
250
251                 osrfAppSession* session = osrf_app_client_session_init(service);
252                 osrf_app_session_set_locale(session, osrf_locale);
253
254                 double starttime = get_timestamp_millis();
255                 int req_id = -1;
256
257                 if(!strcasecmp(input_format, "json")) {
258                         jsonObject * arr = jsonNewObject(NULL);
259
260                         char* str;
261                         int i = 0;
262
263                         while( (str = osrfStringArrayGetString(mparams, i++)) ) 
264                                 jsonObjectPush(arr, parseJSONFunc(str));
265
266                         req_id = osrfAppSessionMakeRequest( session, arr, method, api_level, NULL );
267                 } else {
268
269                         /**
270                         * If we receive XML method params, convert each param to a JSON object
271                         * and pass the array of JSON object params to the method */
272                         if(!strcasecmp(input_format, "xml")) {
273                                 jsonObject* jsonParams = jsonNewObject(NULL);
274
275                                 char* str;
276                                 int i = 0;
277                                 while( (str = osrfStringArrayGetString(mparams, i++)) ) {
278                                         jsonObjectPush(jsonParams, jsonXMLToJSONObject(str));
279                                 }
280
281                                 req_id = osrfAppSessionMakeRequest( session, jsonParams, method, api_level, NULL );
282                                 jsonObjectFree(jsonParams);
283                         }
284                 }
285
286
287                 if( req_id == -1 ) {
288                         osrfLogError(OSRF_LOG_MARK, "I am unable to communcate with opensrf..going away...");
289                         /* we don't want to spawn an intense re-forking storm 
290                          * if there is no jabber server.. so give it some time before we die */
291                         usleep( 100000 ); /* 100 milliseconds */
292                         exit(1);
293                 }
294
295
296                 /* ----------------------------------------------------------------- */
297                 /* log all requests to the activity log */
298                 const char* authtoken = apr_table_get(r->headers_in, "X-OILS-Authtoken");
299                 if(!authtoken) authtoken = "";
300                 growing_buffer* act = buffer_init(128); 
301                 buffer_fadd(act, "[%s] [%s] %s %s", r->connection->remote_ip, authtoken, service, method );
302                 char* str; int i = 0;
303                 while( (str = osrfStringArrayGetString(mparams, i++)) ) {
304                         if( i == 1 ) {
305                                 OSRF_BUFFER_ADD(act, " ");
306                                 OSRF_BUFFER_ADD(act, str);
307                         } else {
308                                 OSRF_BUFFER_ADD(act, ", ");
309                                 OSRF_BUFFER_ADD(act, str);
310                         }
311                 }
312
313                 osrfLogActivity( OSRF_LOG_MARK, act->buf );
314                 buffer_free(act);
315                 /* ----------------------------------------------------------------- */
316
317
318                 osrf_message* omsg = NULL;
319
320                 int statuscode = 200;
321
322                 /* kick off the object */
323                 if (isXML)
324                         ap_rputs("<response xmlns=\"http://opensrf.org/-/namespaces/gateway/v1\"><payload>", r);
325                 else
326                         ap_rputs("{\"payload\":[", r);
327
328                 int morethan1           = 0;
329                 char* statusname        = NULL;
330                 char* statustext        = NULL;
331                 char* output            = NULL;
332
333                 while((omsg = osrfAppSessionRequestRecv( session, req_id, timeout ))) {
334         
335                         statuscode = omsg->status_code;
336                         jsonObject* res;        
337
338                         if( ( res = osrfMessageGetResult(omsg)) ) {
339
340                                 if (isXML) {
341                                         output = jsonObjectToXML( res );
342                                 } else {
343                                         output = jsonToStringFunc( res );
344                                         if( morethan1 ) ap_rputs(",", r); /* comma between JSON array items */
345                                 }
346                                 ap_rputs(output, r);
347                                 free(output);
348                                 morethan1 = 1;
349                 
350                         } else {
351         
352                                 if( statuscode > 299 ) { /* the request returned a low level error */
353                                         statusname = omsg->status_name ? strdup(omsg->status_name) : strdup("Unknown Error");
354                                         statustext = omsg->status_text ? strdup(omsg->status_text) : strdup("No Error Message");
355                                         osrfLogError( OSRF_LOG_MARK,  "Gateway received error: %s", statustext );
356                                 }
357                         }
358         
359                         osrf_message_free(omsg);
360                         if(statusname) break;
361                 }
362
363                 double duration = get_timestamp_millis() - starttime;
364                 osrfLogDebug(OSRF_LOG_MARK, "gateway request took %f seconds", duration);
365
366
367                 if (isXML)
368                         ap_rputs("</payload>", r);
369                 else
370                         ap_rputs("]",r); /* finish off the payload array */
371
372                 if(statusname) {
373
374                         /* add a debug field if the request died */
375                         ap_log_rerror( APLOG_MARK, APLOG_INFO, 0, r, 
376                                         "OpenSRF JSON Request returned error: %s -> %s", statusname, statustext );
377                         int l = strlen(statusname) + strlen(statustext) + 32;
378                         char buf[l];
379
380                         if (isXML)
381                                 snprintf( buf, sizeof(buf), "<debug>\"%s : %s\"</debug>", statusname, statustext );
382
383                         else {
384                                 char bb[l];
385                                 snprintf(bb, sizeof(bb),  "%s : %s", statusname, statustext);
386                                 jsonObject* tmp = jsonNewObject(bb);
387                                 char* j = jsonToStringFunc(tmp);
388                                 snprintf( buf, sizeof(buf), ",\"debug\": %s", j);
389                                 free(j);
390                                 jsonObjectFree(tmp);
391                         }
392
393                         ap_rputs(buf, r);
394
395                         free(statusname);
396                         free(statustext);
397                 }
398
399                 /* insert the status code */
400                 char buf[32];
401
402                 if (isXML)
403                         snprintf(buf, sizeof(buf), "<status>%d</status>", statuscode );
404                 else
405                         snprintf(buf, sizeof(buf), ",\"status\":%d", statuscode );
406
407                 ap_rputs( buf, r );
408
409                 if (isXML)
410                         ap_rputs("</response>", r);
411                 else
412                         ap_rputs( "}", r ); /* finish off the object */
413
414                 osrfAppSessionFree(session);
415         }
416
417         osrfLogInfo(OSRF_LOG_MARK, "Completed processing service=%s, method=%s", service, method);
418         string_array_destroy(params);
419         string_array_destroy(mparams);
420
421         osrfLogDebug(OSRF_LOG_MARK, "Gateway served %d requests", ++numserved);
422         osrfLogClearXid();
423
424         return ret;
425 }
426
427
428
429 static void osrf_json_gateway_register_hooks (apr_pool_t *p) {
430         ap_hook_handler(osrf_json_gateway_method_handler, NULL, NULL, APR_HOOK_MIDDLE);
431         ap_hook_child_init(osrf_json_gateway_child_init,NULL,NULL,APR_HOOK_MIDDLE);
432 }
433
434
435 module AP_MODULE_DECLARE_DATA osrf_json_gateway_module = {
436         STANDARD20_MODULE_STUFF,
437         osrf_json_gateway_create_dir_config,
438         NULL,
439         osrf_json_gateway_create_config,
440         NULL,
441         osrf_json_gateway_cmds,
442         osrf_json_gateway_register_hooks,
443 };
444
445
446
447