summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2009-06-30 09:38:41 +0000
committerivan <ivan>2009-06-30 09:38:41 +0000
commitef49390629d8bd97cc4f607b559c9552aa86b482 (patch)
tree69f88ea32a6469cb6b852c96eda450b6ec8bb037 /FS
parent55c933db01346b350ad08c03246ca0db0473c056 (diff)
more steps to netsapiens export, RT#5226
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_export/netsapiens.pm166
-rw-r--r--FS/FS/phone_device.pm97
2 files changed, 236 insertions, 27 deletions
diff --git a/FS/FS/part_export/netsapiens.pm b/FS/FS/part_export/netsapiens.pm
index 22124e9..a1957d4 100644
--- a/FS/FS/part_export/netsapiens.pm
+++ b/FS/FS/part_export/netsapiens.pm
@@ -9,10 +9,13 @@ use FS::part_export;
@ISA = qw(FS::part_export);
tie my %options, 'Tie::IxHash',
- 'login' => { label=>'NetSapiens tac2 API username' },
- 'password' => { label=>'NetSapiens tac2 API password' },
- 'url' => { label=>'NetSapiens tac2 URL' },
- 'domain' => { label=>'NetSapiens Domain' },
+ 'login' => { label=>'NetSapiens tac2 User API username' },
+ 'password' => { label=>'NetSapiens tac2 User API password' },
+ 'url' => { label=>'NetSapiens tac2 User URL' },
+ 'device_login' => { label=>'NetSapiens tac2 Device API username' },
+ 'device_password' => { label=>'NetSapiens tac2 Device API password' },
+ 'device_url' => { label=>'NetSapiens tac2 Device URL' },
+ 'domain' => { label=>'NetSapiens Domain' },
;
%info = (
@@ -29,12 +32,22 @@ END
sub rebless { shift; }
sub ns_command {
- my( $self, $method, $command ) = splice(@_,0,3);
+ my $self = shift;
+ $self->_ns_command('', @_);
+}
+
+sub ns_device_command {
+ my $self = shift;
+ $self->_ns_command('device', @_);
+}
+
+sub ns_command {
+ my( $self, $prefix, $method, $command ) = splice(@_,0,4);
eval 'use REST::Client';
die $@ if $@;
- my $ns = new REST::Client 'host'=>$self->option('url');
+ my $ns = new REST::Client 'host'=>$self->option($prefix.'url');
my @args = ( $command );
@@ -46,8 +59,8 @@ sub ns_command {
$args[0] .= $ns->buildQuery( { @_ } );
}
- my $auth =
- encode_base64( $self->option('login'). ':'. $self->option('password') );
+ my $auth = encode_base64( $self->option($prefix.'login'). ':'.
+ $self->option($prefix.'password') );
push @args, { 'Authorization' => "Basic $auth" };
$ns->$method( @args );
@@ -63,6 +76,27 @@ sub ns_subscriber {
"/domains_config/$domain/subscriber_config/$phonenum";
}
+sub ns_registrar {
+ my($self, $svc_phone) = (shift, shift);
+
+ my $domain = $self->option('domain');
+ my $countrycode = $svc_phone->countrycode;
+ my $phonenum = $svc_phone->phonenum;
+
+ $self->ns_subscriber($svc_phone).
+ '/registrar_config/'. $self->ns_devicename($svc_phone);
+}
+
+sub ns_devicename {
+ my( $self, $svc_phone ) = (shift, shift);
+
+ my $domain = $self->option('domain');
+ my $countrycode = $svc_phone->countrycode;
+ my $phonenum = $svc_phone->phonenum;
+
+ "sip:$countrycode$phonenum@$domain";
+}
+
sub ns_dialplan {
my($self, $svc_phone) = (shift, shift);
@@ -72,11 +106,21 @@ sub ns_dialplan {
"/dialplans/DID+Table/dialplan_config/sip:$countrycode$phonenum@*"
}
+sub ns_device {
+ my($self, $svc_phone, $phone_device ) = (shift, shift, shift);
+
+ #my $countrycode = $svc_phone->countrycode;
+ #my $phonenum = $svc_phone->phonenum;
+
+ "/phones_config/". $phone_device->mac_addr;
+}
+
sub ns_create_or_update {
my($self, $svc_phone, $dial_policy) = (shift, shift, shift);
my $domain = $self->option('domain');
- my $phonenum = $svc_phone->phonenum;
+ my $countrycode = $svc_phone->countrycode;
+ my $phonenum = $svc_phone->phonenum;
my( $firstname, $lastname );
if ( $svc_phone->phone_name =~ /^\s*(\S+)\s+(\S.*\S)\s*$/ ) {
@@ -89,33 +133,44 @@ sub ns_create_or_update {
$lastname = $cust_main->get('last');
}
- #create user
+ # Piece 1 (already done) - User creation
my $ns = $self->ns_command( 'PUT', $self->ns_subscriber($svc_phone),
- 'subscriber_login' => $phonenum.'@'.$domain,
- 'firstname' => $firstname,
- 'lastname' => $lastname,
- 'subscriber_pin' => $svc_phone->pin,
- 'dial_plan' => 'Default', #config?
- 'dial_policy' => $dial_policy,
- );
+ 'subscriber_login' => $phonenum.'@'.$domain,
+ 'firstname' => $firstname,
+ 'lastname' => $lastname,
+ 'subscriber_pin' => $svc_phone->pin,
+ 'dial_plan' => 'Default', #config?
+ 'dial_policy' => $dial_policy,
+ );
if ( $ns->responseCode !~ /^2/ ) {
return $ns->responseCode. ' '.
join(', ', $self->ns_parse_response( $ns->responseContent ) );
}
- #map DID to user
- my $ns2 = $self->ns_command( 'PUT', $self->ns_dialplan($svc_phone),
- 'to_user' => $phonenum.'@'.$domain,
- 'to_host' => $domain,
- );
+ #Piece 2 - sip device creation
+
+ my $ns2 = $self->ns_command( 'PUT', $self->ns_registrar($svc_phone),
+ );
if ( $ns2->responseCode !~ /^2/ ) {
return $ns2->responseCode. ' '.
join(', ', $self->ns_parse_response( $ns2->responseContent ) );
}
+ #Piece 3 - DID mapping to user
+
+ my $ns3 = $self->ns_command( 'PUT', $self->ns_dialplan($svc_phone),
+ 'to_user' => $countrycode.$phonenum,
+ 'to_host' => $domain,
+ );
+
+ if ( $ns3->responseCode !~ /^2/ ) {
+ return $ns3->responseCode. ' '.
+ join(', ', $self->ns_parse_response( $ns3->responseContent ) );
+ }
+
'';
}
@@ -124,6 +179,8 @@ sub ns_delete {
my $ns = $self->ns_command( 'DELETE', $self->ns_subscriber($svc_phone) );
+ #delete other things?
+
if ( $ns->responseCode !~ /^2/ ) {
return $ns->responseCode. ' '.
join(', ', $self->ns_parse_response( $ns->responseContent ) );
@@ -165,7 +222,7 @@ sub _export_delete {
sub _export_suspend {
my( $self, $svc_phone ) = (shift, shift);
- $self->ns_create_or_udpate($svc_phone, 'Deny');
+ $self->ns_create_or_update($svc_phone, 'Deny');
}
sub _export_unsuspend {
@@ -174,6 +231,69 @@ sub _export_unsuspend {
$self->_export_insert($svc_phone);
}
+sub export_device_insert {
+ my( $self, $svc_phone, $phone_device ) = (shift, shift, shift);
+
+ #my $domain = $self->option('domain');
+ my $countrycode = $svc_phone->countrycode;
+ my $phonenum = $svc_phone->phonenum;
+
+ my $device = $self->ns_devicename($svc_phone);
+
+ my $ns = $self->ns_device_command(
+ 'PUT', $self->ns_device($svc_phone, $phone_device),
+ 'line1_enable' => 'yes',
+ 'device1' => $self->ns_devicename($svc_phone),
+ 'line1_ext' => $countrycode.$phonenum,
+,
+ #'line2_enable' => 'yes',
+ #'device2' =>
+ #'line2_ext' =>
+
+ #'notes' =>
+ 'server' => 'SiPbx',
+ 'domain' => $self->option('domain'),
+
+ 'brand' => $phone_device->part_device->devicename,
+
+ );
+
+ if ( $ns->responseCode !~ /^2/ ) {
+ return $ns->responseCode. ' '.
+ join(', ', $self->ns_parse_response( $ns->responseContent ) );
+ }
+
+ '';
+
+}
+
+sub export_device_delete {
+ my( $self, $svc_phone, $phone_device ) = (shift, shift, shift);
+
+ my $ns = $self->ns_device_command(
+ 'DELETE', $self->ns_device($svc_phone, $phone_device),
+ );
+
+ if ( $ns->responseCode !~ /^2/ ) {
+ return $ns->responseCode. ' '.
+ join(', ', $self->ns_parse_response( $ns->responseContent ) );
+ }
+
+ '';
+
+
+}
+
+
+sub export_device_replace {
+ my( $self, $svc_phone, $new_phone_device, $old_phone_device ) =
+ (shift, shift, shift, shift);
+
+ #?
+ $self->export_device_insert( $svc_phone, $new_phone_device );
+
+}
+
sub export_links {
my($self, $svc_phone, $arrayref) = (shift, shift, shift);
#push @$arrayref, qq!<A HREF="http://example.com/~!. $svc_phone->username.
diff --git a/FS/FS/phone_device.pm b/FS/FS/phone_device.pm
index a7097a1..1bdbc34 100644
--- a/FS/FS/phone_device.pm
+++ b/FS/FS/phone_device.pm
@@ -2,7 +2,7 @@ package FS::phone_device;
use strict;
use base qw( FS::Record );
-use FS::Record qw( qsearchs ); # qsearch );
+use FS::Record qw( dbh qsearchs ); # qsearch );
use FS::part_device;
use FS::svc_phone;
@@ -76,7 +76,32 @@ otherwise returns false.
=cut
-# the insert method can be inherited from FS::Record
+sub insert {
+ 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;
+
+ my $error = $self->SUPER::insert;
+ if ( $error ) {
+ $dbh->rollback if $oldAutoCommit;
+ return $error;
+ }
+
+ $self->svc_phone->export('device_insert', $self); #call device export
+
+ $dbh->commit or die $dbh->errstr if $oldAutoCommit;
+ '';
+}
+
=item delete
@@ -84,7 +109,31 @@ Delete this record from the database.
=cut
-# the delete method can be inherited from FS::Record
+sub delete {
+ 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;
+
+ $self->svc_phone->export('device_delete', $self); #call device export
+
+ 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
@@ -93,7 +142,35 @@ returns the error, otherwise returns false.
=cut
-# the replace method can be inherited from FS::Record
+sub replace {
+ my $new = shift;
+
+ my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
+ ? shift
+ : $new->replace_old;
+
+ 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;
+
+ my $error = $new->SUPER::replace($old);
+ if ( $error ) {
+ $dbh->rollback if $oldAutoCommit;
+ return $error;
+ }
+
+ $new->svc_phone->export('device_replace', $new, $old); #call device export
+
+ $dbh->commit or die $dbh->errstr if $oldAutoCommit;
+ '';
+}
=item check
@@ -137,6 +214,18 @@ sub part_device {
qsearchs( 'part_device', { 'devicepart' => $self->devicepart } );
}
+=item svc_phone
+
+Returns the phone number (see L<FS::svc_phone>) associated with this customer
+device.
+
+=cut
+
+sub svc_phone {
+ my $self = shift;
+ qsearchs( 'svc_phone', { 'svcnum' => $self->svcnum } );
+}
+
=back
=head1 BUGS