Catalyst::Action::DBIC::Transaction - Encloses actions into transactions


Catalyst-Controller-DBIC-Transaction documentation Contained in the Catalyst-Controller-DBIC-Transaction distribution.

Index


Code Index:

NAME

Top

Catalyst::Action::DBIC::Transaction - Encloses actions into transactions

SYNOPSIS

Top

  use base qw(Catalyst::Controller::DBIC::Transaction);
  sub foo :DBICTransaction('DB') {
     do $something or die $!;
  }

DESCRIPTION

Top

THIS MODULE SHOULD BE CONSIDERED DEPRECATED. What is currently understood as a better practice is to enclose the code requiring a transaction into a proper model class. The point is that business logic should not be in the controller.

This module enables the use of automatic transaction support into Catalyst Actions, it will associate a given action with the appropriate action class and save the DBIC::Schema model class name for later use.

The action will be executed inside a txn_do, and a die inside that method will cause the transaction to be rolled back, as documented in DBIx::Class::Schema.

This method will not, on the other hand, handle that exception, since txn_do will rethrow it. This means that this handling is not much intrusive in the action processing flow.

AUTHORS

Top

Daniel Ruoso <daniel@ruoso.com>

BUG REPORTS

Top

Please submit all bugs regarding Catalyst::Controller::DBIC::Transaction to bug-catalyst-controller-dbic-transaction@rt.cpan.org

LICENSE

Top

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.


Catalyst-Controller-DBIC-Transaction documentation Contained in the Catalyst-Controller-DBIC-Transaction distribution.

{   package Catalyst::Action::DBIC::Transaction;
    use strict;
    use warnings;
    use base 'Catalyst::Action';
    use MRO::Compat;
    use mro 'c3';
    use Sub::Name 'subname';

    sub execute {
        my $self = shift;
        my ( $controller, $c ) = @_;
        my @other_args = @_;

        my $model_class = $controller->_dbic_transaction_schemas->{$self->name}
          or die 'No schema class defined for DBIC::Transaction ActionClass';

        my $wantarray = wantarray;
        my ($return, @return, $success);

        my $sub = subname 'Catalyst::Action::DBIC::Transaction::execute' => sub {
            if ($wantarray) {
                @return = $self->next::method(@other_args);
            } else {
                $return = $self->next::method(@other_args);
            }
        };

        $c->model($model_class)->schema->txn_do($sub);

        if ($wantarray) {
            return @return;
        } else {
            return $return;
        }
    }

};
1;