Reaction::InterfaceModel::Action::User::SetPassword - Reaction::InterfaceModel::Action::User::SetPassword documentation


Reaction documentation Contained in the Reaction distribution.

Index


Code Index:

NAME

Top

Reaction::InterfaceModel::Action::User::SetPassword

DESCRIPTION

Top

ATTRIBUTES

Top

new_password

confirm_new_password

METHODS

Top

verify_confirm_new_password

Tests to make sure that new_password and confirm_new_password match.

SEE ALSO

Top

Reaction::InterfaceModel::Action::DBIC::User::SetPassword

AUTHORS

Top

See Reaction::Class for authors.

LICENSE

Top

See Reaction::Class for the license.


Reaction documentation Contained in the Reaction distribution.

package Reaction::InterfaceModel::Action::User::SetPassword;

use Reaction::Class;
use Reaction::InterfaceModel::Action;
use Reaction::Types::Core qw(Password);

use namespace::clean -except => [ qw(meta) ];
extends 'Reaction::InterfaceModel::Action';



has new_password => (isa => Password, is => 'rw', lazy_fail => 1);
has confirm_new_password => 
    (isa => Password, is => 'rw', lazy_fail => 1);

around error_for_attribute => sub {
  my $super = shift;
  my ($self, $attr) = @_;
  if ($attr->name eq 'confirm_new_password') {
    return "New password doesn't match"
      unless $self->verify_confirm_new_password;
  }
  return $super->(@_);
};

around can_apply => sub {
  my $super = shift;
  my ($self) = @_;
  return $super->(@_) && $self->verify_confirm_new_password;;
};
sub verify_confirm_new_password {
  my $self = shift;
  return $self->has_new_password && $self->has_confirm_new_password
      && ($self->new_password eq $self->confirm_new_password);
};

__PACKAGE__->meta->make_immutable;


1;