mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-08-30 05:19:56 +00:00
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
#
|
|
# Copyright (c) 2021-2024 ahriman team.
|
|
#
|
|
# This file is part of ahriman
|
|
# (see https://github.com/arcan1s/ahriman).
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
from ahriman.core.configuration import Configuration
|
|
from ahriman.core.formatters import BuildPrinter
|
|
from ahriman.core.report.report import Report
|
|
from ahriman.models.package import Package
|
|
from ahriman.models.repository_id import RepositoryId
|
|
from ahriman.models.result import Result
|
|
|
|
|
|
class Console(Report):
|
|
"""
|
|
html report generator
|
|
|
|
Attributes:
|
|
use_utf(bool): print utf8 symbols instead of ASCII
|
|
"""
|
|
|
|
def __init__(self, repository_id: RepositoryId, configuration: Configuration, section: str) -> None:
|
|
"""
|
|
default constructor
|
|
|
|
Args:
|
|
repository_id(RepositoryId): repository unique identifier
|
|
configuration(Configuration): configuration instance
|
|
section(str): settings section name
|
|
"""
|
|
Report.__init__(self, repository_id, configuration)
|
|
self.use_utf = configuration.getboolean(section, "use_utf", fallback=True)
|
|
|
|
def generate(self, packages: list[Package], result: Result) -> None:
|
|
"""
|
|
generate report for the specified packages
|
|
|
|
Args:
|
|
packages(list[Package]): list of packages to generate report
|
|
result(Result): build result
|
|
"""
|
|
for package in result.success:
|
|
BuildPrinter(package, is_success=True, use_utf=self.use_utf)(verbose=True)
|
|
for package in result.failed:
|
|
BuildPrinter(package, is_success=False, use_utf=self.use_utf)(verbose=True)
|