Skip to content

Commit

Permalink
- Patch #732486 by Damien Tournoud, JacobSingh: drupal_add_http_heade…
Browse files Browse the repository at this point in the history
…r() req ; make Status a normal header and drupal_add_http() header shouldn't return a list of headers.
  • Loading branch information
dbuytaert committed Mar 6, 2010
1 parent 140cacb commit e1ce11d
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 30 deletions.
2 changes: 1 addition & 1 deletion authorize.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* Render a 403 access denied page for authorize.php
*/
function authorize_access_denied_page() {
drupal_add_http_header('403 Forbidden');
drupal_add_http_header('Status', '403 Forbidden');
watchdog('access denied', 'authorize.php', NULL, WATCHDOG_WARNING);
drupal_set_title('Access denied');
return t('You are not allowed to access this page.');
Expand Down
30 changes: 10 additions & 20 deletions includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -906,32 +906,22 @@ function drupal_load($type, $name) {
* too. This is necessary to avoid security bugs (e.g. UTF-7 XSS).
*
* @param $name
* The HTTP header name, or a status code followed by a reason phrase, e.g.
* "404 Not Found".
* The HTTP header name, or the special 'Status' header name.
* @param $value
* The HTTP header value; if omitted, the specified header is unset.
* The HTTP header value; if equal to FALSE, the specified header is unset.
* If $name is 'Status', this is expected to be a status code followed by a
* reason phrase, e.g. "404 Not Found".
* @param $append
* Whether to append the value to an existing header or to replace it.
*/
function drupal_add_http_header($name = NULL, $value = NULL, $append = FALSE) {
function drupal_add_http_header($name, $value, $append = FALSE) {
// The headers as name/value pairs.
$headers = &drupal_static(__FUNCTION__, array());
$headers = &drupal_static('drupal_http_headers', array());

if (!isset($name)) {
return $headers;
}

// Save status codes using the special key ":status".
if (preg_match('/^\d{3} /', $name)) {
$value = $name;
$name = $name_lower = ':status';
}
else {
$name_lower = strtolower($name);
}
$name_lower = strtolower($name);
_drupal_set_preferred_header_name($name);

if (!isset($value)) {
if ($value === FALSE) {
$headers[$name_lower] = FALSE;
}
elseif (isset($headers[$name_lower]) && $append) {
Expand All @@ -956,7 +946,7 @@ function drupal_add_http_header($name = NULL, $value = NULL, $append = FALSE) {
* or NULL if the header has not been set.
*/
function drupal_get_http_header($name = NULL) {
$headers = drupal_add_http_header();
$headers = &drupal_static('drupal_http_headers', array());
if (isset($name)) {
$name = strtolower($name);
return isset($headers[$name]) ? $headers[$name] : NULL;
Expand Down Expand Up @@ -1006,7 +996,7 @@ function drupal_send_headers($default_headers = array(), $only_default = FALSE)
}
}
foreach ($headers as $name_lower => $value) {
if ($name_lower == ':status') {
if ($name_lower == 'status') {
header($_SERVER['SERVER_PROTOCOL'] . ' ' . $value);
}
// Skip headers that have been unset.
Expand Down
6 changes: 3 additions & 3 deletions includes/common.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2339,7 +2339,7 @@ function drupal_deliver_html_page($page_callback_result) {
switch ($page_callback_result) {
case MENU_NOT_FOUND:
// Print a 404 page.
drupal_add_http_header('404 Not Found');
drupal_add_http_header('Status', '404 Not Found');

watchdog('page not found', check_plain($_GET['q']), NULL, WATCHDOG_WARNING);

Expand Down Expand Up @@ -2369,7 +2369,7 @@ function drupal_deliver_html_page($page_callback_result) {

case MENU_ACCESS_DENIED:
// Print a 403 page.
drupal_add_http_header('403 Forbidden');
drupal_add_http_header('Status', '403 Forbidden');
watchdog('access denied', check_plain($_GET['q']), NULL, WATCHDOG_WARNING);

// Keep old path for reference, and to allow forms to redirect to it.
Expand Down Expand Up @@ -2397,7 +2397,7 @@ function drupal_deliver_html_page($page_callback_result) {
case MENU_SITE_OFFLINE:
// Print a 503 page.
drupal_maintenance_theme();
drupal_add_http_header('503 Service unavailable');
drupal_add_http_header('Status', '503 Service unavailable');
drupal_set_title(t('Site under maintenance'));
print theme('maintenance_page', array('content' => filter_xss_admin(variable_get('maintenance_mode_message',
t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('@site' => variable_get('site_name', 'Drupal')))))));
Expand Down
2 changes: 1 addition & 1 deletion includes/database/database.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2722,7 +2722,7 @@ function _db_error_page($error = '') {
global $db_type;
drupal_language_initialize();
drupal_maintenance_theme();
drupal_add_http_header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service Unavailable');
drupal_add_http_header('Status', '503 Service Unavailable');
drupal_set_title('Site offline');
}

Expand Down
2 changes: 1 addition & 1 deletion includes/errors.inc
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function _drupal_log_error($error, $fatal = FALSE) {
}

if ($fatal) {
drupal_add_http_header('500 Service unavailable (with message)');
drupal_add_http_header('Status', '500 Service unavailable (with message)');
}

if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') {
Expand Down
2 changes: 1 addition & 1 deletion modules/aggregator/tests/aggregator_test.module
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function aggregator_test_feed($use_last_modified = FALSE, $use_etag = FALSE) {
}
// Return 304 not modified if either last modified or etag match.
if ($last_modified == $if_modified_since || $etag == $if_none_match) {
drupal_add_http_header('304 Not Modified');
drupal_add_http_header('Status', '304 Not Modified');
return;
}

Expand Down
4 changes: 2 additions & 2 deletions modules/image/image.module
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ function image_style_generate() {
if (!$lock_acquired) {
// Tell client to retry again in 3 seconds. Currently no browsers are known
// to support Retry-After.
drupal_add_http_header('503 Service Unavailable');
drupal_add_http_header('Status', '503 Service Unavailable');
drupal_add_http_header('Retry-After', 3);
print t('Image generation in progress. Try again shortly.');
drupal_exit();
Expand All @@ -630,7 +630,7 @@ function image_style_generate() {
}
else {
watchdog('image', 'Unable to generate the derived image located at %path.', array('%path' => $destination));
drupal_add_http_header('500 Internal Server Error');
drupal_add_http_header('Status', '500 Internal Server Error');
print t('Error generating image.');
drupal_exit();
}
Expand Down
2 changes: 1 addition & 1 deletion update.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function update_info_page() {
}

function update_access_denied_page() {
drupal_add_http_header('403 Forbidden');
drupal_add_http_header('Status', '403 Forbidden');
watchdog('access denied', 'update.php', NULL, WATCHDOG_WARNING);
drupal_set_title('Access denied');
return '<p>Access denied. You are not authorized to access this page. Log in using either an account with the <em>administer software updates</em> permission or the site maintenance account (the account you created during installation). If you cannot log in, you will have to edit <code>settings.php</code> to bypass this access check. To do this:</p>
Expand Down

0 comments on commit e1ce11d

Please sign in to comment.