Crypt-LE
view release on metacpan or search on metacpan
lib/Crypt/LE.pm view on Meta::CPAN
$self->{new_registration} = 1;
$self->{registration_info} = $content;
$self->{tos_changed} = 0;
my $tos_message = '';
if ($self->{links}->{'terms-of-service'}) {
$self->{tos_changed} = 1;
$tos_message = "You need to accept TOS at $self->{links}->{'terms-of-service'}";
}
$self->_debug("New key is now registered, reg path: $self->{directory}->{reg}. $tos_message");
} elsif ($status == BAD_REQUEST and $kid and $mac and $self->_pull_error($content)=~/not awaiting/) {
# EAB credentials were already associated with the key.
if ($self->{directory}->{reg}) {
$self->_debug("EAB credentials already associated. Account URL is: $self->{directory}->{reg}.");
} else {
return $self->_status(ERROR, "EAB credentials already associated and no EAB id was provided.");
}
} else {
return $self->_status(ERROR, $content);
}
if ($self->{registration_info} and ref $self->{registration_info} eq 'HASH') {
$self->{registration_id} = $self->{registration_info}->{id};
if ($self->{registration_info}->{contact} and (ref $self->{registration_info}->{contact} eq 'ARRAY') and @{$self->{registration_info}->{contact}}) {
$self->{contact_details} = $self->{registration_info}->{contact};
}
}
script/le.pl view on Meta::CPAN
return $opt->{'error'}->("Please use either 'server' or 'directory', but not both.", 'PARAMETERS_CONFLICT') if ($opt->{'server'} and $opt->{'directory'});
if ($opt->{'eab-kid'} or $opt->{'eab-hmac-key'}) {
return $opt->{'error'}->("Please specify both eab-kid and eab-hmac-key.", 'PARAMETERS_CONFLICT') unless ($opt->{'eab-kid'} and $opt->{'eab-hmac-key'});
}
foreach my $url_type (qw<server directory>) {
if ($opt->{$url_type}) {
return $opt->{'error'}->("Unsupported protocol for the custom $url_type URL: $1.", 'CUSTOM_' . uc($url_type) . '_URL') if ($opt->{$url_type}=~s~^(.*?)://~~ and uc($1) ne 'HTTPS');
my $server = $opt->{$url_type}; # For logging.
$opt->{'logger'}->warn("Remember to URL-escape special characters if you are using $url_type URL with basic auth credentials.") if $server=~s~[^@/]*@~~;
$opt->{'logger'}->info("Custom $url_type URL 'https://$server' is used.");
$custom_server = 1;
}
}
if ($custom_server) {
return $opt->{'error'}->("Please do not use 'ca' when the custom server is set explicitly.", 'PARAMETERS_CONFLICT') if $opt->{'ca'};
# Ignore options which do not make sense if the custom server/directory is specified.
if ($opt->{'live'}) {
$opt->{'logger'}->warn("Note: 'live' option is ignored when the custom server/directory is set.");
( run in 0.256 second using v1.01-cache-2.11-cpan-4d50c553e7e )