[freeside-commits] freeside/FS/FS/part_export thirdlane.pm, 1.3, 1.4
Ivan,,,
ivan at wavetail.420.am
Tue Jan 26 02:34:48 PST 2010
Update of /home/cvs/cvsroot/freeside/FS/FS/part_export
In directory wavetail.420.am:/tmp/cvs-serv10151/FS/FS/part_export
Modified Files:
thirdlane.pm
Log Message:
admin operations from svc_acct records
Index: thirdlane.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_export/thirdlane.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- thirdlane.pm 26 Jan 2010 08:35:43 -0000 1.3
+++ thirdlane.pm 26 Jan 2010 10:34:46 -0000 1.4
@@ -25,9 +25,9 @@
;
%info = (
- 'svc' => [qw( svc_pbx svc_phone )],
+ 'svc' => [qw( svc_pbx svc_phone svc_acct )],
'desc' =>
- 'Export tenants and DIDs to Thirdlane PBX manager',
+ 'Export tenants, DIDs and admins to Thirdlane PBX manager',
'options' => \%options,
'notes' => <<'END'
Exports tenants and DIDs to Thirdlane PBX manager using the XML-RPC API.
@@ -63,7 +63,7 @@
#use Data::Dumper;
#warn Dumper(\$result);
- $result eq '0' ? '' : 'Thirdlane API failure';
+ $result eq '0' ? '' : 'Thirdlane API failure (rpc_tenant_create)';
} elsif ( $svc_x->isa('FS::svc_phone') ) {
@@ -88,8 +88,23 @@
#warn Dumper(\$result);
$result eq '0' ? '' : 'Thirdlane API failure (rpc_did_assign)';
+ } elsif ( $svc_x->isa('FS::svc_acct') ) {
+
+ return 'Must select a PBX' unless $svc_x->pbxsvc;
+
+ my $result = $self->_thirdlane_command(
+ 'asterisk::rpc_admin_create',
+ $svc_x->username,
+ $svc_x->_password,
+ $svc_x->pbx_title,
+ );
+
+ #use Data::Dumper;
+ #warn Dumper(\$result);
+ $result eq '0' ? '' : 'Thirdlane API failure (rpc_admin_create)';
+
} else {
- die "guru meditation #10: $svc_x is not FS::svc_pbx or FS::svc_phone";
+ die "guru meditation #10: $svc_x is not FS::svc_pbx, FS::svc_phone or FS::svc_acct";
}
}
@@ -122,7 +137,7 @@
#use Data::Dumper;
#warn Dumper(\$result);
- $result eq '0' ? '' : 'Thirdlane API failure';
+ $result eq '0' ? '' : 'Thirdlane API failure (rpc_tenant_update)';
} elsif ( $new->isa('FS::svc_phone') ) {
@@ -155,8 +170,21 @@
'';
+ } elsif ( $new->isa('FS::svc_acct') ) {
+
+ return "can't change uesrname with thirdlane"
+ if $old->username ne $new->username;
+
+ return "can't change password with thirdlane"
+ if $old->_password ne $new->_password;
+
+ return "can't change PBX for user with thirdlane"
+ if $old->pbxsvc != $new->pbxsvc;
+
+ ''; #we don't care then
+
} else {
- die "guru meditation #11: $new is not FS::svc_pbx or FS::svc_phone";
+ die "guru meditation #11: $svc_x is not FS::svc_pbx, FS::svc_phone or FS::svc_acct";
}
}
@@ -176,7 +204,10 @@
#use Data::Dumper;
#warn Dumper(\$result);
- $result eq '0' ? '' : 'Thirdlane API failure';
+ #$result eq '0' ? '' : 'Thirdlane API failure (rpc_tenant_delete)';
+ warn "Thirdlane API failure (rpc_tenant_delete); deleting anyway\n"
+ if $result ne '0';
+ '';
} elsif ( $svc_x->isa('FS::svc_phone') ) {
@@ -194,8 +225,25 @@
);
$result eq '0' ? '' : 'Thirdlane API failure (rpc_did_delete)';
+ } elsif ( $svc_x->isa('FS::svc_acct') ) {
+
+ return '' unless $svc_x->pbxsvc; #error out? nah
+
+ my $result = $self->_thirdlane_command(
+ 'asterisk::rpc_admin_delete',
+ $svc_x->username,
+ $svc_x->pbx_title,
+ );
+
+ #use Data::Dumper;
+ #warn Dumper(\$result);
+ #$result eq '0' ? '' : 'Thirdlane API failure (rpc_admin_delete)';
+ warn "Thirdlane API failure (rpc_admin_delete); deleting anyway\n"
+ if $result ne '0';
+ '';
+
} else {
- die "guru meditation #11: $svc_x is not FS::svc_pbx or FS::svc_phone";
+ die "guru meditation #12: $svc_x is not FS::svc_pbx, FS::svc_phone or FS::svc_acct";
}
}
@@ -210,7 +258,8 @@
warn "$me connecting to $url\n"
if $self->option('debug');
my $conn = Frontier::Client->new( 'url' => $url,
- 'debug' => $self->option('debug'),
+ #no, spews output to browser
+ #'debug' => $self->option('debug'),
);
warn "$me sending command: ". join(' ', @param). "\n"
More information about the freeside-commits
mailing list