8cd0c21b1ced35fc112c59fa1d68931193bb78d2
[samba.git] / source / web_server / calls.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    provide hooks into C calls from esp scripts
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "web_server/esp/esp.h"
25
26
27 /*
28   return the type of a variable
29 */
30 static int esp_typeof(struct EspRequest *ep, int argc, struct MprVar **argv)
31 {
32         const struct {
33                 MprType type;
34                 const char *name;
35         } types[] = {
36                 { MPR_TYPE_UNDEFINED, "undefined" },
37                 { MPR_TYPE_NULL, "null" },
38                 { MPR_TYPE_BOOL, "boolean" },
39                 { MPR_TYPE_CFUNCTION, "function" },
40                 { MPR_TYPE_FLOAT, "float" },
41                 { MPR_TYPE_INT, "int" },
42                 { MPR_TYPE_INT64, "int64" },
43                 { MPR_TYPE_OBJECT, "object" },
44                 { MPR_TYPE_FUNCTION, "function" },
45                 { MPR_TYPE_STRING, "string" },
46                 { MPR_TYPE_STRING_CFUNCTION, "function" }
47         };
48         int i;
49         const char *type = "unknown";
50
51         if (argc != 1) return -1;
52         
53         for (i=0;i<ARRAY_SIZE(types);i++) {
54                 if (argv[0]->type == types[i].type) {
55                         type = types[i].name;
56                         break;
57                 }
58         }
59
60         espSetReturnString(ep, type);
61         return 0;
62 }
63
64
65 /*
66   setup the C functions that be called from ejs
67 */
68 void http_setup_ejs_functions(void)
69 {
70         espDefineStringCFunction(NULL, "lpGet", esp_lpGet, NULL);
71         espDefineCFunction(NULL, "typeof", esp_typeof, NULL);
72 }