nginx/src/http/modules/ngx_http_static_handler.c

155 lines
4.7 KiB
C
Raw Normal View History

2002-08-16 01:20:26 +08:00
#include <ngx_config.h>
2002-08-20 22:48:28 +08:00
#include <ngx_string.h>
#include <ngx_file.h>
#include <ngx_hunk.h>
#include <ngx_http.h>
2002-08-16 01:20:26 +08:00
2002-08-20 22:48:28 +08:00
ngx_http_module_t ngx_http_static_module;
#if 0
/* STUB */
static ngx_http_static_ctx_t module_ctx;
void ngx_http_static_init()
{
module_ctx.out = NULL;
ngx_http_static_module.ctx = &module_ctx;
}
/* */
#endif
2002-08-16 01:20:26 +08:00
int ngx_http_static_handler(ngx_http_request_t *r)
{
2002-12-15 14:25:09 +08:00
int rc;
ngx_err_t err;
2002-08-20 22:48:28 +08:00
ngx_hunk_t *h;
2002-09-02 22:48:24 +08:00
ngx_http_log_ctx_t *ctx;
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
#if 0
2002-08-16 01:20:26 +08:00
ngx_http_event_static_handler_loc_conf_t *cf;
cf = (ngx_http_event_static_handler_loc_conf_t *)
ngx_get_module_loc_conf(r, &ngx_http_event_static_handler_module);
2002-12-15 14:25:09 +08:00
#endif
2002-08-16 01:20:26 +08:00
2002-09-02 22:48:24 +08:00
ngx_http_discard_body(r);
ctx = r->connection->log->data;
ctx->action = "sending response";
2002-12-15 14:25:09 +08:00
if (r->file.fd == NGX_INVALID_FILE)
r->file.fd = ngx_open_file(r->file.name.data, NGX_FILE_RDONLY);
2002-12-11 02:05:12 +08:00
2002-12-15 14:25:09 +08:00
if (r->file.fd == NGX_INVALID_FILE) {
err = ngx_errno;
2002-08-20 22:48:28 +08:00
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno,
"ngx_http_static_handler: "
2002-12-15 14:25:09 +08:00
ngx_open_file_n " %s failed", r->file.name.data);
if (err == NGX_ENOENT)
return NGX_HTTP_NOT_FOUND;
#if (WIN32)
else if (err == ERROR_PATH_NOT_FOUND)
return NGX_HTTP_NOT_FOUND;
#endif
else
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
if (!r->file.info_valid) {
if (ngx_stat_fd(r->file.fd, &r->file.info) == NGX_FILE_ERROR) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno,
"ngx_http_static_handler: "
ngx_stat_fd_n " %s failed", r->file.name.data);
if (ngx_close_file(r->file.fd) == NGX_FILE_ERROR)
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno,
"ngx_http_static_handler: "
ngx_close_file_n " %s failed", r->file.name.data);
2002-09-11 23:18:33 +08:00
2002-12-15 14:25:09 +08:00
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
r->file.info_valid = 1;
2002-08-20 22:48:28 +08:00
}
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
#if !(WIN32) /* it's probably Unix specific */
if (!ngx_is_file(r->file.info)) {
2002-08-20 22:48:28 +08:00
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno,
"ngx_http_static_handler: "
2002-12-15 14:25:09 +08:00
"%s is not regular file", r->file.name.data);
if (ngx_close_file(r->file.fd) == NGX_FILE_ERROR)
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno,
"ngx_http_static_handler: "
ngx_close_file_n " %s failed", r->file.name.data);
2002-09-11 23:18:33 +08:00
2002-12-15 14:25:09 +08:00
return NGX_HTTP_NOT_FOUND;
2002-08-20 22:48:28 +08:00
}
2002-12-15 14:25:09 +08:00
#endif
r->headers_out.status = NGX_HTTP_OK;
2002-12-15 14:25:09 +08:00
r->headers_out.content_length = ngx_file_size(r->file.info);
r->headers_out.last_modified_time = ngx_file_mtime(r->file.info);
2002-08-16 01:20:26 +08:00
2002-12-11 02:05:12 +08:00
ngx_test_null(r->headers_out.content_type,
ngx_push_table(r->headers_out.headers),
NGX_HTTP_INTERNAL_SERVER_ERROR);
2002-12-15 14:25:09 +08:00
2002-12-11 02:05:12 +08:00
r->headers_out.content_type->key.len = 12;
r->headers_out.content_type->key.data = "Content-Type";
2002-08-20 22:48:28 +08:00
/* STUB */
2002-12-11 02:05:12 +08:00
if (r->exten.len) {
2003-01-10 14:09:20 +08:00
if (ngx_strcasecmp(r->exten.data, "html") == 0) {
2002-12-11 02:05:12 +08:00
r->headers_out.content_type->value.len = 25;
r->headers_out.content_type->value.data =
"text/html; charset=koi8-r";
2003-01-10 14:09:20 +08:00
} else if (ngx_strcasecmp(r->exten.data, "gif") == 0) {
2002-12-11 02:05:12 +08:00
r->headers_out.content_type->value.len = 9;
r->headers_out.content_type->value.data = "image/gif";
2003-01-10 14:09:20 +08:00
} else if (ngx_strcasecmp(r->exten.data, "jpg") == 0) {
2002-12-11 02:05:12 +08:00
r->headers_out.content_type->value.len = 10;
r->headers_out.content_type->value.data = "image/jpeg";
2003-01-10 14:09:20 +08:00
} else if (ngx_strcasecmp(r->exten.data, "pdf") == 0) {
2003-01-09 13:36:00 +08:00
r->headers_out.content_type->value.len = 15;
r->headers_out.content_type->value.data = "application/pdf";
2002-12-11 02:05:12 +08:00
}
2002-09-16 23:01:44 +08:00
} else {
2002-12-11 02:05:12 +08:00
r->headers_out.content_type->value.len = 25;
r->headers_out.content_type->value.data = "text/html; charset=koi8-r";
2002-09-16 23:01:44 +08:00
}
2002-12-15 14:25:09 +08:00
/**/
2002-08-20 22:48:28 +08:00
2002-12-15 14:25:09 +08:00
/* we need to allocate them before header would be sent */
2002-09-02 22:48:24 +08:00
ngx_test_null(h, ngx_pcalloc(r->pool, sizeof(ngx_hunk_t)),
NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_test_null(h->file, ngx_pcalloc(r->pool, sizeof(ngx_file_t)),
2002-08-16 01:20:26 +08:00
NGX_HTTP_INTERNAL_SERVER_ERROR);
2002-12-15 14:25:09 +08:00
rc = ngx_http_send_header(r);
if (r->header_only)
return rc;
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
h->type = NGX_HUNK_FILE|NGX_HUNK_LAST;
h->pos.file = 0;
h->last.file = ngx_file_size(r->file.info);
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
h->file->fd = r->file.fd;
h->file->log = r->connection->log;
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
rc = ngx_http_output_filter(r, h);
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
ngx_log_debug(r->connection->log, "0 output_filter: %d" _ rc);
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
return rc;
2002-08-16 01:20:26 +08:00
}