1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
use utf8;
package FixMyStreet::DB::Result::User;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->load_components("FilterColumn", "InflateColumn::DateTime", "EncodedColumn");
__PACKAGE__->table("users");
__PACKAGE__->add_columns(
"id",
{
data_type => "integer",
is_auto_increment => 1,
is_nullable => 0,
sequence => "users_id_seq",
},
"email",
{ data_type => "text", is_nullable => 0 },
"name",
{ data_type => "text", is_nullable => 1 },
"phone",
{ data_type => "text", is_nullable => 1 },
"password",
{ data_type => "text", default_value => "", is_nullable => 0 },
"from_body",
{ data_type => "integer", is_nullable => 1 },
"flagged",
{ data_type => "boolean", default_value => \"false", is_nullable => 0 },
"title",
{ data_type => "text", is_nullable => 1 },
);
__PACKAGE__->set_primary_key("id");
__PACKAGE__->add_unique_constraint("users_email_key", ["email"]);
__PACKAGE__->has_many(
"alerts",
"FixMyStreet::DB::Result::Alert",
{ "foreign.user_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->has_many(
"bodies",
"FixMyStreet::DB::Result::Body",
{ "foreign.comment_user_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->has_many(
"comments",
"FixMyStreet::DB::Result::Comment",
{ "foreign.user_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->has_many(
"problems",
"FixMyStreet::DB::Result::Problem",
{ "foreign.user_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07017 @ 2012-12-12 13:06:09
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L6gtjOQeVkebGUIHJcHuUA
__PACKAGE__->add_columns(
"password" => {
encode_column => 1,
encode_class => 'Crypt::Eksblowfish::Bcrypt',
encode_args => { cost => 8 },
encode_check_method => 'check_password',
},
);
use mySociety::EmailUtil;
=head2 check_for_errors
$error_hashref = $problem->check_for_errors();
Look at all the fields and return a hashref with all errors found, keyed on the
field name. This is intended to be passed back to the form to display the
errors.
TODO - ideally we'd pass back error codes which would be humanised in the
templates (eg: 'missing','email_not_valid', etc).
=cut
sub check_for_errors {
my $self = shift;
my %errors = ();
if ( !$self->name || $self->name !~ m/\S/ ) {
$errors{name} = _('Please enter your name');
}
if ( $self->email !~ /\S/ ) {
$errors{email} = _('Please enter your email');
}
elsif ( !mySociety::EmailUtil::is_valid_email( $self->email ) ) {
$errors{email} = _('Please enter a valid email');
}
return \%errors;
}
=head2 answered_ever_reported
Check if the user has ever answered a questionnaire.
=cut
sub answered_ever_reported {
my $self = shift;
my $has_answered =
$self->result_source->schema->resultset('Questionnaire')->search(
{
ever_reported => { not => undef },
problem_id => { -in =>
$self->problems->get_column('id')->as_query },
}
);
return $has_answered->count > 0;
}
=head2 alert_for_problem
Returns whether the user is already subscribed to an
alert for the problem ID provided.
=cut
sub alert_for_problem {
my ( $self, $id ) = @_;
return $self->alerts->find( {
alert_type => 'new_updates',
parameter => $id,
} );
}
sub body {
my $self = shift;
return '' unless $self->from_body;
my $key = 'body_name:' . $self->from_body;
my $result = Memcached::get($key);
### TODO: Add a 'name' column to body which is used instead of calling mapit
unless ($result) {
my $area_info = mySociety::MaPit::call('area', $self->from_body);
$result = $area_info->{name};
Memcached::set($key, $result, 86400);
}
return $result;
}
=head2 belongs_to_body
$belongs_to_body = $user->belongs_to_body( $bodies );
Returns true if the user belongs to the comma seperated list of body ids passed in
=cut
sub belongs_to_body {
my $self = shift;
my $bodies = shift;
my %bodies = map { $_ => 1 } split ',', $bodies;
return 1 if $self->from_body && $bodies{ $self->from_body };
return 0;
}
=head2 split_name
$name = $user->split_name;
printf( 'Welcome %s %s', $name->{first}, $name->{last} );
Returns a hashref with first and last keys with first name(s) and last name.
NB: the spliting algorithm is extremely basic.
=cut
sub split_name {
my $self = shift;
my ($first, $last) = $self->name =~ /^(\S*)(?: (.*))?$/;
return { first => $first || '', last => $last || '' };
}
1;
|