Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve appstreams context selection #9372

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public static AppStream findAppStream(Long channelId, String name, String stream
);

criteriaQuery.select(root).where(finalPredicate);
return session.createQuery(criteriaQuery).uniqueResult();
return session.createQuery(criteriaQuery).stream().findFirst().orElse(null);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion java/code/webapp/WEB-INF/nav/system_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</rhn-tab>
</rhn-tab>

<rhn-tab name="AppStreams" acl="user_role(satellite_admin); system_has_modular_channels()" url="/rhn/manager/systems/details/appstreams" />
<rhn-tab name="AppStreams" acl="system_has_modular_channels()" url="/rhn/manager/systems/details/appstreams" />

<rhn-tab name="PTF" acl="has_ptf_repositories(); system_supports_ptf_removal() or system_feature(ftr_package_updates)">
<rhn-tab-url>/rhn/manager/systems/details/ptf/overview</rhn-tab-url>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix appstream list of packages in stream (bsc#1232515)
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ FROM rhnserverchannel sc
INNER JOIN suseappstreampackage sasp ON sasp.module_id = sas.id
LEFT JOIN suseserverappstream ssa ON ssa.name = sas.name
AND ssa.stream = sas.stream
AND ssa.context = sas.context
AND ssa.arch = sas.arch
AND ssa.server_id = sc.server_id
WHERE ssa.id IS NULL
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Improve appstreams context selection (bsc#1231459)
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
--
-- Copyright (c) 2024 SUSE LLC
--
-- This software is licensed to you under the GNU General Public License,
-- version 2 (GPLv2). There is NO WARRANTY for this software, express or
-- implied, including the implied warranties of MERCHANTABILITY or FITNESS
-- FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
-- along with this software; if not, see
-- http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
--
-- Red Hat trademarks are not licensed under GPLv2. No permission is
-- granted to use or replicate Red Hat trademarks that are incorporated
-- in this software or its documentation.
--
CREATE OR REPLACE VIEW suseServerAppStreamHiddenPackagesView AS

-- If a package is part of any appstream,
-- and this appstream is not enabled in
-- a server, it should appear here.
SELECT DISTINCT sasp.package_id AS pid, sc.server_id AS sid
FROM rhnserverchannel sc
INNER JOIN suseappstream sas ON sas.channel_id = sc.channel_id
INNER JOIN suseappstreampackage sasp ON sasp.module_id = sas.id
LEFT JOIN suseserverappstream ssa ON ssa.name = sas.name
AND ssa.stream = sas.stream
AND ssa.context = sas.context
AND ssa.arch = sas.arch
AND ssa.server_id = sc.server_id
WHERE ssa.id IS NULL

UNION

-- If a package is part of an enabled appstream, all the packages
-- whose name matches with appstream api need to be filtered out
-- except the packages that are part of the enabled appstream.
SELECT DISTINCT p.id AS pid, server_stream.server_id AS sid
FROM suseServerAppstream server_stream
INNER JOIN suseAppstream appstream ON appstream.name = server_stream.name
AND appstream.stream = server_stream.stream
AND appstream.arch = server_stream.arch
INNER JOIN suseAppstreamApi api ON api.module_id = appstream.id
inner join rhnPackageName pn ON pn.name = api.rpm
inner join rhnPackage p ON p.name_id = pn.id
WHERE NOT EXISTS (
SELECT package_id
FROM suseServerAppStreamPackageView
WHERE server_id = server_stream.server_id
AND package_id = p.id
);

29 changes: 27 additions & 2 deletions susemanager-utils/susemanager-sls/src/modules/appstreams.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,40 @@ def _parse_nsvca(module_info_output):


def _get_module_info(module_names):
# Run the DNF command to get module info for all modules
# Run the DNF command to get module info for all active modules
# Parse all modules if no active ones are present
command = ["dnf", "module", "info", "--quiet"] + module_names
result = subprocess.run(command, capture_output=True, text=True)

if result.returncode != 0:
log.error(f"Error running DNF command: {result.stderr}")
return []

module_info_output = result.stdout.splitlines()
# Active modules are marked with [a]
# Example output
# Name : perl-IO-Socket-SSL
# Stream : 2.066 [d][e][a]
# Version : 8090020231016070024
# Context : 88fd4976
# Architecture : x86_64
# Profiles : common [d]
# Default profiles : common
# Repo : susemanager:rockylinux8-x86_64-appstream
# Summary : Perl library for transparent TLS
# Description : IO::Socket::SSL is a drop-in replacement for ...
# Requires : perl:[5.26]
# : platform:[el8]
# Artifacts : perl-IO-Socket-SSL-0:2.066-4.module+el8.9.0+1517+e71a7a62.noarch

module_info_output = []

for module in re.findall(r"(Name\s+:.*?)(?=\n\s*\n|$)", result.stdout, re.DOTALL):
if re.search(r"Stream\s+:.*\[a\]", module):
module_info_output += module.splitlines()

# Parse all modules, if no active ones were found
if not module_info_output:
module_info_output = result.stdout.splitlines()

nsvca_info_list = []
current_module_info = []
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Improve appstreams context selection (bsc#1231459)
Loading