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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
package JWebmail::Controller::Webmail;
use Mojo::Base Mojolicious::Controller;
use List::Util 'first';
use Mojolicious::Types;
use constant {
S_USER => 'user', # Key for user name in active session
ST_AUTH => 'auth',
};
# no action has been taken, display login page
sub noaction {
my $self = shift;
my $user = $self->session(S_USER);
if ($user) {
$self->res->code(307);
$self->redirect_to('home');
return;
}
$self->render(action => 'login');
}
# middleware
sub auth {
my $self = shift;
my $user = $self->session(S_USER);
my $pw = $self->session_passwd;
unless ($user && $pw) {
$self->flash(message => $self->l('no_session'));
$self->res->code(401);
$self->redirect_to('logout');
return 0;
}
my $authConf = {user => $user, password => $pw};
$authConf->{challenge} = $self->app->secrets->[0] if $self->config->{session}{secure} eq 'cram';
$self->stash(ST_AUTH() => $self->users->Auth($authConf));
return 1;
}
sub _time :prototype(&$$) {
my $code = shift;
my $self = shift;
my $name = shift;
$self->timing->begin($name);
my @res = $code->();
my $elapsed = $self->timing->elapsed($name);
$self->app->log->debug(sprintf("%s took %fs", $name, $elapsed));
return wantarray ? @res : $res[-1];
}
sub login {
my $self = shift;
my $v = $self->validation;
my $user = $v->required('userid')->size(4, 50)->param;
my $passwd = $v->required('password')->size(4, 50)->like(qr/^.+$/)->param; # no new-lines
if ($v->has_error) {
$self->render(status => 400);
return;
}
my $auth = $self->users->Auth(user => $user, password => $passwd);
my $valid = _time { $self->users->verify_user($auth) } $self, 'verify user';
if ($valid) {
$self->session(S_USER() => $user);
$self->session_passwd($passwd);
$self->res->code(303);
$self->redirect_to('displayheaders');
}
else {
$self->render(
status => 401,
warning => $self->l('login') . ' ' . $self->l('failed') . '!',
);
}
}
sub logout {
my $self = shift;
delete $self->session->{S_USER()};
$self->session_passwd('');
# $self->session(expires => 1);
$self->res->code(303);
$self->redirect_to('login');
}
sub about {
my $self = shift;
$self->stash(
scriptadmin => $self->config->{defaults}{scriptadmin},
http_host => $self->tx->req->url->to_abs->host,
request_uri => $self->tx->req->url,
remote_addr => $self->tx->original_remote_address,
);
}
sub displayheaders {
no warnings 'experimental::smartmatch';
my $self = shift;
my $auth = $self->stash(ST_AUTH);
my $folders = _time { $self->users->folders($auth) } $self, 'user folders';
unless ( $self->stash('folder') ~~ $folders ) {
$self->render(template => 'error',
status => 404,
error => $self->l('no_folder'),
links => [map { $self->url_for(folder => $_) } @$folders],
);
return;
}
my $v = $self->validation;
my $sort = $v->optional('sort')->like(qr'^!?(?:date|subject|sender|size)$')->param // '!date';
my $search = $v->optional('search')->param;
if ($v->has_error) {
local $" = ' ';
$self->render(template => 'error', error => "errors in @{ $v->failed }", status => 400);
return;
}
my ($total_byte_size, $cnt, $new) = _time { $self->users->count($auth, $self->stash('folder')) } $self, 'user count';
my ($start, $end) = $self->paginate($cnt);
$self->timing->begin('user_headers');
my $headers = do {
if ($search) {
$self->users->search(
$auth, $search, $self->stash('folder'),
)
}
else {
$self->users->read_headers_for(
$auth,
folder => $self->stash('folder'),
start => $start,
end => $end,
sort => $sort,
)
}
};
my $elapsed = $self->timing->elapsed('user_headers');
$self->app->log->debug(sprintf("Reading user headers took %fs", $elapsed));
$self->stash(
msgs => $headers,
mail_folders => $folders,
total_size => $total_byte_size,
total_new_mails => $new,
);
}
sub readmail {
my $self = shift;
my $mid = $self->stash('id');
my $auth = $self->stash(ST_AUTH);
my $mail;
eval { $mail = $self->users->show($auth, $mid) };
if (my $err = $@) {
if ($err =~ m/unkown mail-id|no such message/) {
$self->reply->not_found;
return;
}
die $@;
}
# select a single body element
my $v = $self->validation;
my $type = $v->optional('body')->like(qr(^[\w\-/; ]+$)a)->param;
return if $v->has_error;
if ($type) {
if ($mail->{head}{content_type} =~ '^multipart/') {
my $content = first {$_->{head}{content_type} =~ $type} @{ $mail->{body} };
$self->render(text => $content->{body});
}
elsif ($mail->{head}{content_type} =~ $type) {
$self->render(text => $mail->{body}) ;
}
else {
$self->reply->not_found;
}
return;
}
$self->respond_to(
html => {msg => $mail},
json => {json => $mail}
);
}
sub writemail { }
sub sendmail {
my $self = shift;
my $v = $self->validation;
$v->csrf_protect;
my %mail = (
to => scalar $v->required('to', 'not_empty')->check('mail_line')->every_param,
message => scalar $v->required('body', 'not_empty')->param,
subject => scalar $v->required('subject', 'not_empty')->param,
cc => scalar $v->optional('cc', 'not_empty')->check('mail_line')->every_param,
bcc => scalar $v->optional('bcc', 'not_empty')->check('mail_line')->every_param,
reply => scalar $v->optional('back_to', 'not_empty')->check('mail_line')->param,
attach => scalar $v->optional('attach', 'non_empty_ul')->upload->param,
from => scalar $self->stash(ST_AUTH)->{user},
);
$mail{attach_type} = Mojolicious::Types->new->file_type($mail{attach}->filename) if $mail{attach};
if ($v->has_error) {
$self->log->debug("mail send failed. Error in @{ $v->failed }");
$self->render(action => 'writemail',
warning => $self->l('error_send'),
);
return;
}
my $error = $self->send_mail(\%mail);
if ($error) {
$v->error(send => ['internal_error']); # make validation fail so that values are restored
$self->render(action => 'writemail',
warning => $self->l('error_send'),
status => 400,
);
return;
}
$self->flash(message => $self->l('succ_send'));
$self->res->code(303);
$self->redirect_to('displayheaders');
}
sub move {
my $self = shift;
my $v = $self->validation;
$v->csrf_protect;
if ($v->has_error) {
return;
}
my $auth = $self->stash(ST_AUTH);
my $folders = $self->users->folders($auth);
my $mm = $self->every_param('mail');
my $folder = $self->param('folder');
no warnings 'experimental::smartmatch';
die "$folder not valid" unless $folder ~~ $folders;
$self->users->move($auth, $_, $folder) for @$mm;
$self->flash(message => $self->l('succ_move'));
$self->res->code(303);
$self->redirect_to('displayheaders');
}
1
__END__
=encoding utf-8
=head1 NAME
Webmail - All functions comprising the webmail application.
=head1 SYNOPSIS
my $r = $app->routes;
$r->get('/about')->to('Webmail#about');
$r->post('/login')->to('Webmail#login');
=head1 DESCRIPTION
The controller of JWebmail.
=head1 ROUTES
=head2 noaction
The login page. This should be the root.
=head2 auth
my $a = $r->under('/')->to('Webmail#auth');
An intermediate route that makes sure a user has a valid session.
=head2 login
Post route that checks login data.
=head2 logout
Route that clears session data.
=head2 about
Public route.
=head2 displayheaders
Provides an overview over messages.
=head2 readmail
Displays a single mail.
Can also be displayed as JSON or only one body part as the appropriate content type.
=head2 writemail
A mail editor.
=head2 sendmail
Sends a mail written in writemail.
=head2 move
Moves mails between mail forlders.
=head1 DEPENCIES
Mojolicious and File::Type
=cut
|