X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fhttp.pm;h=6cac600585cf29f309ab3fd8089b4e6835bed694;hb=1a29d3bdfc7124f6b7e99cad4f501a62257c2dd1;hp=3749224ffca5b1c8f80ae05bcd81b82ec621c0ae;hpb=b5c4237a34aef94976bc343c8d9e138664fc3984;p=freeside.git diff --git a/FS/FS/part_export/http.pm b/FS/FS/part_export/http.pm index 3749224ff..6cac60058 100644 --- a/FS/FS/part_export/http.pm +++ b/FS/FS/part_export/http.pm @@ -11,6 +11,9 @@ tie %options, 'Tie::IxHash', options =>[qw(POST)], default =>'POST' }, 'url' => { label => 'URL', default => 'http://', }, + 'ssl_no_verify' => { label => 'Skip SSL certificate validation', + type => 'checkbox', + }, 'insert_data' => { label => 'Insert data', type => 'textarea', @@ -33,6 +36,18 @@ tie %options, 'Tie::IxHash', default => join("\n", ), }, + 'suspend_data' => { + label => 'Suspend data', + type => 'textarea', + default => join("\n", + ), + }, + 'unsuspend_data' => { + label => 'Unsuspend data', + type => 'textarea', + default => join("\n", + ), + }, 'success_regexp' => { label => 'Success Regexp', default => '', @@ -43,6 +58,7 @@ tie %options, 'Tie::IxHash', 'svc' => 'svc_domain', 'desc' => 'Send an HTTP or HTTPS GET or POST request', 'options' => \%options, + 'no_machine' => 1, 'notes' => <<'END' Send an HTTP or HTTPS GET or POST to the specified URL. For HTTPS support, Crypt::SSLeay @@ -63,16 +79,25 @@ sub _export_delete { $self->_export_command('delete', @_); } +sub _export_suspend { + my $self = shift; + $self->_export_command('suspend', @_); +} + +sub _export_unsuspend { + my $self = shift; + $self->_export_command('unsuspend', @_); +} + sub _export_command { my( $self, $action, $svc_x ) = ( shift, shift, shift ); return unless $self->option("${action}_data"); - my $cust_main = $svc_x->table eq 'cust_main' - ? $svc_x - : $svc_x->cust_svc->cust_pkg->cust_main; + my $cust_main = $svc_x->cust_main or return; $self->http_queue( $svc_x->svcnum, + ( $self->option('ssl_no_verify') ? 'ssl_no_verify' : '' ), $self->option('method'), $self->option('url'), $self->option('success_regexp'), @@ -92,12 +117,11 @@ sub _export_replace { return unless $self->option('replace_data'); - my $new_cust_main = $new->table eq 'cust_main' - ? $new - : $new->cust_svc->cust_pkg->cust_main; + my $new_cust_main = $new->cust_main or return; my $cust_main = $new_cust_main; #so folks can use $new_cust_main or $cust_main $self->http_queue( $new->svcnum, + ( $self->option('ssl_no_verify') ? 'ssl_no_verify' : '' ), $self->option('method'), $self->option('url'), $self->option('success_regexp'), @@ -120,6 +144,7 @@ sub http_queue { } sub http { + my $ssl_no_verify = ( $_[0] eq 'ssl_no_verify' || $_[0] eq '' ) ? shift : ''; my($method, $url, $success_regexp, @data) = @_; $method = lc($method); @@ -129,7 +154,9 @@ sub http { eval "use HTTP::Request::Common;"; die "using HTTP::Request::Common: $@" if $@; - my $ua = LWP::UserAgent->new; + my @lwp_opts = (); + push @lwp_opts, 'ssl_opts'=>{ 'verify_hostname'=>0 } if $ssl_no_verify; + my $ua = LWP::UserAgent->new(@lwp_opts); #my $response = $ua->$method( # $url, \%data,