forked from virtualmin/virtualmin-registrar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rcom-type-lib.pl
executable file
·788 lines (740 loc) · 21.9 KB
/
rcom-type-lib.pl
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
781
782
783
784
785
786
787
788
# Functions for talking to register.com
use strict;
no strict 'refs';
use warnings;
our (%text, %in);
my $rcom_api_hostname = "partner.rcomexpress.com";
my $rcom_test_api_hostname = "partnertest.rcomexpress.com";
my $rcom_api_port = 80;
my $rcom_api_ssl = 0;
my $rcom_api_page = "/interface.asp";
my @rcom_card_types = ( "visa", "amex", "mastercard" );
my $rcom_create_hostname = "www.virtualmin.com";
my $rcom_create_port = 443;
my $rcom_create_ssl = 1;
my $rcom_create_page = "/cgi-bin/rcom.cgi";
my @rcom_account_params = (
"NewUID",
"NewPW",
"ConfirmPW",
"RegistrantOrganizationName",
"RegistrantJobTitle",
"RegistrantFirstName",
"RegistrantLastName",
"RegistrantAddress1",
"RegistrantAddress2",
"RegistrantCity",
"RegistrantPostalCode",
"RegistrantStateProvince",
"RegistrantStateProvinceChoice",
"RegistrantCountry",
"RegistrantPhone",
"RegistrantFax",
"RegistrantEmailAddress",
"CardType",
"CCName",
"CreditCardNumber",
"CreditCardExpMonth",
"CreditCardExpYear",
"CVV2",
"CCAddress",
"CCZip",
"CCCountry",
"AuthQuestionAnswer",
"Reseller",
);
use Time::Local;
# Returns the name of this registrar
sub type_rcom_desc
{
return $text{'type_rcom'};
}
# type_rcom_domains(&account)
# Returns a list of TLDs that can be used with register.com. Hard-coded for
# now, as I don't know of any programatic way to get this.
sub type_rcom_domains
{
return (".com",
".net",
".org",
".us",
".info",
".mobi",
".biz",
".co.uk",
".org.uk",
".ca",
".cn",
".eu",
".cc",
".tv",
".ws",
".com.cn",
".net.cn",
".org.cn",
".de",
".be",
".tc",
".vg",
".ms",
".gs",
".jp",
".co.nz",
".br.com",
".cn.com",
".jpn.com",
".eu.com",
".uk.com",
".uk.net",
".us.com",
".uy.com",
".hu.com",
".no.com",
".qc.com",
".ru.com",
".sa.com",
".se.com",
".se.net",
".za.com",
".de.com",
".me.uk",
);
}
# type_rcom_edit_inputs(&account, new?)
# Returns table fields for entering the account login details
sub type_rcom_edit_inputs
{
my ($account, $new) = @_;
my $rv;
$rv .= &ui_table_row($text{'rcom_account'},
&ui_textbox("rcom_account", $account->{'rcom_account'}, 30));
$rv .= &ui_table_row($text{'rcom_pass'},
&ui_textbox("rcom_pass", $account->{'rcom_pass'}, 30));
$rv .= &ui_table_row($text{'rcom_test'},
&ui_radio("rcom_test", int($account->{'rcom_test'}),
[ [ 1, $text{'rcom_test1'} ], [ 0, $text{'rcom_test0'} ] ]));
$rv .= &ui_table_row($text{'rcom_years'},
&ui_opt_textbox("rcom_years", $account->{'rcom_years'},
4, $text{'rcom_yearsdef'}));
return $rv;
}
# type_rcom_edit_parse(&account, new?, &in)
# Updates the account object with parsed inputs. Returns undef on success or
# an error message on failure.
sub type_rcom_edit_parse
{
my ($account, $new, $in) = @_;
$in->{'rcom_account'} =~ /^\S+$/ || return $text{'rcom_eaccount'};
$account->{'rcom_account'} = $in->{'rcom_account'};
$in->{'rcom_pass'} =~ /^\S+$/ || return $text{'rcom_epass'};
$account->{'rcom_pass'} = $in->{'rcom_pass'};
$account->{'rcom_test'} = $in->{'rcom_test'};
if ($in->{'rcom_years_def'}) {
delete($account->{'rcom_years'});
}
else {
$in->{'rcom_years'} =~ /^\d+$/ && $in->{'rcom_years'} > 0 &&
$in->{'rcom_years'} <= 10 || return $text{'rcom_eyears'};
$account->{'rcom_years'} = $in->{'rcom_years'};
}
return undef;
}
# type_rcom_create_inputs()
# Returns HTML for creating a new register.com sub-account.
sub type_rcom_create_inputs
{
my $rv;
my @countries = &list_countries();
my ($defc) = grep { $_->[1] eq "US" } @countries;
# Account login and password
$rv .= &ui_table_row($text{'rcom_newuid'},
&ui_textbox("newuid", undef, 20));
$rv .= &ui_table_row($text{'rcom_newpw'},
&ui_password("newpw", undef, 20));
$rv .= &ui_table_row($text{'rcom_test'},
&ui_radio("test", 0,
[ [ 1, $text{'rcom_test1'} ],
[ 0, $text{'rcom_test0'} ] ]));
# Company and personal name
$rv .= &ui_table_row($text{'rcom_organizationname'},
&ui_textbox("organizationname", undef, 60));
$rv .= &ui_table_row($text{'rcom_jobtitle'},
&ui_textbox("jobtitle", undef, 40));
$rv .= &ui_table_row($text{'rcom_firstname'},
&ui_textbox("firstname", undef, 40));
$rv .= &ui_table_row($text{'rcom_lastname'},
&ui_textbox("lastname", undef, 40));
# Address and phone
$rv .= &ui_table_hr();
$rv .= &ui_table_row($text{'rcom_address'},
&ui_textbox("address1", undef, 60)."<br>\n".
&ui_textbox("address2", undef, 60));
$rv .= &ui_table_row($text{'rcom_city'},
&ui_textbox("city", undef, 40));
$rv .= &ui_table_row($text{'rcom_postalcode'},
&ui_textbox("postalcode", undef, 10));
$rv .= &ui_table_row($text{'rcom_stateprovince'},
&ui_select("stateprovincechoice", "S",
[ [ "S", $text{'rcom_state'} ],
[ "P", $text{'rcom_province'} ] ]).
&ui_textbox("stateprovince", undef, 40));
$rv .= &ui_table_row($text{'rcom_country'},
&ui_select("country", $defc->[0],
[ map { [ $_->[0] ] } @countries ]));
$rv .= &ui_table_row($text{'rcom_phone'},
&ui_textbox("phone", undef, 20));
$rv .= &ui_table_row($text{'rcom_fax'},
&ui_opt_textbox("fax", undef, 20, $text{'rcom_none'}));
$rv .= &ui_table_row($text{'rcom_emailaddress'},
&ui_textbox("emailaddress", undef, 60));
# Credit card
$rv .= &ui_table_hr();
$rv .= &ui_table_row($text{'rcom_cardtype'},
&ui_select("cardtype", undef,
[ map { [ $_, $text{'rcom_cardtype_'.$_} ] }
@rcom_card_types ]));
$rv .= &ui_table_row($text{'rcom_ccname'},
&ui_textbox("ccname", undef, 60));
$rv .= &ui_table_row($text{'rcom_creditcardnumber'},
&ui_textbox("creditcardnumber", undef, 60));
$rv .= &ui_table_row($text{'rcom_creditcardexp'},
&ui_textbox("creditcardexpmonth", undef, 2)."/".
&ui_textbox("creditcardexpyear", undef, 4));
$rv .= &ui_table_row($text{'rcom_cvv2'},
&ui_textbox("cvv2", undef, 4));
$rv .= &ui_table_row($text{'rcom_ccaddress'},
&ui_textbox("ccaddress", undef, 60));
$rv .= &ui_table_row($text{'rcom_cczip'},
&ui_textbox("cczip", undef, 10));
$rv .= &ui_table_row($text{'rcom_cccountry'},
&ui_select("cccountry", $defc->[0],
[ map { [ $_->[0] ] } @countries ]));
return $rv;
}
# type_rcom_create_parse(&account, &in)
# Updates the account objcet with values parsed from in. Returns undef if all
# OK, or an error message on failure.
sub type_rcom_create_parse
{
my ($account, $in) = @_;
# Username and password
$in->{'newuid'} =~ /^[a-z0-9\.\-\_]+$/ || return $text{'rcom_enewuid'};
$account->{'rcom_newuid'} = $in->{'newuid'};
$in->{'newpw'} =~ /\S/ || return $text{'rcom_enewpw'};
$account->{'rcom_newpw'} = $in->{'newpw'};
$account->{'rcom_test'} = defined($in->{'test'}) ? $in->{'test'} : 1;
# Company and personal name
$in->{'organizationname'} =~ /\S/ || return $text{'rcom_eorganizationname'};
$account->{'rcom_organizationname'} = $in->{'organizationname'};
$in->{'jobtitle'} =~ /\S/ || return $text{'rcom_ejobtitle'};
$account->{'rcom_jobtitle'} = $in->{'jobtitle'};
$in->{'firstname'} =~ /\S/ || return $text{'rcom_efirstname'};
$account->{'rcom_firstname'} = $in->{'firstname'};
$in->{'lastname'} =~ /\S/ || return $text{'rcom_elastname'};
$account->{'rcom_lastname'} = $in->{'lastname'};
# Address and phone
$in->{'address1'} =~ /\S/ || return $text{'rcom_eaddress'};
$account->{'rcom_address1'} = $in->{'address1'};
$account->{'rcom_address2'} = $in->{'address2'};
$in->{'city'} =~ /\S/ || return $text{'rcom_ecity'};
$account->{'rcom_city'} = $in->{'city'};
$in->{'postalcode'} =~ /^\S+$/ || return $text{'rcom_epostalcode'};
$account->{'rcom_postalcode'} = $in->{'postalcode'};
$account->{'rcom_stateprovincechoice'} = $in->{'stateprovincechoice'};
$in->{'stateprovince'} =~ /\S/ || return $text{'rcom_estateprovince'};
$account->{'rcom_stateprovince'} = $in->{'stateprovince'};
$account->{'rcom_country'} = $in->{'country'};
$in->{'phone'} =~ /^\+\d+\.\d+$/ || return $text{'rcom_ephone'};
$account->{'rcom_phone'} = $in->{'phone'};
if (!$in{'fax_def'}) {
$in->{'fax'} =~ /^\+\d+\.\d+$/ || return $text{'rcom_efax'};
$account->{'rcom_fax'} = $in->{'fax'};
}
$in->{'emailaddress'} =~ /^\S+\@\S+$/ || return $text{'rcom_eemailaddress'};
$account->{'rcom_emailaddress'} = $in->{'emailaddress'};
# Credit card
my @tm = mytime(time());
my $y = $tm[5]+1900;
$account->{'rcom_cardtype'} = $in->{'cardtype'};
$in->{'ccname'} =~ /\S/ || return $text{'rcom_eccname'};
$account->{'rcom_ccname'} = $in->{'ccname'};
$in->{'creditcardnumber'} =~ /^\d+$/ || return $text{'rcom_ecreditcardnumber'};
$account->{'rcom_creditcardnumber'} = $in->{'creditcardnumber'};
$in->{'creditcardexpmonth'} =~ /^\d\d$/ && $in->{'creditcardexpmonth'} >= 1 &&
$in->{'creditcardexpmonth'} <= 12 || return $text{'rcom_ecreditcardexpmonth'};
$account->{'rcom_creditcardexpmonth'} = $in->{'creditcardexpmonth'};
$in->{'creditcardexpyear'} =~ /^\d{4}$/ &&
$in->{'creditcardexpyear'} >= $y || return $text{'rcom_ecreditcardexpyear'};
$account->{'rcom_creditcardexpyear'} = $in->{'creditcardexpyear'};
$in->{'cvv2'} =~ /^\d{3,4}$/ || return $text{'rcom_ecvv2'};
$account->{'rcom_cvv2'} = $in->{'cvv2'};
$in->{'ccaddress'} =~ /\S/ || return $text{'rcom_eccaddress'};
$account->{'rcom_ccaddress'} = $in->{'ccaddress'};
$in->{'cczip'} =~ /^\S+$/ || return $text{'rcom_ecczip'};
$account->{'rcom_cczip'} = $in->{'cczip'};
$account->{'rcom_cccountry'} = $in->{'cccountry'};
return undef;
}
# type_rcom_create_account(&account)
# Actually does the work of creating a new register.com sub-account, which will
# be under the main Virtualmin account but billed separately. Returns 0 and
# an error message on failure, or 1, the new account ID on success, and any
# warnings on success.
sub type_rcom_create_account
{
my ($account) = @_;
# Make HTTP request to virtualmin.com, where a CGI knows our master password
my $id;
$account->{'rcom_confirmpw'} = $account->{'rcom_newpw'}; # Same
$account->{'rcom_authquestionanswer'} = 'none'; # Not needed?
$account->{'rcom_reseller'} = 1; # Needed
my $page = $rcom_create_page."?".
join("&", map { my $p = lc($_);
$p =~ s/^registrant//;
$p = "rcom_".$p;
$_."=".&urlize($account->{$p}) } @rcom_account_params);
if ($account->{'rcom_test'}) {
$page .= "&test=1";
}
my ($out, $err);
&http_download($rcom_create_hostname,
$rcom_create_port,
$page,
\$out, \$err, undef, $rcom_create_ssl);
my $warn;
if ($err) {
# HTTP error
return (0, $err);
}
elsif ($out =~ /^ERR\s+(\S.*)/) {
# Some error
return (0, $1);
}
elsif ($out =~ /^OK\s+(\S+)\s*(.*)/) {
$id = $1;
$warn = $2;
}
else {
# Unknown response!
return (0, $out);
}
# If OK, clear un-needed details from the account object
my $a = $account->{'rcom_newuid'};
my $p = $account->{'rcom_newpw'};
my $t = $account->{'rcom_test'};
foreach my $k (keys %$account) {
delete($account->{$k}) if ($k =~ /^rcom_/);
}
$account->{'rcom_account'} = $a;
$account->{'rcom_pass'} = $p;
$account->{'rcom_test'} = $t;
return (1, $id, $warn, $text{'rcom_createinfo'});
}
# type_rcom_renew_years(&account, &domain)
# Returns the number of years by default to renew a domain for
sub type_rcom_renew_years
{
my ($account, $d) = @_;
return $account->{'rcom_years'} || 2;
}
# type_rcom_validate(&account)
# Checks if an account's details are vaid. Returns undef if OK or an error
# message if the login or password are wrong.
sub type_rcom_validate
{
my ($account) = @_;
my ($ok, $msg) = &call_rcom_api($account, "GetDomainCount", { });
if ($ok) {
return undef;
}
else {
if ($account->{'rcom_test'}) {
# Test mode, but perhaps it should have been real
my $realaccount = { %$account };
$realaccount->{'rcom_test'} = 0;
my ($realok, $realmsg) =
&call_rcom_api($realaccount, "GetDomainCount", { });
if ($realok) {
return $text{'rcom_ereal'};
}
}
return $msg;
}
}
# type_rcom_check_domain(&account, domain)
# Checks if some domain name is available for registration, returns undef if
# yes, or an error message if not.
sub type_rcom_check_domain
{
my ($account, $dname) = @_;
$dname =~ /^([^\.]+)\.(\S+)$/ || return 0;
my ($sld, $tld) = ($1, $2);
my ($ok, $out, $resp) = &call_rcom_api($account, "Check",
{ 'SLD' => $sld, 'TLD' => $tld });
if (!$ok) {
return $out;
}
elsif ($resp->{'RRPCode'} == 210) {
return undef;
}
elsif ($resp->{'RRPCode'} == 211) {
return $text{'rcom_taken'};
}
else {
return $resp->{'RRPText'} || "Unknown error";
}
}
# type_rcom_owned_domain(&account, domain, [id])
# Checks if some domain is owned by the given account. If so, returns the
# 1 and the registrar's ID - if not, returns 1 and undef, on failure returns
# 0 and an error message.
sub type_rcom_owned_domain
{
my ($account, $dname, $id) = @_;
$dname =~ /^([^\.]+)\.(\S+)$/ || return (0, $text{'rcom_etld'});
my ($sld, $tld) = ($1, $2);
my ($ok, $out, $resp) = &call_rcom_api($account, "GetDomainInfo",
{ 'SLD' => $sld, 'TLD' => $tld });
if (!$ok) {
if ($out eq "Domain name not found") {
return (1, undef);
}
else {
return (0, $out || "Unknown error");
}
}
elsif ($resp->{'domainnameid'}) {
return (1, $resp->{'domainnameid'});
}
else {
return (1, undef);
}
}
# type_rcom_ensure_nameservers(&account, &domain, &nameservers)
# Registers a list of nameservers with the registrar. Returns undef if all OK,
# or an error mesage on failure.
sub type_rcom_ensure_nameservers
{
my ($account, $d, $nss) = @_;
foreach my $ns (&unique(@$nss)) {
my ($ok, $out, $resp) = &call_rcom_api($account, "checknsstatus",
{ 'checknsname' => $ns });
next if ($ok);
# need to add it
my $nsip = &to_ipaddress($ns);
$nsip || return (0, &text('rcom_elookupns', $ns));
($ok, $out, $resp) = &call_rcom_api($account,
"registernameserver",
{ 'add' => 'true',
'nsname' => $ns,
'ip' => $nsip });
if (!$ok) {
return &text('rcom_eaddns', $ns, $out);
}
}
return undef;
}
# type_rcom_create_domain(&account, &domain)
# Actually register a domain, if possible. Returns 0 and an error message if
# it failed, or 1 and an ID for the domain on success.
sub type_rcom_create_domain
{
my ($account, $d) = @_;
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return (0, $text{'rcom_etld'});
my ($sld, $tld) = ($1, $2);
# NS records come from the DNS domain
my $args = { 'SLD' => $sld, 'TLD' => $tld };
my $nss = &get_domain_nameservers($account, $d);
if (!ref($nss)) {
return (0, $nss);
}
elsif (!@$nss) {
return (0, $text{'rcom_ensrecords'});
}
my $nscount = 1;
foreach my $ns (@$nss) {
$args->{'NS'.$nscount++} = $ns;
}
# Check the if the nameservers have been added, and try to add them. This
my $err = &type_rcom_ensure_nameservers($account, $d, $nss);
#return (0, $err) if ($err);
# Call the API to create
if ($d->{'registrar_years'}) {
$args->{'NumYears'} = $d->{'registrar_years'};
}
elsif ($account->{'rcom_years'}) {
$args->{'NumYears'} = $account->{'rcom_years'};
}
if ($tld eq "eu") {
$args->{'EU_WhoisPolicy'} = "I Agree";
}
my ($ok, $out, $resp) = &call_rcom_api($account, "Purchase", $args);
if (!$ok) {
return (0, $out);
}
elsif ($resp->{'RRPCode'} != 200) {
return (0, $resp->{'RRPText'});
}
else {
return (1, $resp->{'OrderID'});
}
}
# type_rcom_set_nameservers(&account, &domain, [&nameservers])
# Updates the nameservers for a domain to match DNS. Returns undef on success
# or an error message on failure.
sub type_rcom_set_nameservers
{
my ($account, $d, $nss) = @_;
# Get nameservers in DNS
$nss ||= &get_domain_nameservers($account, $d);
if (!ref($nss)) {
return $nss;
}
elsif (!@$nss) {
return $text{'rcom_ensrecords'};
}
# Make sure they are all available
my $err = &type_rcom_ensure_nameservers($account, $d, $nss);
return $err if ($err);
# Update for the domain
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return $text{'rcom_etld'};
my $args = { 'SLD' => $1, 'TLD' => $2 };
my $nscount = 1;
foreach my $ns (@$nss) {
$args->{'NS'.$nscount++} = $ns;
}
my ($ok, $out, $resp) = &call_rcom_api($account, "ModifyNS", $args);
return $ok ? undef : $out;
}
# type_rcom_get_nameservers(&account, &domain)
# Returns an array ref of nameserver hosts, or an error message
sub type_rcom_get_nameservers
{
my ($account, $d) = @_;
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return $text{'rcom_etld'};
my $args = { 'SLD' => $1, 'TLD' => $2 };
my ($ok, $out, $resp) = &call_rcom_api($account, "GetDNS", $args);
return $out if (!$ok);
my @rv;
for(my $i=1; $i<=$resp->{'NSCount'}; $i++) {
push(@rv, $resp->{'DNS'.$i});
}
return \@rv;
}
# type_rcom_delete_domain(&account, &domain)
# Deletes a domain previously created with this registrar
sub type_rcom_delete_domain
{
my ($account, $d) = @_;
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return (0, $text{'rcom_etld'});
my ($sld, $tld) = ($1, $2);
my $args = { 'SLD' => $sld, 'TLD' => $tld,
'EndUserIP' => $ENV{'REMOTE_ADDR'} ||
&virtual_server::get_default_ip() };
my ($ok, $out, $resp) = &call_rcom_api($account, "DeleteRegistration",$args);
if (!$ok) {
return (0, $out);
}
elsif ($resp->{'domaindeleted'} ne 'True' &&
$resp->{'RRPCode'} != 200) {
return (0, $resp->{'RRPText'} || "Unknown error");
}
else {
return (1, undef);
}
}
# type_rcom_get_contact(&account, &domain)
# Returns a array containing hashes of domain contact information, or an error
# message if it could not be found.
sub type_rcom_get_contact
{
my ($account, $d) = @_;
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return $text{'rcom_etld'};
my ($sld, $tld) = ($1, $2);
my ($ok, $out, $resp) = &call_rcom_api($account, "GetContacts",
{ 'SLD' => $sld, 'TLD' => $tld });
if (!$ok) {
return $out;
}
my @rv;
foreach my $ct ("Admin", "Tech") {
my %con;
foreach my $k (keys %$resp) {
next if ($k !~ /^\Q$ct\E(.*)$/);
next if ($1 eq "PartyID"); # Don't ever touch this
$con{lc($1)} = $resp->{$k};
$con{'lcmap'}->{lc($1)} = $1;
}
if (keys %con) {
$con{'purpose'} = lc($ct);
push(@rv, \%con);
}
}
return \@rv;
}
# type_rcom_save_contact(&account, &domain, &contacts)
# Updates contacts from an array of hashes
sub type_rcom_save_contact
{
my ($account, $d, $cons) = @_;
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return $text{'rcom_etld'};
my ($sld, $tld) = ($1, $2);
foreach my $ct ("Admin", "Tech") {
my ($con) = grep { $_->{'purpose'} eq lc($ct) } @$cons;
next if (!$con);
my $args = { 'SLD' => $sld, 'TLD' => $tld,
'ContactType' => $ct };
foreach my $k (keys %$con) {
if ($k ne "type" && $k ne "lcmap" &&
$k ne $ct."PartyID") {
$args->{$ct.$con->{'lcmap'}->{$k}} = $con->{$k};
}
}
my ($ok, $out, $resp) = &call_rcom_api($account, "Contacts", $args);
if (!$ok) {
return $out;
}
}
return undef;
}
# type_rcom_get_contact_schema(&account, &domain, type)
# Returns a list of fields for domain contacts, as seen by register.com
sub type_rcom_get_contact_schema
{
my ($account, $d, $type) = @_;
return ( { 'name' => 'organizationname',
'size' => 60,
'opt' => 0 },
{ 'name' => 'firstname',
'size' => 40,
'opt' => 0 },
{ 'name' => 'lastname',
'size' => 40,
'opt' => 0 },
{ 'name' => 'jobtitle',
'size' => 60,
'opt' => 1 },
{ 'name' => 'address1',
'size' => 60,
'opt' => 0 },
{ 'name' => 'address2',
'size' => 60,
'opt' => 2 },
{ 'name' => 'city',
'size' => 40,
'opt' => 0 },
{ 'name' => 'stateprovincechoice',
'choices' => [ [ 'S', 'State' ], [ 'P', 'Province' ] ],
'opt' => 1 },
{ 'name' => 'stateprovince',
'size' => 40,
'opt' => 1 },
{ 'name' => 'postalcode',
'size' => 20,
'opt' => 1 },
{ 'name' => 'country',
'choices' => [ map { [ $_->[1], $_->[0] ] } &list_countries() ],
'opt' => 0 },
{ 'name' => 'emailaddress',
'size' => 60,
'opt' => 0 },
{ 'name' => 'phone',
'size' => 40,
'opt' => 0 },
{ 'name' => 'fax',
'size' => 40,
'opt' => 1 },
);
}
# type_rcom_get_expiry(&account, &domain)
# Returns either 1 and the expiry time (unix) for a domain, or 0 and an error
# message.
sub type_rcom_get_expiry
{
my ($account, $d) = @_;
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return (0, $text{'rcom_etld'});
my ($sld, $tld) = ($1, $2);
my ($ok, $out, $resp) = &call_rcom_api($account, "GetDomainExp",
{ 'SLD' => $sld, 'TLD' => $tld });
if (!$ok) {
return (0, $out);
}
elsif ($resp->{'ExpirationDate'} !~ /^(\d+)\/(\d+)\/(\d+)\s+(\d+):(\d+):(\d+)\s+(\S+)/) {
return (0, &text('rcom_edate', $resp->{'ExpirationDate'}));
}
else {
return (1, eval { timelocal($6, $5, $4+($7 eq "PM" ? 12 : 0),
$2, $1-1, $3-1900) });
return (0, $@);
}
}
# type_rcom_renew_domain(&account, &domain, years)
# Attempts to renew a domain for the specified period. Returns 1 and the
# registrars confirmation code on success, or 0 and an error message on
# failure.
sub type_rcom_renew_domain
{
my ($account, $d, $years) = @_;
$d->{'dom'} =~ /^([^\.]+)\.(\S+)$/ || return (0, $text{'rcom_etld'});
my ($sld, $tld) = ($1, $2);
my ($ok, $out, $resp) = &call_rcom_api($account, "Extend",
{ 'SLD' => $sld, 'TLD' => $tld,
'NumYears' => $years });
if (!$ok) {
return (0, $out);
}
elsif ($resp->{'RRPCode'} != 200) {
return (0, $resp->{'RRPText'});
}
else {
return (1, $resp->{'OrderID'});
}
}
# type_rcom_add_instructions()
# Returns HTML for instructions to be shown on the account adding form, such
# as where to create one.
sub type_rcom_add_instructions
{
return &text('rcom_instructions',
'https://secure.rconnection.com/sign-up.asp?resell=VIRTUALMIN-TPP');
}
# call_rcom_api(&account, command, &args)
# Calls a register.com API method, and returns a status code (1 for success, 0
# for error), the response text, and the response hash
sub call_rcom_api
{
my ($account, $cmd, $args) = @_;
my ($out, $error);
&http_download($account->{'rcom_test'} ? $rcom_test_api_hostname
: $rcom_api_hostname,
$rcom_api_port,
$rcom_api_page."?command=".&urlize($cmd).
"&uid=".&urlize($account->{'rcom_account'}).
"&pw=".&urlize($account->{'rcom_pass'}).
"&ResponseType=Text".
(join("", map { "&".$_."=".&urlize($args->{$_}) } keys %$args)),
\$out, \$error, undef, $rcom_api_ssl);
if ($error) {
# HTTP error
return (0, $error, undef);
}
# Parse response lines
my %resp;
foreach my $l (split(/\r?\n/, $out)) {
$l =~ s/^\s*;.*//;
if ($l =~ /^([^=]+)=(.*)/) {
$resp{$1} = $2;
$resp{$1} =~ s/\s+$//; # Remove trailing spaces
}
}
if ($resp{'ErrCount'}) {
# Some error was returned
my @errs;
for(my $i=1; $i<=$resp{'ErrCount'}; $i++) {
push(@errs, $resp{'Err'.$i});
}
return (0, join(", ", @errs) || "Unknown error : $out", \%resp);
}
return (1, $out, \%resp);
}
1;