summaryrefslogtreecommitdiff
path: root/FS/FS/svc_forward.pm
blob: 044e41da9cb27e0903b009989680cf9469615c2c (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
package FS::svc_forward;

use strict;
use vars qw( @ISA );
use FS::Conf;
use FS::Record qw( fields qsearch qsearchs dbh );
use FS::svc_Common;
use FS::cust_svc;
use FS::svc_acct;
use FS::svc_domain;

@ISA = qw( FS::svc_Common );

=head1 NAME

FS::svc_forward - Object methods for svc_forward records

=head1 SYNOPSIS

  use FS::svc_forward;

  $record = new FS::svc_forward \%hash;
  $record = new FS::svc_forward { 'column' => 'value' };

  $error = $record->insert;

  $error = $new_record->replace($old_record);

  $error = $record->delete;

  $error = $record->check;

  $error = $record->suspend;

  $error = $record->unsuspend;

  $error = $record->cancel;

=head1 DESCRIPTION

An FS::svc_forward object represents a mail forwarding alias.  FS::svc_forward
inherits from FS::Record.  The following fields are currently supported:

=over 4

=item svcnum - primary key (assigned automatcially for new accounts)

=item srcsvc - svcnum of the source of the forward (see L<FS::svc_acct>)

=item src - literal source (username or full email address)

=item dstsvc - svcnum of the destination of the forward (see L<FS::svc_acct>)

=item dst - literal destination (username or full email address)

=back

=head1 METHODS

=over 4

=item new HASHREF

Creates a new mail forwarding alias.  To add the mail forwarding alias to the
database, see L<"insert">.

=cut


sub table_info {
  {
    'name' => 'Forward',
    'name_plural' => 'Mail forwards',
    'display_weight' => 30,
    'cancel_weight'  => 30,
    'fields' => {
        'srcsvc'    => 'service from which mail is to be forwarded',
        'dstsvc'    => 'service to which mail is to be forwarded',
        'dst'       => 'someone@another.domain.com to use when dstsvc is 0',
    },
  };
}

sub table { 'svc_forward'; }

=item search_sql STRING

Class method which returns an SQL fragment to search for the given string.

=cut

sub search_sql {
  my( $class, $string ) = @_;
  $class->search_sql_field('src', $string);
}

=item label [ END_TIMESTAMP [ START_TIMESTAMP ] ]

Returns a text string representing this forward.

END_TIMESTAMP and START_TIMESTAMP can optionally be passed when dealing with
history records.

=cut

sub label {
  my $self = shift;
  my $tag = '';

  if ( $self->srcsvc ) {
    my $svc_acct = $self->srcsvc_acct(@_);
    $tag = $svc_acct->email(@_);
  } else {
    $tag = $self->src;
  }

  $tag .= ' -> ';

  if ( $self->dstsvc ) {
    my $svc_acct = $self->dstsvc_acct(@_);
    $tag .= $svc_acct->email(@_);
  } else {
    $tag .= $self->dst;
  }

  $tag;
}


=item insert [ , OPTION => VALUE ... ]

Adds this mail forwarding alias to the database.  If there is an error, returns
the error, otherwise returns false.

The additional fields pkgnum and svcpart (see L<FS::cust_svc>) should be 
defined.  An FS::cust_svc record will be created and inserted.

Currently available options are: I<depend_jobnum>

If I<depend_jobnum> is set (to a scalar jobnum or an array reference of
jobnums), all provisioning jobs will have a dependancy on the supplied
jobnum(s) (they will not run until the specific job(s) complete(s)).

=item delete

Deletes this mail forwarding alias from the database.  If there is an error,
returns the error, otherwise returns false.

The corresponding FS::cust_svc record will be deleted as well.

=item replace OLD_RECORD

Replaces OLD_RECORD with this one in the database.  If there is an error,
returns the error, otherwise returns false.

=cut

sub replace {
  my ( $new, $old ) = ( shift, shift );

  if ( $new->srcsvc != $old->srcsvc
       && ( $new->dstsvc != $old->dstsvc
            || ! $new->dstsvc && $new->dst ne $old->dst 
          )
      ) {
    return "Can't change both source and destination of a mail forward!"
  }

  $new->SUPER::replace($old, @_);
}

=item suspend

Just returns false (no error) for now.

Called by the suspend method of FS::cust_pkg (see L<FS::cust_pkg>).

=item unsuspend

Just returns false (no error) for now.

Called by the unsuspend method of FS::cust_pkg (see L<FS::cust_pkg>).

=item cancel

Just returns false (no error) for now.

Called by the cancel method of FS::cust_pkg (see L<FS::cust_pkg>).

=item check

Checks all fields to make sure this is a valid mail forwarding alias.  If there
is an error, returns the error, otherwise returns false.  Called by the insert
and replace methods.

Sets any fixed values; see L<FS::part_svc>.

=cut

sub check {
  my $self = shift;

  my $x = $self->setfixed;
  return $x unless ref($x);
  #my $part_svc = $x;

  my $error = $self->ut_numbern('svcnum')
              || $self->ut_numbern('srcsvc')
              || $self->ut_numbern('dstsvc')
  ;
  return $error if $error;

  return "Both srcsvc and src were defined; only one can be specified"
    if $self->srcsvc && $self->src;

  return "one of srcsvc or src is required"
    unless $self->srcsvc || $self->src;

  return "Unknown srcsvc: ". $self->srcsvc
    unless ! $self->srcsvc || $self->srcsvc_acct;

  return "Both dstsvc and dst were defined; only one can be specified"
    if $self->dstsvc && $self->dst;

  return "one of dstsvc or dst is required"
    unless $self->dstsvc || $self->dst;

  return "Unknown dstsvc: ". $self->dstsvc
    unless ! $self->dstsvc || $self->dstsvc_acct;
  #return "Unknown dstsvc"
  #  unless qsearchs('svc_acct', { 'svcnum' => $self->dstsvc } )
  #         || ! $self->dstsvc;

  if ( $self->src ) {
    $self->src =~ /^([\w\.\-\&]*)(\@([\w\-]+\.)+\w+)$/
       or return "Illegal src: ". $self->src;
    $self->src("$1$2");
  } else {
    $self->src('');
  }

  if ( $self->dst ) {
    my $conf = new FS::Conf;
    if ( $conf->exists('svc_forward-arbitrary_dst') ) {
      my $error = $self->ut_textn('dst');
      return $error if $error;
    } else {
      $self->dst =~ /^([\w\.\-\&]*)(\@([\w\-]+\.)+\w+)$/
         or return "Illegal dst: ". $self->dst;
      $self->dst("$1$2");
    }
  } else {
    $self->dst('');
  }

  $self->SUPER::check;
}

=item srcsvc_acct

Returns the FS::svc_acct object referenced by the srcsvc column, or false for
literally specified forwards.

=cut

sub srcsvc_acct {
  my $self = shift;
  qsearchs('svc_acct', { 'svcnum' => $self->srcsvc } );
}

=item dstsvc_acct

Returns the FS::svc_acct object referenced by the srcsvc column, or false for
literally specified forwards.

=cut

sub dstsvc_acct {
  my $self = shift;
  qsearchs('svc_acct', { 'svcnum' => $self->dstsvc } );
}

=item src_email

Returns the email address to be forwarded regardless of weither it is local
or remote

=cut

sub src_email {
my $self = shift;

if ($self->srcsvc eq '0'){
	return $self->src;
} else {
	my $svc_acct = $self->srcsvc_acct;
	return $svc_acct->email;
}}

=item dst_email

Returns the email address which gets forwarded to regardless of weither it is local
or remote

=cut

sub dst_email {
my $self = shift;

if ($self->dstsvc eq '0'){
        return $self->dst;
} else {
	my $svc_acct = $self->dstsvc_acct;
        return $svc_acct->email;
}}

=item srcsvc_acct_domain

Returns the domain of the srcsvc_acct

=cut

sub srcsvc_acct_domain {
my $self = shift;

        my $svc_acct = $self->srcsvc_acct;
        return $svc_acct->domain;
}


=back

=head1 BUGS

=head1 SEE ALSO

L<FS::Record>, L<FS::Conf>, L<FS::cust_svc>, L<FS::part_svc>, L<FS::cust_pkg>,
L<FS::svc_acct>, L<FS::svc_domain>, schema.html from the base documentation.

=cut

1;