From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 09/29] pppsetup.cgi: Add support for QMI profiles Date: Thu, 01 Dec 2022 17:22:58 +0000 Message-ID: <20221201172318.3166615-9-michael.tremer@ipfire.org> In-Reply-To: <20221201172318.3166615-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5055130376476505447==" List-Id: --===============5055130376476505447== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- html/cgi-bin/pppsetup.cgi | 37 +++++++++++++++++++++++++++++++++++-- langs/en/cgi-bin/en.pl | 3 +++ 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/html/cgi-bin/pppsetup.cgi b/html/cgi-bin/pppsetup.cgi index d7e5799ec..696fa2c96 100644 --- a/html/cgi-bin/pppsetup.cgi +++ b/html/cgi-bin/pppsetup.cgi @@ -87,6 +87,16 @@ elsif ($pppsettings{'ACTION'} eq $Lang::tr{'save'}) $errormessage =3D $Lang::tr{'invalid input'}; goto ERROR; } + if ($pppsettings{'TYPE'} eq "qmi") { + # APN cannot be empty + if ($pppsettings{'APN'} eq "") { + $errormessage =3D $Lang::tr{'access point name is required'}; + goto ERROR; + } elsif (!&General::validdomainname($pppsettings{'APN'})) { + $errormessage =3D $Lang::tr{'access point name is invalid'}; + goto ERROR; + } + } =20 if ($pppsettings{'PROFILENAME'} eq '') { $errormessage =3D $Lang::tr{'profile name not given'}; @@ -523,6 +533,7 @@ print <PPPoE + END ; =20 @@ -719,7 +730,8 @@ END ; } =20 -print < $Lang::tr{'idle timeout'} 3D'*' @@ -738,7 +750,7 @@ print < END ; -print < $Lang::t= r{'persistent'} @@ -767,6 +779,7 @@ END END ; +} =20 if ($pppsettings{'TYPE'} eq 'pptp') { @@ -908,6 +921,26 @@ print < $L= ang::tr{'authentication'} +END +; + +# Ask for the APN for QMI +if ($pppsettings{'TYPE'} eq 'qmi') { + print < + + $Lang::tr{'access point name'} +   + 3D'*'/ + + + + + +END +} + +print < $Lang::tr{'username'} 3D'*' diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl index d504c58b6..c8fb82586 100644 --- a/langs/en/cgi-bin/en.pl +++ b/langs/en/cgi-bin/en.pl @@ -129,6 +129,9 @@ 'a connection with this name already exists' =3D> 'A connection with this na= me already exists.', 'abort' =3D> 'abort', 'access allowed' =3D> 'Access allowed from:', +'access point name' =3D> 'Access Point Name', +'access point name is invalid' =3D> 'Access Point Name is invalid', +'access point name is required' =3D> 'Access Point Name is required', 'access refused with this oinkcode' =3D> 'Access refused with this Oink Code= ', 'accounting' =3D> 'Accounting', 'accounting user nonpdc' =3D> 'Accounting - none PDC Mode', --=20 2.30.2 --===============5055130376476505447==--