File: Strict.pm

package info (click to toggle)
liboauth-lite2-perl 0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 592 kB
  • sloc: perl: 2,658; makefile: 8
file content (80 lines) | stat: -rw-r--r-- 2,483 bytes parent folder | download | duplicates (2)
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
package OAuth::Lite2::Agent::Strict;

use strict;
use warnings;

use parent 'OAuth::Lite2::Agent';
use OAuth::Lite2::Client::Error;

=head1 NAME

OAuth::Lite2::Agent::Strict - Preset User Agent class for strict SSL

=head1 SYNOPSIS

    my $client = OAuth::Lite2::Client::WebApp->new(
        ..., # other params
        agent => OAuth::Lite2::Client::Agent::Strict->new(
            https_version => $https_version,
            ..., # https parameters
        ),
    );

=head1 DESCRIPTION

This module is one of preset user-agent class.
This is useful when you want check the SSL strictly.

=head1 METHODS

=head2 request ($req)

Append to the behavior of parent class, this method verify the SSL,
and if it fails, it throws the exception.

=cut

sub request {
    my ($self, $req) = @_;

    OAuth::Lite2::Client::Error::InsecureRequest->throw(
        message => sprintf q{request url should start with https, but found "%s"}, $req->uri)
        unless $req->uri =~ /^https/;

    local $ENV{HTTPS_DEBUG}          = $self->{https_debug}          if $self->{https_debug};
    local $ENV{HTTPS_CA_FILE}        = $self->{https_ca_file}        if $self->{https_ca_file};
    local $ENV{HTTPS_CA_DIR}         = $self->{https_ca_dir}         if $self->{https_ca_dir};
    local $ENV{HTTPS_CERT_FILE}      = $self->{https_cert_file}      if $self->{https_cert_file};
    local $ENV{HTTPS_KEY_FILE}       = $self->{https_key_file}       if $self->{https_key_file};
    local $ENV{HTTPS_VERSION}        = $self->{https_version}        if $self->{https_version};
    local $ENV{HTTPS_PROXY}          = $self->{https_proxy}          if $self->{https_proxy};
    local $ENV{HTTPS_PROXY_USERNAME} = $self->{https_proxy_username} if $self->{https_proxy_username};
    local $ENV{HTTPS_PROXY_PASSWORD} = $self->{https_proxy_password} if $self->{https_proxy_password};

    my $res = $self->SUPER::request($req);

    OAuth::Lite2::Client::Error::InsecureResponse->throw(
        message => "SSL Warning: Unauthorized access to blocked host"
    ) if $res->header('Client-SSL-Warning');

    return $res;
}

1;

=head1 SEE ALSO

L<OAuth::Lite2::Client::Agent>,
L<OAuth::Lite2::Client::Agent::Dump>

=head1 AUTHOR

Lyo Kato, C<lyo.kato _at_ gmail.com>

=head1 COPYRIGHT AND LICENSE

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.

=cut