From c25351c22e3d5018a3afe1ecc2973d0aee6997a5 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Fri, 20 Nov 2015 14:52:24 -0800 Subject: password policy enforcement for svc_dsl, #32456 --- httemplate/edit/process/svc_dsl.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'httemplate') diff --git a/httemplate/edit/process/svc_dsl.html b/httemplate/edit/process/svc_dsl.html index 627329a00..889366e07 100644 --- a/httemplate/edit/process/svc_dsl.html +++ b/httemplate/edit/process/svc_dsl.html @@ -1,5 +1,6 @@ <% include( 'elements/svc_Common.html', 'table' => 'svc_dsl', + 'precheck_callback' => $precheck_callback, ) %> <%init> @@ -7,4 +8,18 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific? +my $precheck_callback = sub { + my $cgi = shift; + my $svcnum = $cgi->param('svcnum'); + my $error = ''; + if ( $svcnum ) { + my $old = FS::svc_dsl->by_key($svcnum); + my $newpass = $cgi->param('password'); + if ( $old and $newpass ne $old->password ) { + $error ||= $old->is_password_allowed($newpass); + } + } + $error; +}; + -- cgit v1.2.1