summaryrefslogtreecommitdiff
path: root/rt/lib/RT/Watcher.pm
blob: c7c6100cfe324f733675c5a7e4c5b0ae64c016ef (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
# $Header: /home/cvs/cvsroot/freeside/rt/lib/RT/Attic/Watcher.pm,v 1.1 2002-08-12 06:17:07 ivan Exp $
# (c) 1996-2001 Jesse Vincent <jesse@fsck.com>
# This software is redistributable under the terms of the GNU GPL

=head1 NAME

  RT::Watcher - RT Watcher object

=head1 SYNOPSIS

  use RT::Watcher;


=head1 DESCRIPTION

This module should never be called directly by client code. it\'s an internal module which
should only be accessed through exported APIs in Ticket, Queue and other similar objects.

=head1 METHODS

=begin testing

ok(require RT::TestHarness);
ok(require RT::Watcher);

=end testing

=cut

package RT::Watcher;
use RT::Record;
@ISA= qw(RT::Record);


# {{{ sub _Init 

sub _Init {
  my $self = shift;
  
  $self->{'table'} = "Watchers";
  return ($self->SUPER::_Init(@_));

}
# }}}

# {{{ sub Create 

=head2 Create PARAMHASH

Create a new watcher object with the following Attributes:

Scope:  Ticket or Queue
Value: Ticket or queue id
Type: Requestor, Cc or AdminCc.  Requestor is not supported for a scope of \'Queue\'
Email: The email address of the watcher.  If the email address maps to an RT User, this is resolved
to an Owner object instead.
Owner: The RT user id of the \'owner\' of this watcher object. 

=cut

sub Create  {
    my $self = shift;
    my %args = (
		Owner => undef,
		Email => undef,
		Value => undef,
		Scope => undef,
		Type => undef,
		Quiet => 0,
		@_ # get the real argumentlist
	       );
    
    #Do we have someone this applies to?
    unless (($args{'Owner'} =~ /^(\d+)$/) || ($args{'Email'} =~ /\@/)) {
	return (0, "No user or email address specified");
    }
    
    #if we only have an email address, try to resolve it to an owner
    if ($args{'Owner'} == 0) {
        my $User = new RT::User($RT::SystemUser);
        $User->LoadByEmail($args{'Email'});
        if ($User->id) {
            $args{'Owner'} = $User->id;
   	    delete $args{'Email'};
	}
    }
    
    
    if ($args{'Type'} eq "Requestor" and $args{'Owner'} == 0) {
	# Requestors *MUST* have an account
	
	my $Address = RT::CanonicalizeAddress($args{'Email'});
	
	my $NewUser = RT::User->new($RT::SystemUser);
	my ($Val, $Message) =
	  $NewUser->Create(Name => $Address,
			   EmailAddress => $Address,
			   RealName => $Address,
			   Password => undef,
			   Privileged => 0,
			   Comments => 'Autocreated on ticket submission'
			  );
	return (0, "Could not create watcher for requestor")
	  unless $Val;
	if ($NewUser->id) {
	    $args{'Owner'} = $NewUser->id;
	    delete $args{'Email'};
	}
    }
    
    
    
    
    #Make sure we\'ve got a valid type
    #TODO --- move this to ValidateType 
    return (0, "Invalid Type")
      unless ($args{'Type'} =~ /^(Requestor|Cc|AdminCc)$/i);

    my $id = $self->SUPER::Create(%args);
    if ($id) {
	return (1,"Interest noted");
    }
    else {
	return (0, "Error adding watcher");
    }
}
# }}}

# {{{ sub Load 

=head2 Load ID
  
  Loads a watcher by the primary key of the watchers table ($Watcher->id)
  
=cut

sub Load  {
    my $self = shift;
    my $identifier = shift;
    
    if ($identifier !~ /\D/) {
	$self->SUPER::LoadById($identifier);
    }
    else {
	return (0, "That's not a numerical id");
    }
}

# }}}

# {{{ sub LoadByValue

=head2 LoadByValue PARAMHASH
  
LoadByValue takes a parameter hash with the following attributes:

  Email, Owner, Scope, Type, Value

The same rules enforced at create are enforced by Load.

Returns a tuple of (retval, msg). Retval is 1 on success and 0 on failure.
msg describes what happened in a human readable form.

=cut

sub LoadByValue {
    my $self = shift;
    my %args = ( Email => undef, 
		 Owner => undef,
		 Scope => undef,
		 Type => undef,
		 Value => undef,
		 @_);
    
    #TODO: all this code is being copied from Create. that\'s silly
    
    #Do we have someone this applies to?
    unless (($args{'Owner'} =~ /^(\d*)$/) || ($args{'Email'} =~ /\@/)) {
	return (0, "No user or email address specified");
    }
    
    #if we only have an email address, try to resolve it to an owner
    unless ($args{'Owner'}) {
        my $User = new RT::User($RT::SystemUser);
        $User->LoadByEmail($args{'Email'});
        if ($User->id > 0) {
            $args{'Owner'} = $User->id;
   	    delete $args{'Email'};
	}
    }
    
    if ((defined ($args{'Type'})) and 
	($args{'Type'} !~ /^(Requestor|Cc|AdminCc)$/i)) {
	return (0, "Invalid Type");
    }
    if ($args{'Owner'}) {
	$self->LoadByCols( Type => $args{'Type'},
			   Value => $args{'Value'},
			   Owner => $args{'Owner'},
			   Scope => $args{'Scope'},
			 );
    }
    else {
	$self->LoadByCols( Type => $args{'Type'},
			   Email => $args{'Email'},
			   Value => $args{'Value'},
			   Scope => $args{'Scope'},
			 );
    }	
    unless ($self->Id) {
	return(0, "Couldn\'t find that watcher");
    }
    return (1, "Watcher loaded");
}

# }}}

# {{{ sub OwnerObj 

=head2 OwnerObj

Return an RT Owner Object for this Watcher, if we have one

=cut

sub OwnerObj  {
    my $self = shift;
    if (!defined $self->{'OwnerObj'}) {
	require RT::User;
	$self->{'OwnerObj'} = RT::User->new($self->CurrentUser);
	if ($self->Owner) {
	    $self->{'OwnerObj'}->Load($self->Owner);
	} else {
	    return $RT::Nobody->UserObj;
	}
    }
    return ($self->{'OwnerObj'});
}
# }}}

# {{{ sub Email

=head2 Email

This custom data accessor does the right thing and returns
the 'Email' attribute of this Watcher object. If that's undefined,
it returns the 'EmailAddress' attribute of its 'Owner' object, which is
an RT::User object.

=cut

sub Email {
    my $self = shift;
    
    # IF Email is defined, return that. Otherwise, return the Owner's email address
    if (defined($self->__Value('Email'))) {
	return ($self->__Value('Email'));
    }
    elsif ($self->Owner) {
	return ($self->OwnerObj->EmailAddress);
    }
    else {
	return ("Data error");
    }
}
# }}}
  
# {{{ sub IsUser

=head2 IsUser

Returns true if this watcher object is tied to a user object. (IE it
isn't sending to some other email address).
Otherwise, returns undef

=cut

sub IsUser {
    my $self = shift;
    # if this watcher has an email address glued onto it,
    # return undef

    if (defined($self->__Value('Email'))) {
        return undef;
    }
    else {
        return 1;
    }
}

# }}}

# {{{ sub _Accessible 
sub _Accessible  {
  my $self = shift;
  my %Cols = (
	      Email => 'read/write',
	      Scope => 'read/write',
	      Value => 'read/write',
	      Type => 'read/write',
	      Quiet => 'read/write',
	      Owner => 'read/write',	      
	      Creator => 'read/auto',
	      Created => 'read/auto',
	      LastUpdatedBy => 'read/auto',
	      LastUpdated => 'read/auto'
	     );
  return($self->SUPER::_Accessible(@_, %Cols));
}
# }}}

1;