Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/ |
Upload File : |
from __future__ import print_function, division, absolute_import # Copyright (c) 2017 Red Hat, Inc. # # 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. import dbus import json import logging from rhsmlib.dbus import constants, base_object, util, dbus_utils from rhsmlib.services.products import InstalledProducts from subscription_manager.injectioninit import init_dep_injection from subscription_manager.i18n import Locale init_dep_injection() log = logging.getLogger(__name__) class ProductsDBusObject(base_object.BaseObject): """ A D-Bus object interacting with subscription-manager to list all installed products. """ default_dbus_path = constants.PRODUCTS_DBUS_PATH interface_name = constants.PRODUCTS_INTERFACE def __init__(self, conn=None, object_path=None, bus_name=None): super(ProductsDBusObject, self).__init__(conn=conn, object_path=object_path, bus_name=bus_name) @util.dbus_service_signal( constants.PRODUCTS_INTERFACE, signature='' ) @util.dbus_handle_exceptions def InstalledProductsChanged(self): """ Signal fired, when installed products is created/deleted/changed :return: None """ log.debug("D-Bus signal %s emitted" % constants.PRODUCTS_INTERFACE) return None @util.dbus_service_method( constants.PRODUCTS_INTERFACE, in_signature='sa{sv}s', out_signature='s') @util.dbus_handle_sender @util.dbus_handle_exceptions def ListInstalledProducts(self, filter_string, proxy_options, locale, sender=None): # We reinitialize dependency injection here for following reason. When new product # certificate is installed (or existing is removed), then this change is not propagated to # CertSorter and other caches. Calling installed_products.list(filter_string) without # reinitialization of dependency injection would return old (cached) list of installed # products. init_dep_injection() filter_string = dbus_utils.dbus_to_python(filter_string, expected_type=str) proxy_options = dbus_utils.dbus_to_python(proxy_options, expected_type=dict) locale = dbus_utils.dbus_to_python(locale, expected_type=str) Locale.set(locale) cp = self.build_uep(proxy_options, proxy_only=True) installed_products = InstalledProducts(cp) try: response = installed_products.list(filter_string, iso_dates=True) except Exception as err: raise dbus.DBusException(str(err)) return json.dumps(response)