-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathETag.pm
More file actions
92 lines (81 loc) · 2.33 KB
/
ETag.pm
File metadata and controls
92 lines (81 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package HTTP::Headers::ETag;
use strict;
use warnings;
our $VERSION = '7.01';
require HTTP::Date;
require HTTP::Headers;
package HTTP::Headers;
sub _etags {
my $self = shift;
my $header = shift;
my @old = _split_etag_list( $self->_header($header) );
if (@_) {
$self->_header( $header => join( ", ", _split_etag_list(@_) ) );
}
wantarray ? @old : join( ", ", @old );
}
sub etag { shift->_etags( "ETag", @_ ); }
sub if_match { shift->_etags( "If-Match", @_ ); }
sub if_none_match { shift->_etags( "If-None-Match", @_ ); }
sub if_range {
# Either a date or an entity-tag
my $self = shift;
my @old = $self->_header("If-Range");
if (@_) {
my $new = shift;
if ( !defined $new ) {
$self->remove_header("If-Range");
}
elsif ( $new =~ /^\d+$/ ) {
$self->_date_header( "If-Range", $new );
}
else {
$self->_etags( "If-Range", $new );
}
}
return unless defined(wantarray);
for (@old) {
my $t = HTTP::Date::str2time($_);
$_ = $t if $t;
}
wantarray ? @old : join( ", ", @old );
}
# Split a list of entity tag values. The return value is a list
# consisting of one element per entity tag. Suitable for parsing
# headers like C<If-Match>, C<If-None-Match>. You might even want to
# use it on C<ETag> and C<If-Range> entity tag values, because it will
# normalize them to the common form.
#
# entity-tag = [ weak ] opaque-tag
# weak = "W/"
# opaque-tag = quoted-string
sub _split_etag_list {
my (@val) = @_;
my @res;
for (@val) {
while (length) {
my $weak = "";
$weak = "W/" if s,^\s*[wW]/,,;
my $etag = "";
if (s/^\s*(\"[^\"\\]*(?:\\.[^\"\\]*)*\")//) {
push( @res, "$weak$1" );
}
elsif (s/^\s*,//) {
push( @res, qq(W/"") ) if $weak;
}
elsif (s/^\s*([^,\s]+)//) {
$etag = $1;
$etag =~ s/([\"\\])/\\$1/g;
push( @res, qq($weak"$etag") );
}
elsif ( s/^\s+// || !length ) {
push( @res, qq(W/"") ) if $weak;
}
else {
die "This should not happen: '$_'";
}
}
}
@res;
}
1;