Added support for TXT records.
[freeside.git] / FS / FS / svc_domain.pm
1 package FS::svc_domain;
2
3 use strict;
4 use vars qw( @ISA $whois_hack $conf
5   @defaultrecords $soadefaultttl $soaemail $soaexpire $soamachine
6   $soarefresh $soaretry
7 );
8 use Carp;
9 use Date::Format;
10 #use Net::Whois::Raw;
11 use FS::Record qw(fields qsearch qsearchs dbh);
12 use FS::Conf;
13 use FS::svc_Common;
14 use FS::cust_svc;
15 use FS::svc_acct;
16 use FS::cust_pkg;
17 use FS::cust_main;
18 use FS::domain_record;
19 use FS::queue;
20
21 @ISA = qw( FS::svc_Common );
22
23 #ask FS::UID to run this stuff for us later
24 $FS::UID::callback{'FS::domain'} = sub { 
25   $conf = new FS::Conf;
26
27   @defaultrecords = $conf->config('defaultrecords');
28   $soadefaultttl = $conf->config('soadefaultttl');
29   $soaemail      = $conf->config('soaemail');
30   $soaexpire     = $conf->config('soaexpire');
31   $soamachine    = $conf->config('soamachine');
32   $soarefresh    = $conf->config('soarefresh');
33   $soaretry      = $conf->config('soaretry');
34
35 };
36
37 =head1 NAME
38
39 FS::svc_domain - Object methods for svc_domain records
40
41 =head1 SYNOPSIS
42
43   use FS::svc_domain;
44
45   $record = new FS::svc_domain \%hash;
46   $record = new FS::svc_domain { 'column' => 'value' };
47
48   $error = $record->insert;
49
50   $error = $new_record->replace($old_record);
51
52   $error = $record->delete;
53
54   $error = $record->check;
55
56   $error = $record->suspend;
57
58   $error = $record->unsuspend;
59
60   $error = $record->cancel;
61
62 =head1 DESCRIPTION
63
64 An FS::svc_domain object represents a domain.  FS::svc_domain inherits from
65 FS::svc_Common.  The following fields are currently supported:
66
67 =over 4
68
69 =item svcnum - primary key (assigned automatically for new accounts)
70
71 =item domain
72
73 =item catchall - optional svcnum of an svc_acct record, designating an email catchall account.
74
75 =back
76
77 =head1 METHODS
78
79 =over 4
80
81 =item new HASHREF
82
83 Creates a new domain.  To add the domain to the database, see L<"insert">.
84
85 =cut
86
87 sub table { 'svc_domain'; }
88
89 =item insert [ , OPTION => VALUE ... ]
90
91 Adds this domain to the database.  If there is an error, returns the error,
92 otherwise returns false.
93
94 The additional fields I<pkgnum> and I<svcpart> (see L<FS::cust_svc>) should be 
95 defined.  An FS::cust_svc record will be created and inserted.
96
97 The additional field I<action> should be set to I<N> for new domains or I<M>
98 for transfers.
99
100 A registration or transfer email will be submitted unless
101 $FS::svc_domain::whois_hack is true.
102
103 The additional field I<email> can be used to manually set the admin contact
104 email address on this email.  Otherwise, the svc_acct records for this package 
105 (see L<FS::cust_pkg>) are searched.  If there is exactly one svc_acct record
106 in the same package, it is automatically used.  Otherwise an error is returned.
107
108 If any I<soamachine> configuration file exists, an SOA record is added to
109 the domain_record table (see <FS::domain_record>).
110
111 If any records are defined in the I<defaultrecords> configuration file,
112 appropriate records are added to the domain_record table (see
113 L<FS::domain_record>).
114
115 Currently available options are: I<depend_jobnum>
116
117 If I<depend_jobnum> is set (to a scalar jobnum or an array reference of
118 jobnums), all provisioning jobs will have a dependancy on the supplied
119 jobnum(s) (they will not run until the specific job(s) complete(s)).
120
121 =cut
122
123 sub insert {
124   my $self = shift;
125   my $error;
126
127   local $SIG{HUP} = 'IGNORE';
128   local $SIG{INT} = 'IGNORE';
129   local $SIG{QUIT} = 'IGNORE';
130   local $SIG{TERM} = 'IGNORE';
131   local $SIG{TSTP} = 'IGNORE';
132   local $SIG{PIPE} = 'IGNORE';
133
134   my $oldAutoCommit = $FS::UID::AutoCommit;
135   local $FS::UID::AutoCommit = 0;
136   my $dbh = dbh;
137
138   $error = $self->check;
139   return $error if $error;
140
141   return "Domain in use (here)"
142     if qsearchs( 'svc_domain', { 'domain' => $self->domain } );
143
144   my $whois = $self->whois;
145   if ( $self->action eq "N" && ! $whois_hack && $whois ) {
146     $dbh->rollback if $oldAutoCommit;
147     return "Domain in use (see whois)";
148   }
149   if ( $self->action eq "M" && ! $whois ) {
150     $dbh->rollback if $oldAutoCommit;
151     return "Domain not found (see whois)";
152   }
153
154   $error = $self->SUPER::insert(@_);
155   if ( $error ) {
156     $dbh->rollback if $oldAutoCommit;
157     return $error;
158   }
159
160   $self->submit_internic unless $whois_hack;
161
162   if ( $soamachine ) {
163     my $soa = new FS::domain_record {
164       'svcnum'  => $self->svcnum,
165       'reczone' => '@',
166       'recaf'   => 'IN',
167       'rectype' => 'SOA',
168       'recdata' => "$soamachine $soaemail ( ". time2str("%Y%m%d", time). "00 ".
169                    "$soarefresh $soaretry $soaexpire $soadefaultttl )"
170     };
171     $error = $soa->insert;
172     if ( $error ) {
173       $dbh->rollback if $oldAutoCommit;
174       return "couldn't insert SOA record for new domain: $error";
175     }
176
177     foreach my $record ( @defaultrecords ) {
178       my($zone,$af,$type,$data) = split(/\s+/,$record,4);
179       my $domain_record = new FS::domain_record {
180         'svcnum'  => $self->svcnum,
181         'reczone' => $zone,
182         'recaf'   => $af,
183         'rectype' => $type,
184         'recdata' => $data,
185       };
186       my $error = $domain_record->insert;
187       if ( $error ) {
188         $dbh->rollback if $oldAutoCommit;
189         return "couldn't insert record for new domain: $error";
190       }
191     }
192
193   }
194
195   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
196
197   ''; #no error
198 }
199
200 =item delete
201
202 Deletes this domain from the database.  If there is an error, returns the
203 error, otherwise returns false.
204
205 The corresponding FS::cust_svc record will be deleted as well.
206
207 =cut
208
209 sub delete {
210   my $self = shift;
211
212   return "Can't delete a domain which has accounts!"
213     if qsearch( 'svc_acct', { 'domsvc' => $self->svcnum } );
214
215   #return "Can't delete a domain with (domain_record) zone entries!"
216   #  if qsearch('domain_record', { 'svcnum' => $self->svcnum } );
217
218   local $SIG{HUP} = 'IGNORE';
219   local $SIG{INT} = 'IGNORE';
220   local $SIG{QUIT} = 'IGNORE';
221   local $SIG{TERM} = 'IGNORE';
222   local $SIG{TSTP} = 'IGNORE';
223   local $SIG{PIPE} = 'IGNORE';
224
225   my $oldAutoCommit = $FS::UID::AutoCommit;
226   local $FS::UID::AutoCommit = 0;
227   my $dbh = dbh;
228
229   foreach my $domain_record ( reverse $self->domain_record ) {
230     my $error = $domain_record->delete;
231     if ( $error ) {
232       $dbh->rollback if $oldAutoCommit;
233       return $error;
234     }
235   }
236
237   my $error = $self->SUPER::delete;
238   if ( $error ) {
239     $dbh->rollback if $oldAutoCommit;
240     return $error;
241   }
242
243   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
244 }
245
246 =item replace OLD_RECORD
247
248 Replaces OLD_RECORD with this one in the database.  If there is an error,
249 returns the error, otherwise returns false.
250
251 =cut
252
253 sub replace {
254   my ( $new, $old ) = ( shift, shift );
255
256   return "Can't change domain - reorder."
257     if $old->getfield('domain') ne $new->getfield('domain'); 
258
259   # Better to do it here than to force the caller to remember that svc_domain is weird.
260   $new->setfield(action => 'M');
261   my $error = $new->SUPER::replace($old);
262   return $error if $error;
263 }
264
265 =item suspend
266
267 Just returns false (no error) for now.
268
269 Called by the suspend method of FS::cust_pkg (see L<FS::cust_pkg>).
270
271 =item unsuspend
272
273 Just returns false (no error) for now.
274
275 Called by the unsuspend method of FS::cust_pkg (see L<FS::cust_pkg>).
276
277 =item cancel
278
279 Just returns false (no error) for now.
280
281 Called by the cancel method of FS::cust_pkg (see L<FS::cust_pkg>).
282
283 =item check
284
285 Checks all fields to make sure this is a valid domain.  If there is an error,
286 returns the error, otherwise returns false.  Called by the insert and replace
287 methods.
288
289 Sets any fixed values; see L<FS::part_svc>.
290
291 =cut
292
293 sub check {
294   my $self = shift;
295
296   my $x = $self->setfixed;
297   return $x unless ref($x);
298   #my $part_svc = $x;
299
300   my $error = $self->ut_numbern('svcnum')
301               || $self->ut_numbern('catchall')
302   ;
303   return $error if $error;
304
305   #hmm
306   my $pkgnum;
307   if ( $self->svcnum ) {
308     my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $self->svcnum } );
309     $pkgnum = $cust_svc->pkgnum;
310   } else {
311     $pkgnum = $self->pkgnum;
312   }
313
314   my($recref) = $self->hashref;
315
316   unless ( $whois_hack ) {
317     unless ( $self->email ) { #find out an email address
318       my @svc_acct;
319       foreach ( qsearch( 'cust_svc', { 'pkgnum' => $pkgnum } ) ) {
320         my $svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $_->svcnum } );
321         push @svc_acct, $svc_acct if $svc_acct;
322       }
323
324       if ( scalar(@svc_acct) == 0 ) {
325         return "Must order an account in package ". $pkgnum. " first";
326       } elsif ( scalar(@svc_acct) > 1 ) {
327         return "More than one account in package ". $pkgnum. ": specify admin contact email";
328       } else {
329         $self->email($svc_acct[0]->email );
330       }
331     }
332   }
333
334   #if ( $recref->{domain} =~ /^([\w\-\.]{1,22})\.(com|net|org|edu)$/ ) {
335   if ( $recref->{domain} =~ /^([\w\-]{1,63})\.(com|net|org|edu)$/ ) {
336     $recref->{domain} = "$1.$2";
337   # hmmmmmmmm.
338   } elsif ( $whois_hack && $recref->{domain} =~ /^([\w\-\.]+)$/ ) {
339     $recref->{domain} = $1;
340   } else {
341     return "Illegal domain ". $recref->{domain}.
342            " (or unknown registry - try \$whois_hack)";
343   }
344
345   $recref->{action} =~ /^(M|N)$/
346     or return "Illegal action: ". $recref->{action};
347   $recref->{action} = $1;
348
349   if ( $recref->{catchall} ne '' ) {
350     my $svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $recref->{catchall} } );
351     return "Unknown catchall" unless $svc_acct;
352   }
353
354   $self->ut_textn('purpose')
355     or $self->SUPER::check;
356
357 }
358
359 =item domain_record
360
361 =cut
362
363 sub domain_record {
364   my $self = shift;
365
366   my %order = (
367     SOA => 1,
368     NS => 2,
369     MX => 3,
370     CNAME => 4,
371     A => 5,
372     TXT => 6,
373   );
374
375   sort { $order{$a->rectype} <=> $order{$b->rectype} }
376     qsearch('domain_record', { svcnum => $self->svcnum } );
377
378 }
379
380 sub catchall_svc_acct {
381   my $self = shift;
382   if ( $self->catchall ) {
383     qsearchs( 'svc_acct', { 'svcnum' => $self->catchall } );
384   } else {
385     '';
386   }
387 }
388
389 =item whois
390
391 # Returns the Net::Whois::Domain object (see L<Net::Whois>) for this domain, or
392 # undef if the domain is not found in whois.
393
394 (If $FS::svc_domain::whois_hack is true, returns that in all cases instead.)
395
396 =cut
397
398 sub whois {
399   #$whois_hack or new Net::Whois::Domain $_[0]->domain;
400   $whois_hack or die "whois_hack not set...\n";
401 }
402
403 =item _whois
404
405 Depriciated.
406
407 =cut
408
409 sub _whois {
410   die "_whois depriciated";
411 }
412
413 =item submit_internic
414
415 Submits a registration email for this domain.
416
417 =cut
418
419 sub submit_internic {
420   #my $self = shift;
421   carp "submit_internic depreciated";
422 }
423
424 =back
425
426 =head1 BUGS
427
428 Delete doesn't send a registration template.
429
430 All registries should be supported.
431
432 Should change action to a real field.
433
434 The $recref stuff in sub check should be cleaned up.
435
436 =head1 SEE ALSO
437
438 L<FS::svc_Common>, L<FS::Record>, L<FS::Conf>, L<FS::cust_svc>,
439 L<FS::part_svc>, L<FS::cust_pkg>, L<Net::Whois>, schema.html from the base
440 documentation, config.html from the base documentation.
441
442 =cut
443
444 1;
445
446