From a69c2b61cdf4e866e36bab91de1dd71666e7cfb7 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 19 Dec 2011 01:32:12 +0000 Subject: [PATCH 1/1] missing commit from nms auto-addition fixdes, RT#15536 --- httemplate/misc/nms-add_router.html | 4 ++-- httemplate/misc/process/nms-add_iface.html | 11 ++++++----- httemplate/misc/process/nms-add_router.html | 12 ++++++++---- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/httemplate/misc/nms-add_router.html b/httemplate/misc/nms-add_router.html index c41e61977..c32ceb84c 100644 --- a/httemplate/misc/nms-add_router.html +++ b/httemplate/misc/nms-add_router.html @@ -1,4 +1,4 @@ -<% header('Add Router') %> +<& /elements/header-popup.html, 'Add Router' &>
Router Hostname/IP @@ -16,7 +16,7 @@ SNMP Community String (optional)
- + <%init> # XXX: access rights, disable/enable submit button, something's wrong with style diff --git a/httemplate/misc/process/nms-add_iface.html b/httemplate/misc/process/nms-add_iface.html index 5f51e5ce1..d21b3792a 100644 --- a/httemplate/misc/process/nms-add_iface.html +++ b/httemplate/misc/process/nms-add_iface.html @@ -1,4 +1,4 @@ -<% header('Interface added') %> +<& /elements/header-popup.html, 'Interface added') &> @@ -9,16 +9,17 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configure network monitoring'); my $host = $cgi->param('host'); -die 'invalid host' unless $host =~ /^[0-9.a-zA-Z\-]+$/; +errorpage_popup('invalid host') unless $host =~ /^[0-9.a-zA-Z\-]+$/; my $iface = $cgi->param('iface'); -die 'invalid iface' unless $iface =~ /^[0-9A-Za-z_\-.\\\/ ]+$/; +errorpage_popup('invalid iface') unless $iface =~ /^[0-9A-Za-z_\-.\\\/ ]+$/; my $serviceid = $cgi->param('serviceid'); #die 'invalid serviceid' unless $serviceid =~ /^[0-9A-Za-z_\-.\\\/ ]+$/; -die 'invalid serviceid' unless $serviceid =~ /^[0-9A-Za-z_]+$/; +errorpage_popup('invalid serviceid') unless $serviceid =~ /^[0-9A-Za-z_]+$/; my $nms = new FS::NetworkMonitoringSystem; -$nms->add_interface($host,$iface,$serviceid); +my $error = $nms->add_interface($host,$iface,$serviceid); +errorpage_popup($error) if $error; diff --git a/httemplate/misc/process/nms-add_router.html b/httemplate/misc/process/nms-add_router.html index a77d897d2..c3b42a8d3 100644 --- a/httemplate/misc/process/nms-add_router.html +++ b/httemplate/misc/process/nms-add_router.html @@ -1,4 +1,7 @@ -<% header('Router added') %> +<& /elements/header-popup.html, 'Router added' &> + <%init> @@ -6,12 +9,13 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configure network monitoring'); my $host = $cgi->param('host'); -die 'invalid host' unless $host =~ /^[0-9.a-zA-Z\-]+$/; +errorpage_popup('invalid host') unless $host =~ /^[0-9.a-zA-Z\-]+$/; my $community = $cgi->param('community'); -die 'invalid SNMP community string' unless $community =~ /^[0-9.a-zA-Z\-]*$/; +errorpage_popup('invalid SNMP community string') unless $community =~ /^[0-9.a-zA-Z\-]*$/; my $nms = new FS::NetworkMonitoringSystem; -$nms->add_router($host,$community); +my $error = $nms->add_router($host,$community); +errorpage_popup($error) if $error; -- 2.11.0