diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-08-09 19:55:53 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-08-09 19:55:53 +0200 |
commit | 460ae51fc0e70dd2d7fcef4bdb92308269327f1d (patch) | |
tree | 4d9eb74d49ec5fcdfb362345c5667c400c2cc2ea /config.cgi | |
parent | dbc5625130931706a14de0bb88ecc5d1d2bdf3fb (diff) | |
download | bugzilla-460ae51fc0e70dd2d7fcef4bdb92308269327f1d.tar.gz bugzilla-460ae51fc0e70dd2d7fcef4bdb92308269327f1d.tar.xz |
Bug 903514 - Backport upstream bug 569177 for etag support to bmo/4.2
Diffstat (limited to 'config.cgi')
-rwxr-xr-x | config.cgi | 39 |
1 files changed, 11 insertions, 28 deletions
diff --git a/config.cgi b/config.cgi index 963224638..fcc5d82ed 100755 --- a/config.cgi +++ b/config.cgi @@ -44,15 +44,16 @@ use Digest::MD5 qw(md5_base64); my $user = Bugzilla->login(LOGIN_OPTIONAL); my $cgi = Bugzilla->cgi; +# Get data from the shadow DB as they don't change very often. +Bugzilla->switch_to_shadow_db; + # If the 'requirelogin' parameter is on and the user is not # authenticated, return empty fields. if (Bugzilla->params->{'requirelogin'} && !$user->id) { display_data(); + exit; } -# Get data from the shadow DB as they don't change very often. -Bugzilla->switch_to_shadow_db; - # Pass a bunch of Bugzilla configuration to the templates. my $vars = {}; $vars->{'priority'} = get_legal_field_values('priority'); @@ -136,31 +137,13 @@ sub display_data { utf8::encode($digest_data) if utf8::is_utf8($digest_data); my $digest = md5_base64($digest_data); - # ETag support. - my $if_none_match = $cgi->http('If-None-Match') || ""; - my $found304; - my @if_none = split(/[\s,]+/, $if_none_match); - foreach my $if_none (@if_none) { - # remove quotes from begin and end of the string - $if_none =~ s/^\"//g; - $if_none =~ s/\"$//g; - if ($if_none eq $digest or $if_none eq '*') { - # leave the loop after the first match - $found304 = $if_none; - last; - } - } - - if ($found304) { - print $cgi->header(-type => 'text/html', - -ETag => $found304, + if ($cgi->check_etag($digest)) { + print $cgi->header(-ETag => $digest, -status => '304 Not Modified'); + exit; } - else { - # Return HTTP headers. - print $cgi->header (-ETag => $digest, - -type => $format->{'ctype'}); - print $output; - } - exit; + + print $cgi->header (-ETag => $digest, + -type => $format->{'ctype'}); + print $output; } |