From e17bd439a4675efd11324c8efa2cc7a3e2bbcb5f Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 13 Sep 2017 14:40:43 -0700 Subject: [PATCH] fiber and DSL http exports, RT#75932 --- FS/FS/part_export/acct_http.pm | 14 +++++-- FS/FS/part_export/broadband_http.pm | 9 ++--- FS/FS/part_export/dsl_http.pm | 72 ++++++++++++++++++++++++++++++++++++ FS/FS/part_export/fiber_http.pm | 73 +++++++++++++++++++++++++++++++++++++ FS/FS/part_export/http.pm | 17 ++++++--- 5 files changed, 170 insertions(+), 15 deletions(-) create mode 100644 FS/FS/part_export/dsl_http.pm create mode 100644 FS/FS/part_export/fiber_http.pm diff --git a/FS/FS/part_export/acct_http.pm b/FS/FS/part_export/acct_http.pm index 414350bba..b84e008b9 100644 --- a/FS/FS/part_export/acct_http.pm +++ b/FS/FS/part_export/acct_http.pm @@ -69,10 +69,16 @@ tie %options, 'Tie::IxHash', 'no_machine' => 1, 'notes' => <<'END' Send an HTTP or HTTPS GET or POST to the specified URL on account addition, -modification and deletion. For HTTPS support, -Crypt::SSLeay -or IO::Socket::SSL -is required. +modification and deletion. +

Each "Data" option takes a list of name value pairs on successive +lines. +

+If "Success Regexp" is specified, the response from the server will be +tested against it to determine if the export succeeded.

END ); diff --git a/FS/FS/part_export/broadband_http.pm b/FS/FS/part_export/broadband_http.pm index 097ff34c3..cc1e45071 100644 --- a/FS/FS/part_export/broadband_http.pm +++ b/FS/FS/part_export/broadband_http.pm @@ -58,15 +58,12 @@ tie %options, 'Tie::IxHash', %info = ( 'svc' => 'svc_broadband', - 'desc' => 'Send an HTTP or HTTPS GET or POST request, for accounts.', + 'desc' => 'Send an HTTP or HTTPS GET or POST request, for wireless broadband services.', 'options' => \%options, 'no_machine' => 1, 'notes' => <<'END' -

Send an HTTP or HTTPS GET or POST to the specified URL on account addition, -modification and deletion. For HTTPS support, -Crypt::SSLeay -or IO::Socket::SSL -is required.

+

Send an HTTP or HTTPS GET or POST to the specified URL on wireless broadband service addition, +modification and deletion.

Each "Data" option takes a list of name value pairs on successive lines.