%PDF- %PDF-
Direktori : /usr/lib/python3/dist-packages/uaclient/ |
Current File : //usr/lib/python3/dist-packages/uaclient/status.py |
import copy import logging import os import sys import textwrap from collections import OrderedDict from datetime import datetime, timezone from typing import Any, Dict, List, Optional, Tuple, cast from uaclient import event_logger, exceptions, messages, util, version from uaclient.config import UAConfig from uaclient.contract import get_available_resources, get_contract_information from uaclient.defaults import ATTACH_FAIL_DATE_FORMAT, PRINT_WRAP_WIDTH from uaclient.entitlements import entitlement_factory from uaclient.entitlements.entitlement_status import ( ContractStatus, UserFacingAvailability, UserFacingConfigStatus, UserFacingStatus, ) from uaclient.messages import TxtColor event = event_logger.get_event_logger() LOG = logging.getLogger(__name__) ESSENTIAL = "essential" STANDARD = "standard" ADVANCED = "advanced" # Colorized status output for terminal STATUS_COLOR = { UserFacingStatus.ACTIVE.value: ( TxtColor.OKGREEN + UserFacingStatus.ACTIVE.value + TxtColor.ENDC ), UserFacingStatus.INACTIVE.value: ( TxtColor.FAIL + UserFacingStatus.INACTIVE.value + TxtColor.ENDC ), UserFacingStatus.INAPPLICABLE.value: ( TxtColor.DISABLEGREY + UserFacingStatus.INAPPLICABLE.value + TxtColor.ENDC ), # noqa: E501 UserFacingStatus.UNAVAILABLE.value: ( TxtColor.DISABLEGREY + UserFacingStatus.UNAVAILABLE.value + TxtColor.ENDC ), ContractStatus.ENTITLED.value: ( TxtColor.OKGREEN + ContractStatus.ENTITLED.value + TxtColor.ENDC ), ContractStatus.UNENTITLED.value: ( TxtColor.DISABLEGREY + ContractStatus.UNENTITLED.value + TxtColor.ENDC ), # noqa: E501 ESSENTIAL: TxtColor.OKGREEN + ESSENTIAL + TxtColor.ENDC, STANDARD: TxtColor.OKGREEN + STANDARD + TxtColor.ENDC, ADVANCED: TxtColor.OKGREEN + ADVANCED + TxtColor.ENDC, } STATUS_UNATTACHED_TMPL = "{name: <17}{available: <11}{description}" STATUS_SIMULATED_TMPL = """\ {name: <17}{available: <11}{entitled: <11}{auto_enabled: <14}{description}""" STATUS_HEADER = "SERVICE ENTITLED STATUS DESCRIPTION" # The widths listed below for entitled and status are actually 9 characters # less than reality because we colorize the values in entitled and status # columns. Colorizing has an opening and closing set of unprintable characters # that factor into formats len() calculations STATUS_TMPL = "{name: <17}{entitled: <19}{status: <19}{description}" DEFAULT_STATUS = { "_doc": "Content provided in json response is currently considered" " Experimental and may change", "_schema_version": "0.1", "version": version.get_version(), "machine_id": None, "attached": False, "effective": None, "expires": None, # TODO Will this break something? "origin": None, "services": [], "execution_status": UserFacingConfigStatus.INACTIVE.value, "execution_details": messages.NO_ACTIVE_OPERATIONS, "notices": [], "contract": { "id": "", "name": "", "created_at": "", "products": [], "tech_support_level": UserFacingStatus.INAPPLICABLE.value, }, "account": { "name": "", "id": "", "created_at": "", "external_account_ids": [], }, "simulated": False, } # type: Dict[str, Any] def _attached_service_status(ent, inapplicable_resources) -> Dict[str, Any]: status_details = "" description_override = None contract_status = ent.contract_status() if contract_status == ContractStatus.UNENTITLED: ent_status = UserFacingStatus.UNAVAILABLE else: if ent.name in inapplicable_resources: ent_status = UserFacingStatus.INAPPLICABLE description_override = inapplicable_resources[ent.name] else: ent_status, details = ent.user_facing_status() if details: status_details = details.msg blocked_by = [ { "name": service.entitlement.name, "reason_code": service.named_msg.name, "reason": service.named_msg.msg, } for service in ent.blocking_incompatible_services() ] return { "name": ent.presentation_name, "description": ent.description, "entitled": contract_status.value, "status": ent_status.value, "status_details": status_details, "description_override": description_override, "available": "yes" if ent.name not in inapplicable_resources else "no", "blocked_by": blocked_by, } def _attached_status(cfg) -> Dict[str, Any]: """Return configuration of attached status as a dictionary.""" cfg.remove_notice( "", messages.NOTICE_DAEMON_AUTO_ATTACH_LOCK_HELD.format(operation=".*"), ) cfg.remove_notice("", messages.NOTICE_DAEMON_AUTO_ATTACH_FAILED) response = copy.deepcopy(DEFAULT_STATUS) machineTokenInfo = cfg.machine_token["machineTokenInfo"] contractInfo = machineTokenInfo["contractInfo"] tech_support_level = UserFacingStatus.INAPPLICABLE.value response.update( { "version": version.get_version(features=cfg.features), "machine_id": machineTokenInfo["machineId"], "attached": True, "origin": contractInfo.get("origin"), "notices": cfg.read_cache("notices") or [], "contract": { "id": contractInfo["id"], "name": contractInfo["name"], "created_at": contractInfo.get("createdAt", ""), "products": contractInfo.get("products", []), "tech_support_level": tech_support_level, }, "account": { "name": cfg.accounts[0]["name"], "id": cfg.accounts[0]["id"], "created_at": cfg.accounts[0].get("createdAt", ""), "external_account_ids": cfg.accounts[0].get( "externalAccountIDs", [] ), }, } ) if contractInfo.get("effectiveTo"): response["expires"] = cfg.contract_expiry_datetime if contractInfo.get("effectiveFrom"): response["effective"] = contractInfo["effectiveFrom"] resources = cfg.machine_token.get("availableResources") if not resources: resources = get_available_resources(cfg) inapplicable_resources = { resource["name"]: resource.get("description") for resource in sorted(resources, key=lambda x: x.get("name", "")) if not resource.get("available") } for resource in resources: try: ent_cls = entitlement_factory( cfg=cfg, name=resource.get("name", "") ) except exceptions.EntitlementNotFoundError: continue ent = ent_cls(cfg) response["services"].append( _attached_service_status(ent, inapplicable_resources) ) response["services"].sort(key=lambda x: x.get("name", "")) support = cfg.entitlements.get("support", {}).get("entitlement") if support: supportLevel = support.get("affordances", {}).get("supportLevel") if supportLevel: response["contract"]["tech_support_level"] = supportLevel return response def _unattached_status(cfg: UAConfig) -> Dict[str, Any]: """Return unattached status as a dict.""" response = copy.deepcopy(DEFAULT_STATUS) response["version"] = version.get_version(features=cfg.features) resources = get_available_resources(cfg) for resource in resources: if resource.get("available"): available = UserFacingAvailability.AVAILABLE.value else: available = UserFacingAvailability.UNAVAILABLE.value try: ent_cls = entitlement_factory( cfg=cfg, name=resource.get("name", "") ) except exceptions.EntitlementNotFoundError: LOG.debug( messages.AVAILABILITY_FROM_UNKNOWN_SERVICE.format( service=resource.get("name", "without a 'name' key") ) ) continue response["services"].append( { "name": resource.get("presentedAs", resource["name"]), "description": ent_cls.description, "available": available, } ) response["services"].sort(key=lambda x: x.get("name", "")) return response def _handle_beta_resources(cfg, show_beta, response) -> Dict[str, Any]: """Remove beta services from response dict if needed""" config_allow_beta = util.is_config_value_true( config=cfg.cfg, path_to_value="features.allow_beta" ) show_beta |= config_allow_beta if show_beta: return response new_response = copy.deepcopy(response) released_resources = [] for resource in new_response.get("services", {}): resource_name = resource["name"] try: ent_cls = entitlement_factory(cfg=cfg, name=resource_name) except exceptions.EntitlementNotFoundError: """ Here we cannot know the status of a service, since it is not listed as a valid entitlement. Therefore, we keep this service in the list, since we cannot validate if it is a beta service or not. """ released_resources.append(resource) continue enabled_status = UserFacingStatus.ACTIVE.value if not ent_cls.is_beta or resource.get("status", "") == enabled_status: released_resources.append(resource) if released_resources: new_response["services"] = released_resources return new_response def _get_config_status(cfg) -> Dict[str, Any]: """Return a dict with execution_status, execution_details and notices. Values for execution_status will be one of UserFacingConfigStatus enum: inactive, active, reboot-required execution_details will provide more details about that state. notices is a list of tuples with label and description items. """ userStatus = UserFacingConfigStatus status_val = userStatus.INACTIVE.value status_desc = messages.NO_ACTIVE_OPERATIONS (lock_pid, lock_holder) = cfg.check_lock_info() notices = cfg.read_cache("notices") or [] if lock_pid > 0: status_val = userStatus.ACTIVE.value status_desc = messages.LOCK_HELD.format( pid=lock_pid, lock_holder=lock_holder ).msg elif os.path.exists(cfg.data_path("marker-reboot-cmds")): status_val = userStatus.REBOOTREQUIRED.value operation = "configuration changes" for label, description in notices: if label == "Reboot required": operation = description break status_desc = messages.ENABLE_REBOOT_REQUIRED_TMPL.format( operation=operation ) return { "execution_status": status_val, "execution_details": status_desc, "notices": notices, "config_path": cfg.cfg_path, "config": cfg.cfg, } def status(cfg: UAConfig, show_beta: bool = False) -> Dict[str, Any]: """Return status as a dict, using a cache for non-root users When unattached, get available resources from the contract service to report detailed availability of different resources for this machine. Write the status-cache when called by root. """ if os.getuid() != 0: response = cast("Dict[str, Any]", cfg.read_cache("status-cache")) if not response: response = _unattached_status(cfg) elif not cfg.is_attached: response = _unattached_status(cfg) else: response = _attached_status(cfg) response.update(_get_config_status(cfg)) if os.getuid() == 0: cfg.write_cache("status-cache", response) # Try to remove fix reboot notices if not applicable if not util.should_reboot(): cfg.remove_notice( "", messages.ENABLE_REBOOT_REQUIRED_TMPL.format( operation="fix operation" ), ) response = _handle_beta_resources(cfg, show_beta, response) return response def _get_entitlement_information( entitlements: List[Dict[str, Any]], entitlement_name: str ) -> Dict[str, Any]: """Extract information from the entitlements array.""" for entitlement in entitlements: if entitlement.get("type") == entitlement_name: return { "entitled": "yes" if entitlement.get("entitled") else "no", "auto_enabled": "yes" if entitlement.get("obligations", {}).get("enableByDefault") else "no", "affordances": entitlement.get("affordances", {}), } return {"entitled": "no", "auto_enabled": "no", "affordances": {}} def simulate_status( cfg, token: str, show_beta: bool = False ) -> Tuple[Dict[str, Any], int]: """Get a status dictionary based on a token. Returns a tuple with the status dictionary and an integer value - 0 for success, 1 for failure """ ret = 0 response = copy.deepcopy(DEFAULT_STATUS) try: contract_information = get_contract_information(cfg, token) except exceptions.ContractAPIError as e: if hasattr(e, "code") and e.code == 401: raise exceptions.UserFacingError( msg=messages.ATTACH_INVALID_TOKEN.msg, msg_code=messages.ATTACH_INVALID_TOKEN.name, ) raise e contract_info = contract_information.get("contractInfo", {}) account_info = contract_information.get("accountInfo", {}) response.update( { "version": version.get_version(features=cfg.features), "contract": { "id": contract_info.get("id", ""), "name": contract_info.get("name", ""), "created_at": contract_info.get("createdAt", ""), "products": contract_info.get("products", []), }, "account": { "name": account_info.get("name", ""), "id": account_info.get("id"), "created_at": account_info.get("createdAt", ""), "external_account_ids": account_info.get( "externalAccountIDs", [] ), }, "simulated": True, } ) now = datetime.now(timezone.utc) if contract_info.get("effectiveTo"): response["expires"] = contract_info.get("effectiveTo") expiration_datetime = util.parse_rfc3339_date(response["expires"]) delta = expiration_datetime - now if delta.total_seconds() <= 0: message = messages.ATTACH_FORBIDDEN_EXPIRED.format( contract_id=response["contract"]["id"], date=expiration_datetime.strftime(ATTACH_FAIL_DATE_FORMAT), ) event.error(error_msg=message.msg, error_code=message.name) event.info("This token is not valid.\n" + message.msg + "\n") ret = 1 if contract_info.get("effectiveFrom"): response["effective"] = contract_info.get("effectiveFrom") effective_datetime = util.parse_rfc3339_date(response["effective"]) delta = now - effective_datetime if delta.total_seconds() <= 0: message = messages.ATTACH_FORBIDDEN_NOT_YET.format( contract_id=response["contract"]["id"], date=effective_datetime.strftime(ATTACH_FAIL_DATE_FORMAT), ) event.error(error_msg=message.msg, error_code=message.name) event.info("This token is not valid.\n" + message.msg + "\n") ret = 1 status_cache = cfg.read_cache("status-cache") if status_cache: resources = status_cache.get("services") else: resources = get_available_resources(cfg) entitlements = contract_info.get("resourceEntitlements", []) inapplicable_resources = [ resource["name"] for resource in sorted(resources, key=lambda x: x["name"]) if not resource["available"] ] for resource in resources: entitlement_name = resource.get("name", "") try: ent_cls = entitlement_factory(cfg=cfg, name=entitlement_name) except exceptions.EntitlementNotFoundError: continue ent = ent_cls(cfg=cfg) entitlement_information = _get_entitlement_information( entitlements, entitlement_name ) response["services"].append( { "name": resource.get("presentedAs", ent.name), "description": ent.description, "entitled": entitlement_information["entitled"], "auto_enabled": entitlement_information["auto_enabled"], "available": "yes" if ent.name not in inapplicable_resources else "no", } ) response["services"].sort(key=lambda x: x.get("name", "")) support = _get_entitlement_information(entitlements, "support") if support["entitled"]: supportLevel = support["affordances"].get("supportLevel") if supportLevel: response["contract"]["tech_support_level"] = supportLevel response.update(_get_config_status(cfg)) response = _handle_beta_resources(cfg, show_beta, response) return response, ret def colorize(string: str) -> str: """Return colorized string if using a tty, else original string.""" return STATUS_COLOR.get(string, string) if sys.stdout.isatty() else string def colorize_commands(commands: List[List[str]]) -> str: content = "" for cmd in commands: if content: content += " && " content += " ".join(cmd) # subtract 4 from print width to account for leading and trailing braces # and spaces wrapped_content = " \\\n".join( textwrap.wrap( content, width=(PRINT_WRAP_WIDTH - 4), subsequent_indent=" " ) ) if "\n" in wrapped_content: prefix = "{\n " suffix = "\n}" else: prefix = "{ " suffix = " }" return "{color}{prefix}{content}{suffix}{end}".format( color=TxtColor.DISABLEGREY, prefix=prefix, content=wrapped_content, suffix=suffix, end=TxtColor.ENDC, ) def get_section_column_content( column_data: List[Tuple[str, str]], header: Optional[str] = None ) -> List[str]: """Return a list of content lines to print to console for a section Content lines will be center-aligned based on max value length of first column. """ content = [""] if header: content.append(header) template_length = max([len(pair[0]) for pair in column_data]) if template_length > 0: template = "{{:>{}}}: {{}}".format(template_length) content.extend([template.format(*pair) for pair in column_data]) else: # Then we have an empty "label" column and only descriptions content.extend([pair[1] for pair in column_data]) return content def format_tabular(status: Dict[str, Any]) -> str: """Format status dict for tabular output.""" if not status.get("attached"): if status.get("simulated"): content = [ STATUS_SIMULATED_TMPL.format( name="SERVICE", available="AVAILABLE", entitled="ENTITLED", auto_enabled="AUTO_ENABLED", description="DESCRIPTION", ) ] for service in status["services"]: content.append(STATUS_SIMULATED_TMPL.format(**service)) return "\n".join(content) content = [ STATUS_UNATTACHED_TMPL.format( name="SERVICE", available="AVAILABLE", description="DESCRIPTION", ) ] for service in status["services"]: content.append(STATUS_UNATTACHED_TMPL.format(**service)) content.extend(["", messages.UNATTACHED.msg]) return "\n".join(content) content = [STATUS_HEADER] for service_status in status["services"]: entitled = service_status["entitled"] descr_override = service_status.get("description_override") description = ( descr_override if descr_override else service_status["description"] ) fmt_args = { "name": service_status["name"], "entitled": colorize(entitled), "status": colorize(service_status["status"]), "description": description, } content.append(STATUS_TMPL.format(**fmt_args)) tech_support_level = status["contract"]["tech_support_level"] if status.get("notices"): content.extend( get_section_column_content( status.get("notices") or [], header="NOTICES" ) ) content.append("\nEnable services with: ua enable <service>") pairs = [] account_name = status["account"]["name"] if account_name: pairs.append(("Account", account_name)) contract_name = status["contract"]["name"] if contract_name: pairs.append(("Subscription", contract_name)) if status["origin"] != "free": pairs.append(("Valid until", str(status["expires"]))) pairs.append(("Technical support level", colorize(tech_support_level))) if pairs: content.extend(get_section_column_content(column_data=pairs)) return "\n".join(content) def help(cfg, name): """Return help information from an uaclient service as a dict :param name: Name of the service for which to return help data. :raises: UserFacingError when no help is available. """ resources = get_available_resources(cfg) help_resource = None # We are using an OrderedDict here to guarantee # that if we need to print the result of this # dict, the order of insertion will always be respected response_dict = OrderedDict() response_dict["name"] = name for resource in resources: if resource["name"] == name or resource.get("presentedAs") == name: try: help_ent_cls = entitlement_factory( cfg=cfg, name=resource["name"] ) except exceptions.EntitlementNotFoundError: continue help_resource = resource help_ent = help_ent_cls(cfg) break if help_resource is None: raise exceptions.UserFacingError( "No help available for '{}'".format(name) ) if cfg.is_attached: service_status = _attached_service_status(help_ent, {}) status_msg = service_status["status"] response_dict["entitled"] = service_status["entitled"] response_dict["status"] = status_msg if status_msg == "enabled" and help_ent_cls.is_beta: response_dict["beta"] = True else: if help_resource["available"]: available = UserFacingAvailability.AVAILABLE.value else: available = UserFacingAvailability.UNAVAILABLE.value response_dict["available"] = available response_dict["help"] = help_ent.help_info return response_dict