aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Fripost/Schema/Type/User.pm
blob: a9eb29310baacea0374b2ba095571b14f765989b (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
package Fripost::Schema::Type::User;

use 5.010_000;
use warnings;
use strict;

use base qw/Net::LDAP/;
use Fripost::Schema::Utils;
use Fripost::Schema::Type::Domain;

our $VERSION = '0.01';


#######################################################################

# Search a user, and return the corresponding entries if found. If no
# user is given, returns all users.
# If the user has no domain part, returns matching users for any
# domains. Otherwise, we first search for matching domains (we may
# have multiple matches as wildcards are allowed), and then for each of
# them, search for the matching users.
sub search {
    my $self = shift;
    my $user = shift;

    my ($username, $domain);
    ($username, $domain) = split /\@/, $user->{username}, 2
        if defined $user->{username};

    my $base  = $self->{_options}->{base_dn};
    my @bases;
    if (defined $domain) {
        my $dres = Fripost::Schema::Type::Domain::search ( $self, {domain => $domain} );
        foreach ($dres->entries) {
            push @bases, join ',', ( 'dc='.$_->get_value('dc'), $base );
        }
    }
    else {
        push @bases, $base;
    }

    my $filter = "(ObjectClass=virtualMailbox)";
    $filter = "(&" .$filter. "(uid=" .$username. ")" .")"
        if defined $username;

    my @res;
    foreach my $b (@bases) {
        if ($self->{_options}->{debug}) {
            say STDERR "DEBUG: Search base: " .$b;
            say STDERR "DEBUG: Search filter: " .$filter;
        }
    
        my $res = $self->{_ldap}->search(
                    base   => $b,
                    scope  => 'sub',
                    attrs  => [ 'uid', 'gn' , 'sn', 'isActive' ],
                    filter => $filter
               );
        die "Error: " .$res->error. "\n" if $res->code;
        push @res, $res;
    }
    return \@res;
}


# Add the given user
sub add {
    my $self = shift;
    my $user = shift;

    my $base = Fripost::Schema::Utils::mkDN ( $self->{_options}
                                            , $user->{username} );
    if ($self->{_options}->{debug}) {
        say STDERR "DEBUG: Add base: " .$base;
    }

    my $res = $self->{_ldap}->add( $base,
                attrs => [ objectClass  => 'virtualMailbox',
                           userPassword => $user->{userPassword},
                           isActive     => $user->{isActive}
                         ]
              );
    die "Error: " .$res->error. "\n" if $res->code;
    return $res;
}


# Change password
sub passwd {
    my $self = shift;
    my $user = shift;

    my $base = Fripost::Schema::Utils::mkDN ( $self->{_options}
                                            , $user->{username} );
    if ($self->{_options}->{debug}) {
        say STDERR "DEBUG: Modify base: " .$base;
    }

    my $res = $self->{_ldap}->modify( $base,
                  replace => [ userPassword => $user->{userPassword} ]
              );
    die "Error: " .$res->error. "\n" if $res->code;
    return $res;
}


#######################################################################

1;

=head1 NAME

Fripost::Schema::Type::User -

=head1 AUTHOR

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

=head1 COPYRIGHT

Copyright 2012 Guilhem Moulin, all rights reserved.

=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 of User.pm

__END__