line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
##---------------------------------------------------------------------------- |
2
|
|
|
|
|
|
|
## Asynchronous HTTP Request and Promise - ~/lib/HTTP/Promise/Headers/WantDigest.pm |
3
|
|
|
|
|
|
|
## Version v0.1.0 |
4
|
|
|
|
|
|
|
## Copyright(c) 2022 DEGUEST Pte. Ltd. |
5
|
|
|
|
|
|
|
## Author: Jacques Deguest <jack@deguest.jp> |
6
|
|
|
|
|
|
|
## Created 2022/05/09 |
7
|
|
|
|
|
|
|
## Modified 2022/05/09 |
8
|
|
|
|
|
|
|
## All rights reserved. |
9
|
|
|
|
|
|
|
## |
10
|
|
|
|
|
|
|
## |
11
|
|
|
|
|
|
|
## This program is free software; you can redistribute it and/or modify it |
12
|
|
|
|
|
|
|
## under the same terms as Perl itself. |
13
|
|
|
|
|
|
|
##---------------------------------------------------------------------------- |
14
|
|
|
|
|
|
|
package HTTP::Promise::Headers::WantDigest; |
15
|
|
|
|
|
|
|
BEGIN |
16
|
|
|
|
|
|
|
{ |
17
|
3
|
|
|
3
|
|
3284
|
use strict; |
|
3
|
|
|
|
|
8
|
|
|
3
|
|
|
|
|
95
|
|
18
|
3
|
|
|
3
|
|
16
|
use warnings; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
93
|
|
19
|
3
|
|
|
3
|
|
17
|
use warnings::register; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
401
|
|
20
|
3
|
|
|
3
|
|
18
|
use parent qw( HTTP::Promise::Headers::Accept ); |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
15
|
|
21
|
3
|
|
|
3
|
|
299
|
our $VERSION = 'v0.1.0'; |
22
|
|
|
|
|
|
|
}; |
23
|
|
|
|
|
|
|
|
24
|
3
|
|
|
3
|
|
16
|
use strict; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
51
|
|
25
|
3
|
|
|
3
|
|
14
|
use warnings; |
|
3
|
|
|
|
|
50
|
|
|
3
|
|
|
|
|
262
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
sub init |
28
|
|
|
|
|
|
|
{ |
29
|
3
|
|
|
3
|
1
|
6863
|
my $self = shift( @_ ); |
30
|
3
|
50
|
|
|
|
27
|
$self->SUPER::init( @_ ) || return( $self->pass_error ); |
31
|
3
|
|
|
|
|
16
|
$self->_field_name( 'Want-Digest' ); |
32
|
3
|
|
|
|
|
2369
|
return( $self ); |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
1; |
36
|
|
|
|
|
|
|
# NOTE: POD |
37
|
|
|
|
|
|
|
__END__ |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=encoding utf-8 |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 NAME |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
HTTP::Promise::Headers::WantDigest - Want-Digest Header Field |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 SYNOPSIS |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
use HTTP::Promise::Headers::WantDigest; |
48
|
|
|
|
|
|
|
my $want = HTTP::Promise::Headers::WantDigest->new || |
49
|
|
|
|
|
|
|
die( HTTP::Promise::Headers::WantDigest->error, "\n" ); |
50
|
|
|
|
|
|
|
my $e = $te->add( 'sha-256' ); |
51
|
|
|
|
|
|
|
# Set deflate with a weight of 0.3 |
52
|
|
|
|
|
|
|
my $e1 = $te->add( 'SHA-512' => 0.5 ); |
53
|
|
|
|
|
|
|
my $e2 = $te->get( $e1 ); |
54
|
|
|
|
|
|
|
# $e1 and $e2 are the same |
55
|
|
|
|
|
|
|
my $e2 = $te->get( 'SHA-512' ); |
56
|
|
|
|
|
|
|
say $e2->value; # 0.5 |
57
|
|
|
|
|
|
|
$e2->value(0.7); # Change it to 0.7 |
58
|
|
|
|
|
|
|
say "$te"; |
59
|
|
|
|
|
|
|
# sha-256, SHA-512;q=0.7 |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head1 VERSION |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
v0.1.0 |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head1 DESCRIPTION |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
This class inherits all its features from L<HTTP::Promise::Headers::Accept> |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The following description is taken from Mozilla documentation. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
Example: |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Want-Digest: sha-256 |
74
|
|
|
|
|
|
|
Want-Digest: SHA-512;q=0.3, sha-256;q=1, md5;q=0 |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head1 METHODS |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
See L<HTTP::Promise::Headers::Accept> |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 AUTHOR |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
Jacques Deguest E<lt>F<jack@deguest.jp>E<gt> |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 SEE ALSO |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
See also L<Mozilla documentation|https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Want-Digest> |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
L<HTTP::Promise>, L<HTTP::Promise::Request>, L<HTTP::Promise::Response>, L<HTTP::Promise::Message>, L<HTTP::Promise::Entity>, L<HTTP::Promise::Headers>, L<HTTP::Promise::Body>, L<HTTP::Promise::Body::Form>, L<HTTP::Promise::Body::Form::Data>, L<HTTP::Promise::Body::Form::Field>, L<HTTP::Promise::Status>, L<HTTP::Promise::MIME>, L<HTTP::Promise::Parser>, L<HTTP::Promise::IO>, L<HTTP::Promise::Stream>, L<HTTP::Promise::Exception> |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
Copyright(c) 2022 DEGUEST Pte. Ltd. |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
All rights reserved. |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=cut |