From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robin Roevens To: development@lists.ipfire.org Subject: [PATCH 7/9] pakfire: Refactor status function separating UI and logic Date: Wed, 09 Mar 2022 23:56:53 +0100 Message-ID: <20220309225655.4472-8-robin.roevens@disroot.org> In-Reply-To: <20220309225655.4472-1-robin.roevens@disroot.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2737071577483676617==" List-Id: --===============2737071577483676617== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - removed UI related code from status function and refactor it to returning hash representing pakfire status. - Add UI part to pakfire script - Use pakfire status function in pakfire.cgi, removing duplicate code Signed-off-by: Robin Roevens --- html/cgi-bin/pakfire.cgi | 39 ++++++++++++++++------------------- src/pakfire/lib/functions.pl | 40 ++++++++++++++++++------------------ src/pakfire/pakfire | 13 +++++++++++- 3 files changed, 50 insertions(+), 42 deletions(-) diff --git a/html/cgi-bin/pakfire.cgi b/html/cgi-bin/pakfire.cgi index 30a23128b..d62b6058f 100644 --- a/html/cgi-bin/pakfire.cgi +++ b/html/cgi-bin/pakfire.cgi @@ -37,6 +37,9 @@ my %color =3D (); my %pakfiresettings =3D (); my %mainsettings =3D (); =20 +# Get Pakfire status +my %pakfire_status =3D &Pakfire::status(); + # Load general settings &General::readhash("${General::swroot}/main/settings", \%mainsettings); &General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", = \%color); @@ -66,7 +69,7 @@ if($cgiparams{'ACTION'} eq 'json-getstatus') { my %status =3D ( 'running' =3D> &_is_pakfire_busy() || "0", 'running_since' =3D> &General::age("$Pakfire::lockfile") || "0s", - 'reboot' =3D> (-e "/var/run/need_reboot") || "0", + 'reboot' =3D> ("$pakfire_status{'RebootRequired'}" eq "yes") || "0", 'failure' =3D> $failure || "0" ); =20 @@ -333,32 +336,26 @@ END exit; } =20 -my $core_release =3D `cat /opt/pakfire/db/core/mine 2>/dev/null`; -chomp($core_release); -my $core_update_age =3D &General::age("/opt/pakfire/db/core/mine"); -my $corelist_update_age =3D &General::age("/opt/pakfire/db/lists/core-list.d= b"); -my $server_update_age =3D &General::age("/opt/pakfire/db/lists/server-list.d= b"); -my $packages_update_age =3D &General::age("/opt/pakfire/db/lists/packages_li= st.db"); - &Header::openbox("100%", "center", "Pakfire"); =20 print < END -if ( -e "/var/run/need_reboot") { +if ("$pakfire_status{'RebootRequired'}" eq "yes") { print "\t\t$Lang::t= r{'needreboot'}!\n"; } + print <$Lang::tr{'pakfire system state'}: $Lang::tr{'available updates'}: =20 - $Lang::tr{'pakfire core update level'}: $core_release + $Lang::tr{'pakfire core update level'}: $pakfire_status{'R= elease'}
- $Lang::tr{'pakfire last update'} $core_update_age $Lang::tr{'pakfire ag= o'}
- $Lang::tr{'pakfire last serverlist update'} $server_update_age $Lang::t= r{'pakfire ago'}
- $Lang::tr{'pakfire last core list update'} $corelist_update_age $Lang::= tr{'pakfire ago'}
- $Lang::tr{'pakfire last package update'} $packages_update_age $Lang::tr= {'pakfire ago'} + $Lang::tr{'pakfire last update'} $pakfire_status{'LastUpdate'} $Lang::t= r{'pakfire ago'}
+ $Lang::tr{'pakfire last serverlist update'} $pakfire_status{'LastServer= ListUpdate'} $Lang::tr{'pakfire ago'}
+ $Lang::tr{'pakfire last core list update'} $pakfire_status{'LastCoreLis= tUpdate'} $Lang::tr{'pakfire ago'}
+ $Lang::tr{'pakfire last package update'} $pakfire_status{'LastPakListUp= date'} $Lang::tr{'pakfire ago'}
@@ -370,17 +367,17 @@ print < END =20 - my %coredb =3D &Pakfire::coredbinfo(); - if (defined $coredb{'AvailableRelease'}) { - print "\n"; + if ("$pakfire_status{'CoreUpdateAvailable'}" eq "yes") { + print "\n"; } =20 - my %upgradelist =3D &Pakfire::dblist("upgrade"); - foreach my $pak (sort keys %upgradelist) { - print "