import rt 3.8.7
[freeside.git] / rt / lib / RT / Interface / Email / Auth / MailFrom.pm
1 # BEGIN BPS TAGGED BLOCK {{{
2
3 # COPYRIGHT:
4
5 # This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
6 #                                          <jesse@bestpractical.com>
7
8 # (Except where explicitly superseded by other copyright notices)
9
10
11 # LICENSE:
12
13 # This work is made available to you under the terms of Version 2 of
14 # the GNU General Public License. A copy of that license should have
15 # been provided with this software, but in any event can be snarfed
16 # from www.gnu.org.
17
18 # This work is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 # General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 # 02110-1301 or visit their web page on the internet at
27 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28
29
30 # CONTRIBUTION SUBMISSION POLICY:
31
32 # (The following paragraph is not intended to limit the rights granted
33 # to you to modify and distribute this software under the terms of
34 # the GNU General Public License and is only of importance to you if
35 # you choose to contribute your changes and enhancements to the
36 # community by submitting them to Best Practical Solutions, LLC.)
37
38 # By intentionally submitting any modifications, corrections or
39 # derivatives to this work, or any other work intended for use with
40 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 # you are the copyright holder for those contributions and you grant
42 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 # royalty-free, perpetual, license to use, copy, create derivative
44 # works based on those contributions, and sublicense and distribute
45 # those contributions and any derivatives thereof.
46
47 # END BPS TAGGED BLOCK }}}
48
49 package RT::Interface::Email::Auth::MailFrom;
50 use RT::Interface::Email qw(ParseSenderAddressFromHead CreateUser);
51
52 # This is what the ordinary, non-enhanced gateway does at the moment.
53
54 sub GetCurrentUser {
55     my %args = ( Message     => undef,
56                  CurrentUser => undef,
57                  AuthLevel   => undef,
58                  Ticket      => undef,
59                  Queue       => undef,
60                  Action      => undef,
61                  @_ );
62
63
64     # We don't need to do any external lookups
65     my ( $Address, $Name ) = ParseSenderAddressFromHead( $args{'Message'}->head );
66     unless ( $Address ) {
67         $RT::Logger->error("Couldn't find sender's address");
68         return ( $args{'CurrentUser'}, -1 );
69     }
70
71     my $CurrentUser = new RT::CurrentUser;
72     $CurrentUser->LoadByEmail( $Address );
73     $CurrentUser->LoadByName( $Address ) unless $CurrentUser->Id;
74     if ( $CurrentUser->Id ) {
75         $RT::Logger->debug("Mail from user #". $CurrentUser->Id ." ($Address)" );
76         return ( $CurrentUser, 1 );
77     }
78
79     # If the user can't be loaded, we may need to create one. Figure out the acl situation.
80     my $unpriv = RT::Group->new( $RT::SystemUser );
81     $unpriv->LoadSystemInternalGroup('Unprivileged');
82     unless ( $unpriv->Id ) {
83         $RT::Logger->crit("Couldn't find the 'Unprivileged' internal group");
84         return ( $args{'CurrentUser'}, -1 );
85     }
86
87     my $everyone = RT::Group->new( $RT::SystemUser );
88     $everyone->LoadSystemInternalGroup('Everyone');
89     unless ( $everyone->Id ) {
90         $RT::Logger->crit("Couldn't find the 'Everyone' internal group");
91         return ( $args{'CurrentUser'}, -1 );
92     }
93
94     $RT::Logger->debug("Going to create user with address '$Address'" );
95
96     # but before we do that, we need to make sure that the created user would have the right
97     # to do what we're doing.
98     if ( $args{'Ticket'} && $args{'Ticket'}->Id ) {
99         my $qname = $args{'Queue'}->Name;
100         # We have a ticket. that means we're commenting or corresponding
101         if ( $args{'Action'} =~ /^comment$/i ) {
102
103             # check to see whether "Everyone" or "Unprivileged users" can comment on tickets
104             unless ( $everyone->PrincipalObj->HasRight( Object => $args{'Queue'},
105                                                         Right => 'CommentOnTicket' )
106                      || $unpriv->PrincipalObj->HasRight( Object => $args{'Queue'},
107                                                          Right => 'CommentOnTicket' ) )
108             {
109                 $RT::Logger->debug("Unprivileged users have no right to comment on ticket in queue '$qname'");
110                 return ( $args{'CurrentUser'}, 0 );
111             }
112         }
113         elsif ( $args{'Action'} =~ /^correspond$/i ) {
114
115             # check to see whether "Everybody" or "Unprivileged users" can correspond on tickets
116             unless ( $everyone->PrincipalObj->HasRight( Object => $args{'Queue'},
117                                                         Right  => 'ReplyToTicket' )
118                      || $unpriv->PrincipalObj->HasRight( Object => $args{'Queue'},
119                                                          Right  => 'ReplyToTicket' ) )
120             {
121                 $RT::Logger->debug("Unprivileged users have no right to reply to ticket in queue '$qname'");
122                 return ( $args{'CurrentUser'}, 0 );
123             }
124         }
125         elsif ( $args{'Action'} =~ /^take$/i ) {
126
127             # check to see whether "Everybody" or "Unprivileged users" can correspond on tickets
128             unless ( $everyone->PrincipalObj->HasRight( Object => $args{'Queue'},
129                                                         Right  => 'OwnTicket' )
130                      || $unpriv->PrincipalObj->HasRight( Object => $args{'Queue'},
131                                                          Right  => 'OwnTicket' ) )
132             {
133                 $RT::Logger->debug("Unprivileged users have no right to own ticket in queue '$qname'");
134                 return ( $args{'CurrentUser'}, 0 );
135             }
136
137         }
138         elsif ( $args{'Action'} =~ /^resolve$/i ) {
139
140             # check to see whether "Everybody" or "Unprivileged users" can correspond on tickets
141             unless ( $everyone->PrincipalObj->HasRight( Object => $args{'Queue'},
142                                                         Right  => 'ModifyTicket' )
143                      || $unpriv->PrincipalObj->HasRight( Object => $args{'Queue'},
144                                                          Right  => 'ModifyTicket' ) )
145             {
146                 $RT::Logger->debug("Unprivileged users have no right to resolve ticket in queue '$qname'");
147                 return ( $args{'CurrentUser'}, 0 );
148             }
149
150         }
151         else {
152             $RT::Logger->warning("Action '". ($args{'Action'}||'') ."' is unknown");
153             return ( $args{'CurrentUser'}, 0 );
154         }
155     }
156
157     # We're creating a ticket
158     elsif ( $args{'Queue'} && $args{'Queue'}->Id ) {
159         my $qname = $args{'Queue'}->Name;
160
161         # check to see whether "Everybody" or "Unprivileged users" can create tickets in this queue
162         unless ( $everyone->PrincipalObj->HasRight( Object => $args{'Queue'},
163                                                     Right  => 'CreateTicket' )
164                  || $unpriv->PrincipalObj->HasRight( Object => $args{'Queue'},
165                                                      Right  => 'CreateTicket' ) )
166         {
167             $RT::Logger->debug("Unprivileged users have no right to create ticket in queue '$qname'");
168             return ( $args{'CurrentUser'}, 0 );
169         }
170     }
171
172     $CurrentUser = CreateUser( undef, $Address, $Name, $Address, $args{'Message'} );
173
174     return ( $CurrentUser, 1 );
175 }
176
177 eval "require RT::Interface::Email::Auth::MailFrom_Vendor";
178 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Interface/Email/Auth/MailFrom_Vendor.pm});
179 eval "require RT::Interface::Email::Auth::MailFrom_Local";
180 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Interface/Email/Auth/MailFrom_Local.pm});
181
182 1;