summaryrefslogtreecommitdiff
path: root/FS/FS/svc_domain.pm
blob: b01d67310733d528d7096c8b298a83ce8defd36a (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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
package FS::svc_domain;

use strict;
use base qw( FS::svc_Parent_Mixin FS::svc_CGP_Mixin FS::svc_CGPRule_Mixin
             FS::svc_Common );
use vars qw( $whois_hack $conf
  @defaultrecords $soadefaultttl $soaemail $soaexpire $soamachine
  $soarefresh $soaretry
);
use Carp;
use Scalar::Util qw( blessed );
use Date::Format;
#use Net::Whois::Raw;
use Net::Domain::TLD qw(tld_exists);
use FS::Record qw(fields qsearch qsearchs dbh);
use FS::Conf;
use FS::cust_svc;
use FS::svc_acct;
use FS::cust_pkg;
use FS::cust_main;
use FS::domain_record;
use FS::queue;

#ask FS::UID to run this stuff for us later
$FS::UID::callback{'FS::domain'} = sub { 
  $conf = new FS::Conf;

  @defaultrecords = $conf->config('defaultrecords');
  $soadefaultttl = $conf->config('soadefaultttl');
  $soaemail      = $conf->config('soaemail');
  $soaexpire     = $conf->config('soaexpire');
  $soamachine    = $conf->config('soamachine');
  $soarefresh    = $conf->config('soarefresh');
  $soaretry      = $conf->config('soaretry');

};

=head1 NAME

FS::svc_domain - Object methods for svc_domain records

=head1 SYNOPSIS

  use FS::svc_domain;

  $record = new FS::svc_domain \%hash;
  $record = new FS::svc_domain { '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_domain object represents a domain.  FS::svc_domain inherits from
FS::svc_Common.  The following fields are currently supported:

=over 4

=item svcnum

primary key (assigned automatically for new accounts)

=item domain

=item catchall

optional svcnum of an svc_acct record, designating an email catchall account.

=item suffix

=item parent_svcnum

=item quota

Storage limit

=item registrarnum

Registrar (see L<FS::registrar>)

=item registrarkey

Registrar key or password for this domain

=item setup_date

UNIX timestamp

=item renewal_interval

Number of days before expiration date to start renewal

=item expiration_date

UNIX timestamp

=item max_accounts

=item au_eligibility_type

AU-specific field for domain registrations

=item au_registrant_name

AU-specific field for domain registrations

=back

=head1 METHODS

=over 4

=item new HASHREF

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

=cut

sub table_info {
  {
    'name' => 'Domain',
    'sorts' => 'domain',
    'display_weight' => 20,
    'cancel_weight'  => 60,
    'fields' => {
      'domain' => 'Domain',
      'parent_svcnum' => { 
                         label => 'Parent domain / Communigate administrator domain',
                         type  => 'select',
                         select_table => 'svc_domain',
                         select_key => 'svcnum',
                         select_label => 'domain',
                         disable_inventory => 1,
                         disable_select    => 1,
                       },
      'au_registrant_name' => { label => 'AU Registrant Name',
			        disable_inventory => 1,
				disable_select => 1,
			      },
      'au_eligibility_type' => { label => 'AU Eligibility Type',
                             type  => 'select',
                             select_list => __PACKAGE__->au_eligibility_type_values,
                             disable_inventory => 1,
                             disable_select    => 1,
			      },
      'max_accounts' => { label => 'Maximum number of accounts',
                          'disable_inventory' => 1,
                        },
      'quota'     => { 
                         label => 'Quota', #storage limit
                         type  => 'text',
                         disable_inventory => 1,
                     },
      'cgp_aliases' => { 
                         label => 'Communigate aliases',
                         type  => 'text',
                         disable_inventory => 1,
                         disable_select    => 1,
                       },
      'cgp_accessmodes' => { 
                             label => 'Communigate enabled services',
                             type  => 'communigate_pro-accessmodes',
                             disable_inventory => 1,
                             disable_select    => 1,
                           },
      'cgp_certificatetype' => { 
                             label => 'Communigate PKI services',
                             type  => 'select',
                             select_list => __PACKAGE__->cgp_certificatetype_values,
                             disable_inventory => 1,
                             disable_select    => 1,
                           },

      'acct_def_cgp_accessmodes' => { 
                             label => 'Acct. default Communigate enabled services',
                             type  => 'communigate_pro-accessmodes',
                             disable_inventory => 1,
                             disable_select    => 1,
                           },
      'acct_def_password_selfchange' => { label => 'Acct. default Password modification',
                                 type  => 'checkbox',
                            disable_inventory => 1,
                            disable_select    => 1,
                               },
      'acct_def_password_recover'    => { label => 'Acct. default Password recovery',
                                 type  => 'checkbox',
                            disable_inventory => 1,
                            disable_select    => 1,
                               },
      'acct_def_cgp_deletemode' => { 
                            label => 'Acct. default Communigate message delete method',
                            type  => 'select',
                            select_list => [ 'Move To Trash', 'Immediately', 'Mark' ],
                            disable_inventory => 1,
                            disable_select    => 1,
                          },
      'acct_def_cgp_emptytrash' => { 
                            label => 'Acct. default Communigate on logout remove trash',
                            type        => 'select',
                            select_list => __PACKAGE__->cgp_emptytrash_values,
                            disable_inventory => 1,
                            disable_select    => 1,
                          },
      'acct_def_quota'     => { 
                       label => 'Acct. default Quota', #Mail storage limit
                       type => 'text',
                       disable_inventory => 1,
                       disable_select => 1,
                     },
      'acct_def_file_quota'=> { 
                       label => 'Acct. default File storage limit',
                       type => 'text',
                       disable_inventory => 1,
                       disable_select => 1,
                     },
      'acct_def_file_maxnum'=> { 
                       label => 'Acct. default Number of files limit',
                       type => 'text',
                       disable_inventory => 1,
                       disable_select => 1,
                     },
      'acct_def_file_maxsize'=> { 
                       label => 'Acct. default File size limit',
                       type => 'text',
                       disable_inventory => 1,
                       disable_select => 1,
                     },
      'acct_def_cgp_rulesallowed'   => {
        label       => 'Acct. default Allowed mail rules',
        type        => 'select',
        select_list => [ '', 'No', 'Filter Only', 'All But Exec', 'Any' ],
        disable_inventory => 1,
        disable_select    => 1,
      },
      'acct_def_cgp_rpopallowed'    => {
        label => 'Acct. default RPOP modifications',
        type  => 'checkbox',
      },
      'acct_def_cgp_mailtoall'      => {
        label => 'Acct. default Accepts mail to "all"',
        type  => 'checkbox',
      },
      'acct_def_cgp_addmailtrailer' => {
        label => 'Acct. default Add trailer to sent mail',
        type  => 'checkbox',
      },
      'acct_def_cgp_archiveafter'   => {
        label       => 'Archive messages after',
        type        => 'select',
        select_hash => [ 
                         -2 => 'default(730 days)',
                         0 => 'Never',
                         86400 => '24 hours',
                         172800 => '2 days',
                         259200 => '3 days',
                         432000 => '5 days',
                         604800 => '7 days',
                         1209600 => '2 weeks',
                         2592000 => '30 days',
                         7776000 => '90 days',
                         15552000 => '180 days',
                         31536000 => '365 days',
                         63072000 => '730 days',
                       ],
        disable_inventory => 1,
        disable_select    => 1,
      },
      'trailer' => {
        label => 'Mail trailer',
        type  => 'textarea',
        disable_inventory => 1,
        disable_select    => 1,
      },
      'acct_def_cgp_language' => {
                            label => 'Acct. default language',
                            type  => 'select',
                            select_list => [ '', qw( English Arabic Chinese Dutch French German Hebrew Italian Japanese Portuguese Russian Slovak Spanish Thai ) ],
                            disable_inventory => 1,
                            disable_select    => 1,
                        },
      'acct_def_cgp_timezone' => {
                            label       => 'Acct. default time zone',
                            type        => 'select',
                            select_list => __PACKAGE__->cgp_timezone_values,
                            disable_inventory => 1,
                            disable_select    => 1,
                        },
      'acct_def_cgp_skinname' => {
                            label => 'Acct. default layout',
                            type  => 'select',
                            select_list => [ '', '***', 'GoldFleece', 'Skin2' ],
                            disable_inventory => 1,
                            disable_select    => 1,
                        },
      'acct_def_cgp_prontoskinname' => {
                            label => 'Acct. default Pronto style',
                            type  => 'select',
                            select_list => [ '', 'Pronto', 'Pronto-darkflame', 'Pronto-steel', 'Pronto-twilight', ],
                            disable_inventory => 1,
                            disable_select    => 1,
                        },
      'acct_def_cgp_sendmdnmode' => {
        label => 'Acct. default send read receipts',
        type  => 'select',
        select_list => [ '', 'Never', 'Manually', 'Automatically' ],
        disable_inventory => 1,
        disable_select    => 1,
      },
    },
  };
}

sub table { 'svc_domain'; }

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

=item au_eligibility_type_values

=cut

sub au_eligibility_type_values {

 [ '',
   'Charity',
   'Child Care Centre',
   'Citizen/Resident',
   'Club',
   'Commercial Statutory Body',
   'Company',
   'Government School',
   'Higher Education Institution',
   'Incorporated Association',
   'Industry Body',
   'National Body',
   'Non-Government School',
   'Non-profit Organisation',
   'Other',
   'Partnership',
   'Pending TM Owner',
   'Political Party',
   'Pre-school',
   'Registered Business',
   'Religious/Church Group',
   'Research Organisation',
   'Sole Trader',
   'Trade Union',
   'Trademark Owner',
   'Training Organisation',
  ];

}

=item label

Returns the domain.

=cut

sub label {
  my $self = shift;
  $self->domain;
}

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

Adds this domain to the database.  If there is an error, returns the error,
otherwise returns false.

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

The additional field I<action> should be set to I<N> for new domains, I<M>
for transfers, or I<I> for no action (registered elsewhere).

The additional field I<email> can be used to manually set the admin contact
email address on this email.  Otherwise, the svc_acct records for this package 
(see L<FS::cust_pkg>) are searched.  If there is exactly one svc_acct record
in the same package, it is automatically used.  Otherwise an error is returned.

If any I<soamachine> configuration file exists, an SOA record is added to
the domain_record table (see <FS::domain_record>).

If any records are defined in the I<defaultrecords> configuration file,
appropriate records are added to the domain_record table (see
L<FS::domain_record>).

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)).

=cut

sub insert {
  my $self = shift;
  my $error;

  local $SIG{HUP} = 'IGNORE';
  local $SIG{INT} = 'IGNORE';
  local $SIG{QUIT} = 'IGNORE';
  local $SIG{TERM} = 'IGNORE';
  local $SIG{TSTP} = 'IGNORE';
  local $SIG{PIPE} = 'IGNORE';

  my $oldAutoCommit = $FS::UID::AutoCommit;
  local $FS::UID::AutoCommit = 0;
  my $dbh = dbh;

  $error =  $self->SUPER::insert(@_)
         || $self->insert_defaultrecords;
  if ( $error ) {
    $dbh->rollback if $oldAutoCommit;
    return $error;
  }

  $dbh->commit or die $dbh->errstr if $oldAutoCommit;

  ''; #no error
}

=item insert_defaultrecords

=cut

sub insert_defaultrecords {
  my $self = shift;

  local $SIG{HUP} = 'IGNORE';
  local $SIG{INT} = 'IGNORE';
  local $SIG{QUIT} = 'IGNORE';
  local $SIG{TERM} = 'IGNORE';
  local $SIG{TSTP} = 'IGNORE';
  local $SIG{PIPE} = 'IGNORE';

  my $oldAutoCommit = $FS::UID::AutoCommit;
  local $FS::UID::AutoCommit = 0;
  my $dbh = dbh;

  if ( $soamachine ) {
    my $soa = new FS::domain_record {
      'svcnum'  => $self->svcnum,
      'reczone' => '@',
      'recaf'   => 'IN',
      'rectype' => 'SOA',
      'recdata' => "$soamachine $soaemail ( ". time2str("%Y%m%d", time). "00 ".
                   "$soarefresh $soaretry $soaexpire $soadefaultttl )"
    };
    my $error = $soa->insert;
    if ( $error ) {
      $dbh->rollback if $oldAutoCommit;
      return "couldn't insert SOA record: $error";
    }

    foreach my $record ( @defaultrecords ) {
      my($zone,$af,$type,$data) = split(/\s+/,$record,4);
      my $domain_record = new FS::domain_record {
        'svcnum'  => $self->svcnum,
        'reczone' => $zone,
        'recaf'   => $af,
        'rectype' => $type,
        'recdata' => $data,
      };
      my $error = $domain_record->insert;
      if ( $error ) {
        $dbh->rollback if $oldAutoCommit;
        return "couldn't insert record: $error";
      }
    }

  }

  $dbh->commit or die $dbh->errstr if $oldAutoCommit;

  ''; #no error
}

=item delete

Deletes this domain 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.

=cut

sub delete {
  my $self = shift;

  return "Can't delete a domain which has accounts!"
    if qsearch( 'svc_acct', { 'domsvc' => $self->svcnum } );

  #return "Can't delete a domain with (domain_record) zone entries!"
  #  if qsearch('domain_record', { 'svcnum' => $self->svcnum } );

  local $SIG{HUP} = 'IGNORE';
  local $SIG{INT} = 'IGNORE';
  local $SIG{QUIT} = 'IGNORE';
  local $SIG{TERM} = 'IGNORE';
  local $SIG{TSTP} = 'IGNORE';
  local $SIG{PIPE} = 'IGNORE';

  my $oldAutoCommit = $FS::UID::AutoCommit;
  local $FS::UID::AutoCommit = 0;
  my $dbh = dbh;

  foreach my $domain_record ( reverse $self->domain_record ) {
    my $error = $domain_record->delete;
    if ( $error ) {
      $dbh->rollback if $oldAutoCommit;
      return "can't delete DNS entry: ".
             join(' ', map $domain_record->$_(),
                           qw( reczone recaf rectype recdata )
                 ).
             ":$error";
    }
  }

  my $error = $self->SUPER::delete(@_);
  if ( $error ) {
    $dbh->rollback if $oldAutoCommit;
    return $error;
  }

  $dbh->commit or die $dbh->errstr if $oldAutoCommit;
}

=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 = shift;

  my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
              ? shift
              : $new->replace_old;

  return "Can't change domain - reorder."
    if $old->getfield('domain') ne $new->getfield('domain')
    && ! $conf->exists('svc_domain-edit_domain'); 

  # Better to do it here than to force the caller to remember that svc_domain is weird.
  $new->setfield(action => 'I');
  my $error = $new->SUPER::replace($old, @_);
  return $error if $error;
}

=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 domain.  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_textn('au_eligibility_type')
              || $self->ut_textn('au_registrant_name')
              || $self->ut_numbern('catchall')
              || $self->ut_numbern('max_accounts')
              || $self->ut_alphan('quota')
              || $self->ut_anything('trailer') #well
              || $self->ut_textn('cgp_aliases') #well
              || $self->ut_enum('acct_def_password_selfchange', [ '', 'Y' ])
              || $self->ut_enum('acct_def_password_recover',    [ '', 'Y' ])
              || $self->ut_textn('acct_def_cgp_accessmodes')
              || $self->ut_alphan('acct_def_quota')
              || $self->ut_alphan('acct_def_file_quota')
              || $self->ut_alphan('acct_def_maxnum')
              || $self->ut_alphan('acct_def_maxsize')
              #settings
              || $self->ut_alphasn('acct_def_cgp_rulesallowed')
              || $self->ut_enum('acct_def_cgp_rpopallowed', [ '', 'Y' ])
              || $self->ut_enum('acct_def_cgp_mailtoall', [ '', 'Y' ])
              || $self->ut_enum('acct_def_cgp_addmailtrailer', [ '', 'Y' ])
              || $self->ut_snumbern('acct_def_cgp_archiveafter')
              #preferences
              || $self->ut_alphasn('acct_def_cgp_deletemode')
              || $self->ut_enum('acct_def_cgp_emptytrash',
                                   $self->cgp_emptytrash_values )
              || $self->ut_alphan('acct_def_cgp_language')
              || $self->ut_textn('acct_def_cgp_timezone')
              || $self->ut_textn('acct_def_cgp_skinname')
              || $self->ut_textn('acct_def_cgp_prontoskinname')
              || $self->ut_alphan('acct_def_cgp_sendmdnmode')
              #mail
  ;
  return $error if $error;

  #hmm
  my $pkgnum;
  if ( $self->svcnum ) {
    my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $self->svcnum } );
    $pkgnum = $cust_svc->pkgnum;
  } else {
    $pkgnum = $self->pkgnum;
  }

  my($recref) = $self->hashref;

  #if ( $recref->{domain} =~ /^([\w\-\.]{1,22})\.(com|net|org|edu)$/ ) {
  if ( $recref->{domain} =~ /^([\w\-]{1,63})\.(com|net|org|edu|tv|info|biz)$/ ) {
    $recref->{domain} = "$1.$2";
    $recref->{suffix} ||= $2;
  # hmmmmmmmm.
  } elsif ( $whois_hack && $recref->{domain} =~ /^([\w\-\.\/]+)\.(\w+)$/ ) {
    $recref->{domain} = "$1.$2";
    # need to match a list of suffixes - no guarantee they're top-level..
    # http://wiki.mozilla.org/TLD_List
    # but this will have to do for now...
    $recref->{suffix} ||= $2;
  } else {
    return "Illegal domain ". $recref->{domain}.
           " (or unknown registry - try \$whois_hack)";
  }

  $self->suffix =~ /(^|\.)(\w+)$/
    or return "can't parse suffix for TLD: ". $self->suffix;
  my $tld = $2;
  return "No such TLD: .$tld" unless tld_exists($tld);

  if ( $recref->{catchall} ne '' ) {
    my $svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $recref->{catchall} } );
    return "Unknown catchall" unless $svc_acct;
  }

  $self->ut_alphan('suffix')
    or $self->ut_foreign_keyn('registrarnum', 'registrar', 'registrarnum')
    or $self->ut_textn('registrarkey')
    or $self->ut_numbern('setup_date')
    or $self->ut_numbern('renewal_interval')
    or $self->ut_numbern('expiration_date')
    or $self->SUPER::check;

}

sub _check_duplicate {
  my $self = shift;

  $self->lock_table;

  if ( qsearchs( 'svc_domain', { 'domain' => $self->domain } ) ) {
    return "Domain in use (here)";
  } else {
    return '';
  }
}

=item domain_record

=cut

sub domain_record {
  my $self = shift;

  my %order = (
    'SOA'   => 1,
    'NS'    => 2,
    'MX'    => 3,
    'CNAME' => 4,
    'A'     => 5,
    'TXT'   => 6,
    'PTR'   => 7,
    'SRV'   => 8,
  );

  my %sort = (
    #'SOA'   => sub { $_[0]->recdata cmp $_[1]->recdata }, #sure hope not though
#    'SOA'   => sub { 0; },
#    'NS'    => sub { 0; },
    'MX'    => sub { my( $a_weight, $a_name ) = split(/\s+/, $_[0]->recdata);
                     my( $b_weight, $b_name ) = split(/\s+/, $_[1]->recdata);
                     $a_weight <=> $b_weight or $a_name cmp $b_name;
                   },
    'CNAME' => sub { $_[0]->reczone cmp $_[1]->reczone },
    'A'     => sub { $_[0]->reczone cmp $_[1]->reczone },

#    'TXT'   => sub { 0; },
    'PTR'   => sub { $_[0]->reczone <=> $_[1]->reczone },
  );

  map { $_ } #return $self->num_domain_record( PARAMS ) unless wantarray;
  sort {    $order{$a->rectype} <=> $order{$b->rectype}
         or &{ $sort{$a->rectype} || sub { 0; } }($a, $b)
       }
       qsearch('domain_record', { svcnum => $self->svcnum } );

}

sub catchall_svc_acct {
  my $self = shift;
  if ( $self->catchall ) {
    qsearchs( 'svc_acct', { 'svcnum' => $self->catchall } );
  } else {
    '';
  }
}

=item whois

# Returns the Net::Whois::Domain object (see L<Net::Whois>) for this domain, or
# undef if the domain is not found in whois.

(If $FS::svc_domain::whois_hack is true, returns that in all cases instead.)

=cut

sub whois {
  #$whois_hack or new Net::Whois::Domain $_[0]->domain;
  #$whois_hack or die "whois_hack not set...\n";
}

=back

=head1 BUGS

Delete doesn't send a registration template.

All registries should be supported.

Should change action to a real field.

The $recref stuff in sub check should be cleaned up.

=head1 SEE ALSO

L<FS::svc_Common>, L<FS::Record>, L<FS::Conf>, L<FS::cust_svc>,
L<FS::part_svc>, L<FS::cust_pkg>, L<Net::Whois>, schema.html from the base
documentation, config.html from the base documentation.

=cut

1;