/[Frey]/trunk/lib/App/RoomReservation/Reservation.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/App/RoomReservation/Reservation.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1147 by dpavlin, Wed Jul 1 17:35:48 2009 UTC revision 1152 by dpavlin, Wed Jul 1 22:25:11 2009 UTC
# Line 11  subtype 'Email', Line 11  subtype 'Email',
11    
12  extends 'App::RoomReservation';  extends 'App::RoomReservation';
13    
14  with 'App::RoomReservation::Email';  with 'App::RoomReservation::Email', 'App::RoomReservation::Messages';
15    
16  use lib 'lib';  use lib 'lib';
17  use Frey::PPI;  use Frey::PPI;
# Line 90  has _seat_number => ( Line 90  has _seat_number => (
90    
91  sub BUILD {  sub BUILD {
92          my $self = shift;          my $self = shift;
93          die "e-mail not verified\n" unless $self->email eq $self->email_verify;          my $email = $self->email;
94            die "e-mail not verified\n" unless $email eq $self->email_verify;
95          my $sth = $self->dbh->prepare(qq{          my $sth = $self->dbh->prepare(qq{
96                  select count(*) from reservation where email = ?                  select count(*) from reservation where email = ?
97          });          });
98          $sth->execute( $self->email );          $sth->execute( $email );
99          my ($registred) = $sth->fetchrow_array;          my ($registred) = $sth->fetchrow_array;
100          die "e-mail address ", $self->email, " allready registred\n" if $registred;          if ( $registred ) {
101                    die qq|
102                            <big>e-mail address $email allready registred</big>
103                    | . $self->seat_confirmation_message( email => $email )
104                    ;
105            }
106  }  }
107    
108  my @cols = Frey::PPI->new( class => __PACKAGE__ )->attribute_order;  my @cols = Frey::PPI->new( class => __PACKAGE__ )->attribute_order;
109  warn "# cols = ",join(',', @cols), $/;  warn "# cols = ",join(',', @cols), $/;
110    
 sub token {  
         my $self = shift;  
         my $sth = $self->dbh->prepare(qq{  
                 select md5( id || email ) from reservation where email = ?  
         });  
         $sth->execute( $self->email );  
         $sth->fetchrow_array;  
 }  
   
111  sub create_as_markup {  sub create_as_markup {
112          my ($self) = @_;          my ($self) = @_;
113    
# Line 137  sub create_as_markup { Line 134  sub create_as_markup {
134          my $sth = $self->dbh->prepare( $sql );          my $sth = $self->dbh->prepare( $sql );
135          $sth->execute( @vals );          $sth->execute( @vals );
136    
137          my $url = $self->url_for( 'Confirmation/verify_as_markup?token=' . $self->token );          return $self->send_confirmation_message( email => $self->email );
138    
         $self->send( $self->email,  
                 'Confirm your reservation for lecture', <<__EMAIL__  
 Please click following link to confirm your reservation for lecture  
 and get seat assigned to you.  
   
 $url  
 __EMAIL__  
         );  
   
         return  
                 $self->ime . ' ' . $self->prezime  
                 . qq| we have accepted your registration!|  
                 . qq|  
                         <div style="color:red">  
                         You have to confirm your e-mail address and registration  
                         by clicking on link which should be in your e-mail INBOX shortly  
                         </div>  
                 |  
                 ;  
139  }  }
140    
141  __PACKAGE__->meta->make_immutable;  __PACKAGE__->meta->make_immutable;

Legend:
Removed from v.1147  
changed lines
  Added in v.1152

  ViewVC Help
Powered by ViewVC 1.1.26