/[transports]/trunk/lib/Transports/Model/User.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

Annotation of /trunk/lib/Transports/Model/User.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (hide annotations)
Fri May 26 21:21:25 2006 UTC (18 years ago) by dpavlin
File size: 2047 byte(s)
added admin column to users, better bootstrap data
1 dpavlin 1 use strict;
2     use warnings;
3    
4     package Transports::Model::User::Schema;
5     use Jifty::DBI::Schema;
6    
7     # Your column definitions go here. See L<Jifty::DBI::Schema> for
8     # documentation about how to write column definitions.
9    
10     column name =>
11     type is 'text',
12     label is 'Name',
13     is mandatory,
14     is distinct;
15    
16     column email =>
17     type is 'text',
18     label is 'Email address',
19     is mandatory,
20     is distinct;
21    
22 dpavlin 27 column password =>
23 dpavlin 1 type is 'text',
24     label is 'Password',
25 dpavlin 3 is mandatory,
26 dpavlin 1 render_as 'password';
27    
28 dpavlin 27 column admin =>
29     type is 'boolean',
30     label is 'Administrator',
31     is mandatory,
32     default is 'false',
33     since '0.0.8';
34    
35 dpavlin 1 package Transports::Model::User;
36     use base qw/Transports::Record/;
37    
38     # Your model-specific methods go here.
39    
40 dpavlin 15 =head2 password_is STRING
41    
42     Returns true if and only if the current user's password matches STRING
43    
44     =cut
45    
46    
47     sub password_is {
48     my $self = shift;
49     my $string = shift || return;
50     warn "password_is ", $self->_value('password'), " == $string\n";
51     return 1 if ($self->_value('password') eq $string);
52     return 0;
53 dpavlin 5 }
54    
55 dpavlin 15 =head2 password
56    
57     Never display a password
58    
59     =cut
60    
61 dpavlin 17 sub password {
62     return '*****';
63     }
64 dpavlin 15
65 dpavlin 17 =head2 current_user_can
66    
67     Allows the current user to see all their own attributes and
68     everyone else to see their username.
69    
70     Allows the current user to update any of their own attributes
71     except whether or not their email has been confirmed.
72    
73     Passes everything else off to the superclass.
74    
75     =cut
76    
77    
78     sub current_user_can {
79     my $self = shift;
80     my $right = shift;
81 dpavlin 27
82     warn 'no $self->id' unless ($self->id);
83    
84 dpavlin 17 my %args = (@_);
85     #Carp::confess if ($right eq 'read' and not $args{'column'});
86     if ( $right eq 'read'
87     and $self->id == $self->current_user->id )
88     {
89     return 1;
90     } elsif ( $right eq 'read' and $args{'column'} eq 'name' ) {
91     return (1);
92    
93     } elsif ( $right eq 'update'
94     and $self->id == $self->current_user->id
95     and $args{'column'} ne 'email_confirmed' )
96     {
97     return (1);
98     }
99    
100     return $self->SUPER::current_user_can( $right, %args );
101     }
102    
103 dpavlin 1 1;
104    

  ViewVC Help
Powered by ViewVC 1.1.26