r6986: added support for <% include("somefile.ejs") %> for including common scripts
authorAndrew Tridgell <tridge@samba.org>
Thu, 26 May 2005 02:52:05 +0000 (02:52 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:17:02 +0000 (13:17 -0500)
(This used to be commit e54b31904c69b1aaad748e5be6dce1c882d02c67)

source4/script/installswat.sh
source4/web_server/http.c

index dbf0e7351f887dc6250c0cea8c9e69aeeee3f62c..3e6e104d034891127674b9afd00e47de51783b48 100644 (file)
@@ -18,9 +18,9 @@ installdir() {
     done
 }
 
-installdir html html
-installdir html/esptest html
-installdir html/images png
+installdir . html
+installdir esptest html
+installdir images png
 installdir scripting ejs
 
 cat << EOF
index 61ed6853617600d4f33a730d03bf31fe6d955265..5f89e47163e30a261b24d7d2bed1390717dfbb0c 100644 (file)
@@ -96,6 +96,36 @@ static void http_output_headers(struct websrv_context *web)
        data_blob_free(&b);
 }
 
+/*
+  called when esp wants to read a file to support include() calls
+*/
+static int http_readFile(EspHandle handle, char **buf, int *len, char *path)
+{
+       int fd = -1;
+       struct stat st;
+       *buf = NULL;
+
+       fd = open(path, O_RDONLY);
+       if (fd == -1 || fstat(fd, &st) != 0 || !S_ISREG(st.st_mode)) goto failed;
+
+       *buf = talloc_size(handle, st.st_size+1);
+       if (*buf == NULL) goto failed;
+
+       if (read(fd, *buf, st.st_size) != st.st_size) goto failed;
+
+       (*buf)[st.st_size] = 0;
+
+       close(fd);
+       *len = st.st_size;
+       return 0;
+
+failed:
+       if (fd != -1) close(fd);
+       talloc_free(*buf);
+       *buf = NULL;
+       return -1;
+}
+
 /*
   called when esp wants to output something
 */
@@ -191,7 +221,8 @@ static const struct Esp esp_control = {
        .writeBlock      = http_writeBlock,
        .setHeader       = http_setHeader,
        .redirect        = http_redirect,
-       .setResponseCode = http_setResponseCode
+       .setResponseCode = http_setResponseCode,
+       .readFile        = http_readFile
 };
 
 
@@ -250,7 +281,7 @@ static const char *http_local_path(struct websrv_context *web, const char *url)
                }
        }
 
-       path = talloc_asprintf(web, "%s/html/%s", lp_swat_directory(), url+1);
+       path = talloc_asprintf(web, "%s/%s", lp_swat_directory(), url+1);
        if (path == NULL) return NULL;
 
        if (directory_exist(path)) {
@@ -338,11 +369,10 @@ static void esp_request(struct esp_state *esp)
 {
        struct websrv_context *web = esp->web;
        const char *url = web->input.url;
-       char *buf;
        const char *path;
-       struct stat st;
-       int fd, res;
-       char *emsg = NULL;
+       size_t size;
+       int res;
+       char *emsg = NULL, *buf;
 
        http_setup_arrays(esp);
 
@@ -351,31 +381,16 @@ static void esp_request(struct esp_state *esp)
 
        espSetStringVar(esp->req, ESP_REQUEST_OBJ, "SCRIPT_FILENAME", path);
 
-       /* looks ok */
-       fd = open(path, O_RDONLY);
-       if (fd == -1) {
+       if (http_readFile(web, &buf, &size, path) != 0) {
                http_error_unix(web, path);
                return;
        }
 
-       if (fstat(fd, &st) != 0 || !S_ISREG(st.st_mode)) {
-               close(fd);
-               goto invalid;
-       }
-
-       buf = talloc_size(esp, st.st_size+1);
-       if (buf == NULL) goto invalid;
-
-       if (read(fd, buf, st.st_size) != st.st_size) {
-               goto invalid;
-       }
-       buf[st.st_size] = 0;
-       close(fd);
-
        res = espProcessRequest(esp->req, path, buf, &emsg);
        if (res != 0 && emsg) {
                http_writeBlock(esp, emsg, strlen(emsg));
        }
+       talloc_free(buf);
        http_output_headers(web);
        EVENT_FD_WRITEABLE(web->conn->event.fde);
        return;