2 +--------------------------------------------------------------------+
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2006, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
15 #define HTTP_WANT_SAPI
18 #include "php_output.h"
19 #include "php_streams.h"
21 #include "php_http_api.h"
22 #include "php_http_cache_api.h"
23 #include "php_http_date_api.h"
24 #include "php_http_send_api.h"
26 /* {{{ char *http_etag(void *, size_t, http_send_mode) */
27 PHP_HTTP_API
char *_http_etag(const void *data_ptr
, size_t data_len
, http_send_mode data_mode TSRMLS_DC
)
29 void *ctx
= http_etag_init();
31 if (data_mode
== SEND_DATA
) {
32 http_etag_update(ctx
, data_ptr
, data_len
);
35 php_stream_statbuf ssb
;
37 if (data_mode
== SEND_RSRC
) {
38 ss
= php_stream_stat((php_stream
*) data_ptr
, &ssb
);
40 ss
= php_stream_stat_path((char *) data_ptr
, &ssb
);
48 char ssb_buf
[128] = {0};
50 ssb_len
= snprintf(ssb_buf
, 127, "%ld=%ld=%ld", (long) ssb
.sb
.st_mtime
,
52 (long) ssb
.sb
.st_size
);
53 http_etag_update(ctx
, ssb_buf
, ssb_len
);
57 return http_etag_finish(ctx
);
61 /* {{{ time_t http_last_modified(void *, http_send_mode) */
62 PHP_HTTP_API
time_t _http_last_modified(const void *data_ptr
, http_send_mode data_mode TSRMLS_DC
)
64 php_stream_statbuf ssb
;
67 case SEND_DATA
: return HTTP_G
->request
.time
;
68 case SEND_RSRC
: return php_stream_stat((php_stream
*) data_ptr
, &ssb
) ? 0 : ssb
.sb
.st_mtime
;
69 default: return php_stream_stat_path((char *) data_ptr
, &ssb
) ? 0 : ssb
.sb
.st_mtime
;
74 /* {{{ zend_bool http_match_last_modified(char *, time_t) */
75 PHP_HTTP_API zend_bool
_http_match_last_modified_ex(const char *entry
, time_t t
, zend_bool enforce_presence TSRMLS_DC
)
79 char *modified
, *chr_ptr
;
81 HTTP_GSC(zmodified
, entry
, !enforce_presence
);
83 modified
= estrndup(Z_STRVAL_P(zmodified
), Z_STRLEN_P(zmodified
));
84 if ((chr_ptr
= strrchr(modified
, ';'))) {
88 retval
= (t
<= http_parse_date(modified
));
94 /* {{{ zend_bool http_match_etag(char *, char *) */
95 PHP_HTTP_API zend_bool
_http_match_etag_ex(const char *entry
, const char *etag
, zend_bool enforce_presence TSRMLS_DC
)
101 HTTP_GSC(zetag
, entry
, !enforce_presence
);
103 if (NULL
!= strchr(Z_STRVAL_P(zetag
), '*')) {
107 spprintf("ed_etag
, 0, "\"%s\"", etag
);
108 if (!strchr(Z_STRVAL_P(zetag
), ',')) {
109 result
= !strcmp(Z_STRVAL_P(zetag
), quoted_etag
);
111 result
= (NULL
!= strstr(Z_STRVAL_P(zetag
), quoted_etag
));
119 /* {{{ STATUS http_cache_last_modified(time_t, time_t, char *, size_t) */
120 PHP_HTTP_API STATUS
_http_cache_last_modified(time_t last_modified
,
121 time_t send_modified
, const char *cache_control
, size_t cc_len TSRMLS_DC
)
123 char *sent_header
= NULL
;
125 if (SG(headers_sent
)) {
129 if (cc_len
&& (SUCCESS
!= http_send_cache_control(cache_control
, cc_len
))) {
133 if (SUCCESS
!= http_send_last_modified_ex(send_modified
, &sent_header
)) {
137 if (http_match_last_modified("HTTP_IF_MODIFIED_SINCE", last_modified
)) {
138 http_exit_ex(304, sent_header
, NULL
, 0);
140 STR_FREE(sent_header
);
147 /* {{{ STATUS http_cache_etag(char *, size_t, char *, size_t) */
148 PHP_HTTP_API STATUS
_http_cache_etag(const char *etag
, size_t etag_len
,
149 const char *cache_control
, size_t cc_len TSRMLS_DC
)
151 char *sent_header
= NULL
;
153 if (SG(headers_sent
)) {
157 if (cc_len
&& (SUCCESS
!= http_send_cache_control(cache_control
, cc_len
))) {
162 if (SUCCESS
!= http_send_etag_ex(etag
, etag_len
, &sent_header
)) {
165 if (http_match_etag("HTTP_IF_NONE_MATCH", etag
)) {
166 http_exit_ex(304, sent_header
, NULL
, 0);
168 STR_FREE(sent_header
);
173 /* start ob_etaghandler */
174 return http_start_ob_etaghandler();
178 PHP_HTTP_API STATUS
_http_start_ob_etaghandler(TSRMLS_D
)
180 /* already running? */
181 if (php_ob_handler_used("ob_etaghandler" TSRMLS_CC
)) {
182 http_error(HE_WARNING
, HTTP_E_RUNTIME
, "ob_etaghandler can only be used once");
186 HTTP_G
->etag
.started
= 1;
187 return php_start_ob_buffer_named("ob_etaghandler", HTTP_G
->send
.buffer_size
, 0 TSRMLS_CC
);
190 PHP_HTTP_API zend_bool
_http_interrupt_ob_etaghandler(TSRMLS_D
)
192 if (HTTP_G
->etag
.started
) {
193 HTTP_G
->etag
.started
= 0;
194 if (HTTP_G
->etag
.ctx
) {
195 efree(HTTP_G
->etag
.ctx
);
196 HTTP_G
->etag
.ctx
= NULL
;
203 /* {{{ void http_ob_etaghandler(char *, uint, char **, uint *, int) */
204 void _http_ob_etaghandler(char *output
, uint output_len
,
205 char **handled_output
, uint
*handled_output_len
, int mode TSRMLS_DC
)
208 *handled_output_len
= output_len
;
209 *handled_output
= estrndup(output
, output_len
);
211 /* are we supposed to run? */
212 if (HTTP_G
->etag
.started
) {
213 /* initialize the etag context */
214 if (mode
& PHP_OUTPUT_HANDLER_START
) {
215 HTTP_G
->etag
.ctx
= http_etag_init();
219 http_etag_update(HTTP_G
->etag
.ctx
, output
, output_len
);
222 if (mode
& PHP_OUTPUT_HANDLER_END
) {
223 char *sent_header
= NULL
;
224 char *etag
= http_etag_finish(HTTP_G
->etag
.ctx
);
226 HTTP_G
->etag
.ctx
= NULL
;
228 http_send_cache_control(HTTP_DEFAULT_CACHECONTROL
, lenof(HTTP_DEFAULT_CACHECONTROL
));
229 http_send_etag_ex(etag
, strlen(etag
), &sent_header
);
231 if (http_match_etag("HTTP_IF_NONE_MATCH", etag
)) {
232 /* force exit; ob within ob does not work */
233 HTTP_G
->force_exit
= 1;
234 http_exit_ex(304, sent_header
, etag
, 0);
237 STR_FREE(sent_header
);
249 * vim600: sw=4 ts=4 fdm=marker