aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Fripost/Panel/Interface.pm
blob: 7f7d770c72cd3c197481a5a18b853a4eb87e3f7e (plain)
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
package Fripost::Panel::Interface;

use 5.010_000;
use strict;
use warnings;
use utf8;

=head1 NAME

Interface.pm -

=cut

use parent 'Fripost::Panel::Login';

use Fripost::Schema;
use Fripost::Schema::Util 'split_addr';
use Fripost::Password;
use HTML::Entities 'encode_entities';
use URI::Escape::XS 'encodeURIComponent';
use Net::IDN::Encode qw/email_to_unicode email_to_ascii domain_to_ascii/;
use Encode ();


# This method is called right before the 'setup' method below. It
# inherits the configuration from the super class.
sub cgiapp_init {
    my $self = shift;
    $self->SUPER::cgiapp_init;

    # Every single Run Mode here is protected
    $self->authen->protected_runmodes( ':all' );
}



# This is the first page seen by authenticated users. It lists the
# visible domains.
sub ListDomains : StartRunmode {
    my $self = shift;
    my %CFG = $self->cfg;

    my $fp = Fripost::Schema::->SASLauth( $self->authen->username, %CFG );
    my @domains = $fp->domain->search( undef, -sort => 1,
                    -keys => [qw/name isActive isPending description/]);
    my $canIAdd = $fp->domain->domain->canIAdd;
    $fp->done;

    my $template = $self->load_tmpl( 'list-domains.html', cache => 1
                                   , loop_context_vars => 1 );
    $template->param( $self->userInfo );
    $template->param( canIAddDomain => $canIAdd );
    $template->param( domains => [ map { { &fill_HTML_template_from_entry($_)
                                         , URL => &mkURL('.', $_->{name})
                                         , isPending => $_->{isPending} // 0
                                         } }
                                       @domains ] );
    return $template->output;
}



# Add a new (locked) domain.
sub AddDomain : Runmode {
    my $self = shift;
    my %CFG = $self->cfg;

    my $q = $self->query;
    return $self->redirect('./') if defined $q->param('cancel'); # Cancellation

    my $domainname = $q->param('name');
    Encode::_utf8_on($domainname) if defined $domainname;

    my $session_param;
    $session_param = 'AddDomain-owner-emails-'.domain_to_ascii($domainname)
        if defined $domainname;

    my $error; # Tells whether the change submission has failed.
    if (defined $q->param('submit')) {
        # Changes have been submitted: process them
        my $fp = Fripost::Schema::->SASLauth( $self->authen->username, %CFG );

        if (defined $q->param('owner') and defined $session_param) {
            # Ensure that the user didn't spoof the domain ownership.
            my @owners = split "\0", $self->session->param($session_param);
            $error = "‘".$q->param('owner')."’ was not listed among the domain owners."
                unless defined $self->session->param($session_param)
                           and grep { $q->param('owner') eq $_ } @owners;
        }

        $fp->domain->add( &parse_CGI_query ($q)
                        , '-send-confirmation-token' => $q->param('owner') // undef
                        , '-dry-run' => not (defined $q->param('owner'))
                        , -error => \$error
                        , webapp_url => $self->cfg('webapp_url')
                        , tmpl_path => $self->cfg('tmpl_path')
                        , email_from => $self->cfg('email_from')
        );
        $fp->done;
    }

    # Confirmation token sent, everything went fine.
    return $self->redirect('./') if !$error and defined $q->param('owner');

    my $tmpl_file;
    my @owners;

    if (!$error and defined $domainname) {
        $tmpl_file = 'add-domain-2.html';
        @owners = Fripost::Schema::Domain::->list_owner_emails
                           ( $domainname, -error => \$error );
        undef $tmpl_file if $error;
    }
    # Something went wrong, or the domain is unknown
    $tmpl_file //= 'add-domain-1.html';

    my $template = $self->load_tmpl( $tmpl_file, cache => 1,
                                   , loop_context_vars => 1 );
    $template->param( $self->userInfo );
    $template->param( error => encode_entities ($error) ) if $error;
    $template->param( &fill_HTML_template_from_query ($q) );

    if (@owners) {
        # Store the list we font, to ensure the user doesn't send back a
        # spoofed email.
        $self->session->param( $session_param, join("\0", @owners) );
        $self->session->flush;
        $template->param( owners => [ map {{owner => $_}} @owners ] )
    }

    return $template->output;
}



# On this page, authenticated users can edit the domain description and
# catch-alls, and toggle activation (if they have the permission).
sub EditDomain : Runmode {
    my $self = shift;
    my %CFG = $self->cfg;

    my $q = $self->query;
    return $self->redirect('./') if defined $q->param('cancel'); # Cancellation

    # Get the domain name from the URL.
    my $domainname = ($self->split_path)[1];
    my $fp = Fripost::Schema::->SASLauth( $self->authen->username, %CFG );

    my $error; # Tells whether the change submission has failed.
    if (defined $q->param('submit')) {
        # Changes have been submitted: process them
        $fp->domain->replace( &parse_CGI_query ($q, name => $domainname),
                              -error => \$error );
    }

    # We don't want allow edition of pending (locked) domains.
    my $domain = $fp->domain->search( $domainname, -filter => 'unlocked' )
                 // die "404\n";
    $fp->done;

    my $template = $self->load_tmpl( 'edit-domain.html', cache => 1,
                                   , loop_context_vars => 1 );
    $template->param( $self->userInfo );
    $template->param( isPostmaster => $domain->{permissions} =~ /p/ );
    if ($error) {
        # Preserve the (incorrect) form
        $template->param( &fill_HTML_template_from_query ($q)
                        , name => encode_entities($domainname)
                        , error => encode_entities ($error) );
    }
    else {
        # Fill the template with what we got from the database.
        $template->param( &fill_HTML_template_from_entry ($domain) );
    }
    $template->param( newChanges => defined $q->param('submit') );
    return $template->output;
}



# On this page, authenticated users can list the virtual users, aliases
# and lists under the current domain.
sub ListLocals : Runmode {
    my $self = shift;
    my %CFG = $self->cfg;

    my $q = $self->query;
    return $self->redirect('./') if defined $q->param('cancel'); # Cancellation

    # Get the domain name from the URL.
    my $domainname = ($self->split_path)[1];
    my $fp = Fripost::Schema::->SASLauth( $self->authen->username, %CFG );

    if (defined $q->param('unlock')) {
        # Unlock the domain, and come back to the home page.
        # Errors are thrown away.
        $fp->domain->unlock( $domainname, $q->param('unlock'), -error => undef )
            if $q->param('unlock') ne '';
        $fp->done;
        return $self->redirect('../');
    }

    # Query *the* matching domain, or 404.
    my $domain = $fp->domain->search( $domainname, -filter => 'unlocked' )
                 // die "404\n";

    # Query the users, aliases and lists under the given domain.
    my @locals = $fp->local->search ( $domainname, sort => 1);
    $fp->done;
    map { $_->{name} = (split_addr $_->{name})[0]; # Remove the domainpart
          $_->{URL} = &mkURL('.', $_->{name}) }    # Add a URL
        @locals;

    my @users   = grep { $_->{type} eq 'user' } @locals;
    my @aliases = grep { $_->{type} eq 'alias'} @locals;
    my @lists   = grep { $_->{type} eq 'list' } @locals;

    # Add a link to the list (external) homepage.
    map { $_->{list_URL} = $CFG{'listurl_'.$_->{transport}}.
                           email_to_ascii($_->{name}.'@'.$domainname) }
        @lists;

    my $template = $self->load_tmpl( 'list-locals.html', cache => 1,
                                   , loop_context_vars => 1 );

    $template->param( $self->userInfo );
    $template->param( &fill_HTML_template_from_entry ($domain,
                                -loop => ['catchAll'] )
                    , CAodd => not $#aliases % 2 );

    # Can the user edit the domain (change description, toggle
    # activation, modify catch-alls?)
    $template->param( canEditDomain => $domain->{permissions} =~ /[op]/ );

    # Can the user add users?
    $template->param( canAddUser => $domain->{permissions} =~ /p/ );
    # Should we list users?
    $template->param( listUsers => $#users >= 0 ||
                                   $domain->{permissions} =~ /p/ );
    $template->param( users => [
        map { {&fill_HTML_template_from_entry ($_, -loop => ['forward'])} }
            @users ]);

    # Can the user add aliases?
    $template->param( canAddalias => $domain->{permissions} =~ /[aop]/ );
    $template->param( listCanAddAlias => [ map { {item => encode_entities($_)} }
                                               @{$domain->{canAddAlias}} ] )
        if $domain->{permissions} =~ /[op]/;
    # Should we list aliases?
    $template->param( listAliases => $#aliases >= 0 ||
                                     $domain->{permissions} =~ /[aop]/ );
    $template->param( aliases => [
        map { {&fill_HTML_template_from_entry ($_, -loop => ['destination'])} }
            @aliases ]);

    # Can the user add lists?
    $template->param( canAddList => $domain->{permissions} =~ /[lop]/ );
    $template->param( listCanAddList => [ map { {item => encode_entities($_)} }
                                              @{$domain->{canAddList}} ] )
        if $domain->{permissions} =~ /[op]/;
    # Should we list lists?
    $template->param( listLists => $#lists >= 0 ||
                                   $domain->{permissions} =~ /[lop]/ );
    $template->param( lists => [
        map { { &fill_HTML_template_from_entry ($_, -loop => ['destination'] )
              , isPending => $_->{isPending}
              } }
            @lists ]);
    return $template->output;
}



# In this Run Mode authenticated users can add users, aliases and lists
# (if they have the permission).
sub AddLocal : Runmode {
    my $self = shift;
    my %CFG = $self->cfg;

    my $q = $self->query;
    return $self->redirect('./') if defined $q->param('cancel'); # Cancellation

    # Get the domain name from the URL.
    my $domainname = ($self->split_path)[1];
    my $t = $q->param('t') // return $self->redirect('./');
    return $self->redirect('./') unless grep { $t eq $_ } qw/user alias list/;
    my $fp = Fripost::Schema::->SASLauth( $self->authen->username, %CFG );

    my $error; # Tells whether the change submission has failed.
    if (defined $q->param('submit')) {
        # Changes have been submitted: process them
        my $local = &parse_CGI_query($q);
        $local->{type} = $q->param('t');
        $local->{name} = $q->param('name').'@'.$domainname;
        my %rest;

        if ($q->param('password') || $q->param('password2')) {
            if ($q->param('password') ne $q->param('password2')) {
                $error = "Passwords do not match";
            }
            # TODO: ! move that to Password.pm
            elsif (length $q->param('password') < $CFG{password_min_length}) {
                $error = "Password should be at least "
                        .$CFG{password_min_length}
                        ." characters long.";
            }
            else {
                $local->{password} = Fripost::Password::hash($q->param('password'));
            }
            # TODO: inherit the user quota from the postmaster's?
        }
        $local->{password} = $q->param('password') if $t eq 'list';

        $rest{gpg} = { use_agent => 0
                     , keydir => $CFG{gpghome}
                     , key => $CFG{gpg_private_key_id}
                     , passphrase => $CFG{gpg_private_key_passphrase}
                     };

        unless ($error) {
            my $fp = Fripost::Schema::->SASLauth( $self->authen->username, %CFG );
            $fp->domain->search ($domainname, -filter => 'unlocked', -count => 1)
                or die "404\n";
            $fp->local->add( $local, %rest, -error => \$error );
            $fp->done;
            return $self->redirect('./') unless $error;
        }
    }

    # Do not send passwords back to the sender.
    $q->delete(qw/password password2/);

    my $template = $self->load_tmpl( "add-$t.html", cache => 1 );
    $template->param( $self->userInfo
                    , domainname => encode_entities($domainname)
                    , &fill_HTML_template_from_query ($q));
    $template->param( transport =>
            [ { item => 'mailman', selected => $q->param('transport') eq 'mailman', name => 'GNU Mailman' }
            , { item => 'schleuder', selected => $q->param('transport') eq 'schleuder', name => 'Schleuder' }
            ]) # TODO ugly
        if $t eq 'list' and defined $q->param('transport');
    $template->param( error => encode_entities ($error) ) if $error;
    return $template->output;
}


# In this Run Mode authenticated users can edit the entry (if they have
# the permission).
sub EditLocal : Runmode {
    my $self = shift;
    my %CFG = $self->cfg;

    my $q = $self->query;
    return $self->redirect('./') if defined $q->param('cancel'); # Cancellation

    # Get the domain name from the URL.
    my ($localname,$domainname) = ($self->split_path)[2,1];
    my $name = $localname.'@'.$domainname;
    my $fp = Fripost::Schema::->SASLauth( $self->authen->username, %CFG );

    # Search for *the* matching user, alias or list.
    $fp->domain->search ($domainname, -filter => 'unlocked', -count => 1)
        or die "404\n";
    my $local = $fp->local->search ($name, -filter => 'unlocked')
        or die "404\n";

    my $error; # Tells whether the change submission has failed.
    if (defined $q->param('a') and $q->param('a') eq 'delete') {
        # Delete the entry
        $fp->local->delete($name, -error => \$error );
        unless ($error) {
            $fp->done;
            return $self->redirect('../');
        }
    }
    $fp->done;

    if (defined $q->param('submit')) {
        # Changes have been submitted: process them
        my $local = &parse_CGI_query($q);
        $local->{type} = $q->param('t');
        $local->{name} = $name;
        my %rest;

        if ($q->param('password') || $q->param('password2')) {
            if ($q->param('password') ne $q->param('password2')) {
                $error = "Passwords do not match";
            }
            # TODO: ! move that to Password.pm
            # TODO: change password
            elsif (length $q->param('password') < $CFG{password_min_length}) {
                $error = "Password should be at least "
                        .$CFG{password_min_length}
                        ." characters long.";
            }
            else {
                $local->{password} = Fripost::Password::hash($q->param('password'));
            }
        }
    }

    # Do not send passwords back to the sender.
    $q->delete(qw/password password2/);

    my $t = $local->{type};
    my $template = $self->load_tmpl( "edit-$t.html", cache => 1 );
    $template->param( $self->userInfo
                    , localpart => encode_entities($localname)
                    , domainpart => encode_entities($domainname) );

    if ($error) {
        # Preserve the (incorrect) form, except the passwords
        $template->param( &fill_HTML_template_from_query ($q) );
    }
    else {
        $template->param( &fill_HTML_template_from_entry ($local,
                -hide => [qw/quota transport/]) );
    }
    # TODO: submit
    my $news = (defined $q->param('submit') or
               (defined $q->param('a') and $q->param('a') eq 'delete'));
    $template->param( newChanges => $news );
    $template->param( error => encode_entities ($error) ) if $error;
    $template->param( canDelete => 1 ) if $t eq 'alias';
    $template->param( list_URL => $CFG{'listurl_'.$local->{transport}}.
                                  email_to_ascii($name) )
        if $t eq 'list';

    $q->delete('a');
    return $template->output;
}




sub mkURL {
    my $host = shift;
    my @path = map { encodeURIComponent($_) } @_;
    join '/', ($host, @path);
}

sub userInfo {
    my $self = shift;
    my ($l,$d) = split_addr( $self->authen->username, -encode => 'unicode' );
    my $root = $ENV{SCRIPT_NAME} // $self->cfg->{'cgi-bin'} // '';
    $root =~ s@/$@@s;

    ( user_localpart  => encode_entities($l)
    , user_domainpart => encode_entities($d)
    , user_URL        => &mkURL ($root, $d, $l)
    )
}


my @single_valued_keys = qw/isActive quota/;
my @multi_valued_keys  = qw/description catchAll
                            canAddAlias canAddList
                            forward destination/;

sub fill_HTML_template_from_entry {
    my $entry = shift;
    my %options = @_;
    my %vars;

    foreach my $key (keys %$entry) {
        next if $options{'-hide'} and
                grep { $key eq $_ } @{$options{'-hide'}};

        if ($key eq 'name') {
            $vars{$key} = encode_entities($entry->{$key});
        }
        elsif (grep {$key eq $_} (qw/URL list_URL transport/,
                                  @single_valued_keys)) {
            $vars{$key} = $entry->{$key};
        }
        elsif (grep {$key eq $_} @multi_valued_keys) {
            my @array = map { encode_entities ($_) } @{$entry->{$key}};
            if ($options{'-loop'} and
                grep { $key eq $_ } @{$options{'-loop'}}) {
                $vars{$key} = [ map {{item => $_}} @array ];
            }
            else {
                $vars{$key} = join "\x{0D}\x{0A}", @array;
            }
        }
    }
    return %vars;
}

sub fill_HTML_template_from_query {
    my %params = shift->Vars;
    my %rest = @_;
    my %vars;

    $params{$_} = encode_entities ($rest{$_}) for keys %rest;
    foreach my $key (keys %params) {
        $vars{$key} = $params{$key} // undef
            if grep { $key eq $_ } ('name', @single_valued_keys, @multi_valued_keys);
    }
    $vars{isActive} //= 1;
    return %vars;
}

sub parse_CGI_query {
    my %params = shift->Vars;
    my %rest = @_;
    my $entry;

    $params{$_} = $rest{$_} for keys %rest;
    foreach my $key (keys %params) {
        Encode::_utf8_on($params{$key}) if defined $params{$key};
        if ($key eq 'name') {
            $entry->{$key} = $params{$key};
        }
        elsif (grep {$key eq $_} @single_valued_keys) {
            $entry->{$key} = $params{$key};
        }
        elsif (grep {$key eq $_} @multi_valued_keys) {
            $entry->{$key} = $params{$key} ?
                                 [ split "\x{0D}\x{0A}", $params{$key} ] :
                                 [];
            $entry->{$key} = [ grep {$_} @{$entry->{$key}} ];
        }
    }
    $entry->{isActive} //= 1;
    return $entry;
}

=head1 AUTHOR

Guilhem Moulin C<< <guilhem at fripost.org> >>

=head1 COPYRIGHT

Copyright 2012,2013 Guilhem Moulin.

=head1 LICENSE

This program is free software; you can redistribute it and/or modify it
under the same terms as perl itself.

=cut

1;

__END__