[freeside-commits] freeside/FS/FS/part_export acct_http.pm, NONE, 1.1 http.pm, 1.5, 1.6

Erik Levinson levinse at wavetail.420.am
Thu Nov 4 16:10:32 PDT 2010


Update of /home/cvs/cvsroot/freeside/FS/FS/part_export
In directory wavetail.420.am:/tmp/cvs-serv23286/FS/FS/part_export

Modified Files:
	http.pm 
Added Files:
	acct_http.pm 
Log Message:
New HTTP export for svc_acct and additional option for existing HTTP exports, RT10216


Index: http.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_export/http.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -d -r1.5 -r1.6
--- http.pm	5 Jul 2010 21:10:07 -0000	1.5
+++ http.pm	4 Nov 2010 23:10:29 -0000	1.6
@@ -33,6 +33,10 @@
     default => join("\n",
     ),
   },
+  'success_regexp' => {
+    label  => 'Success Regexp',
+    default => '',
+  },
 ;
 
 %info = (
@@ -71,6 +75,7 @@
   $self->http_queue( $svc_x->svcnum,
     $self->option('method'),
     $self->option('url'),
+    $self->option('success_regexp'),
     map {
       /^\s*(\S+)\s+(.*)$/ or /()()/;
       my( $field, $value_expression ) = ( $1, $2 );
@@ -95,6 +100,7 @@
   $self->http_queue( $new->svcnum,
     $self->option('method'),
     $self->option('url'),
+    $self->option('success_regexp'),
     map {
       /^\s*(\S+)\s+(.*)$/ or /()()/;
       my( $field, $value_expression ) = ( $1, $2 );
@@ -114,7 +120,7 @@
 }
 
 sub http {
-  my($method, $url, @data) = @_;
+  my($method, $url, $success_regexp, @data) = @_;
 
   $method = lc($method);
 
@@ -134,6 +140,11 @@
 
   die $response->error_as_HTML if $response->is_error;
 
+  if(length($success_regexp) > 1) {
+    my $response_content = $response->content;
+    die $response_content unless $response_content =~ /$success_regexp/;
+  }
+
 }
 
 1;

--- NEW FILE: acct_http.pm ---
package FS::part_export::acct_http;

use vars qw( @ISA %info );
use FS::part_export::http;
use Tie::IxHash;

@ISA = qw( FS::part_export::http );

tie my %options, 'Tie::IxHash', %FS::part_export::http::options;

$options{'insert_data'}->{'default'} = join("\n",
  "action 'add'",
  "username \$svc_x->username",
  "password \$svc_x->_password",
  "prismid \$cust_main->agent_custid ? \$cust_main->agent_custid : \$cust_main->custnum ",
  "name \$cust_main->first.' '.\$cust_main->last",
);
$options{'delete_data'}->{'default'} = join("\n",
  "action  'remove'",
  "username \$svc_x->username",
);
$options{'replace_data'}->{'default'} = join("\n",
  "action  'update'",
  "username \$old->username",
  "password \$new->_password",
);

%info = (
  'svc'     => 'svc_acct',
  'desc'    => 'Send an HTTP or HTTPS GET or POST request, for accounts.',
  'options' => \%options,
  'notes'   => <<'END'
Send an HTTP or HTTPS GET or POST to the specified URL on account addition,
modification and deletion.  For HTTPS support,
<a href="http://search.cpan.org/dist/Crypt-SSLeay">Crypt::SSLeay</a>
or <a href="http://search.cpan.org/dist/IO-Socket-SSL">IO::Socket::SSL</a>
is required.
END
);

1;



More information about the freeside-commits mailing list