mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-07-23 02:41:14 +00:00
* migrate to hatch * reorder tests * generic fixtures * straight forward conftest * fix docs generation * fix tox environments * reformat tomls * cleanup pyproject * some play with renaming * move root conftest into pytest plugins * fix setup script * move fixtures to __init__.py * remove duplicate fixtures * disable pylint warning * simplify configuration fixture * remove empty conftest * remove crap from local pyprojects
118 lines
4.7 KiB
Python
118 lines
4.7 KiB
Python
#
|
|
# Copyright (c) 2021-2026 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/>.
|
|
#
|
|
import argparse
|
|
|
|
from ahriman.application.application import Application
|
|
from ahriman.application.handlers.handler import Handler, SubParserAction
|
|
from ahriman.core.configuration import Configuration
|
|
from ahriman.models.build_status import BuildStatusEnum
|
|
from ahriman.models.package import Package
|
|
from ahriman.models.package_source import PackageSource
|
|
from ahriman.models.repository_id import RepositoryId
|
|
|
|
|
|
class Copy(Handler):
|
|
"""
|
|
copy packages handler
|
|
"""
|
|
|
|
ALLOW_MULTI_ARCHITECTURE_RUN = False # conflicting action
|
|
|
|
@classmethod
|
|
def run(cls, args: argparse.Namespace, repository_id: RepositoryId, configuration: Configuration, *,
|
|
report: bool) -> None:
|
|
"""
|
|
callback for command line
|
|
|
|
Args:
|
|
args(argparse.Namespace): command line args
|
|
repository_id(RepositoryId): repository unique identifier
|
|
configuration(Configuration): configuration instance
|
|
report(bool): force enable or disable reporting
|
|
"""
|
|
application = Application(repository_id, configuration, report=report)
|
|
application.on_start()
|
|
|
|
configuration_path, _ = configuration.check_loaded()
|
|
source_repository_id = RepositoryId(repository_id.architecture, args.source)
|
|
source_configuration = Configuration.from_path(configuration_path, source_repository_id)
|
|
source_application = Application(source_repository_id, source_configuration, report=report)
|
|
|
|
packages = source_application.repository.packages(args.package)
|
|
Copy.check_status(args.exit_code, packages)
|
|
|
|
for package in packages:
|
|
Copy.copy_package(package, application, source_application)
|
|
|
|
# run update
|
|
application.update([])
|
|
|
|
if args.remove:
|
|
source_application.remove(args.package)
|
|
|
|
@staticmethod
|
|
def _set_package_copy_parser(root: SubParserAction) -> argparse.ArgumentParser:
|
|
"""
|
|
add parser for package copy subcommand
|
|
|
|
Args:
|
|
root(SubParserAction): subparsers for the commands
|
|
|
|
Returns:
|
|
argparse.ArgumentParser: created argument parser
|
|
"""
|
|
parser = root.add_parser("package-copy", aliases=["copy"], help="copy package from another repository",
|
|
description="copy package and its metadata from another repository")
|
|
parser.add_argument("source", help="source repository name")
|
|
parser.add_argument("package", help="package base", nargs="+")
|
|
parser.add_argument("-e", "--exit-code", help="return non-zero exit status if result is empty",
|
|
action="store_true")
|
|
parser.add_argument("--remove", help="remove package from the source repository after", action="store_true")
|
|
return parser
|
|
|
|
@staticmethod
|
|
def copy_package(package: Package, application: Application, source_application: Application) -> None:
|
|
"""
|
|
copy package ``package`` from source repository to target repository
|
|
|
|
Args:
|
|
package(Package): package to copy
|
|
application(Application): application instance of the target repository
|
|
source_application(Application): application instance of the source repository
|
|
"""
|
|
# copy files
|
|
source_paths = [
|
|
str(source_application.repository.paths.repository / source.filename)
|
|
for source in package.packages.values()
|
|
if source.filename is not None
|
|
]
|
|
application.add(source_paths, PackageSource.Archive)
|
|
|
|
# copy metadata
|
|
application.reporter.package_changes_update(
|
|
package.base, source_application.reporter.package_changes_get(package.base)
|
|
)
|
|
application.reporter.package_dependencies_update(
|
|
package.base, source_application.reporter.package_dependencies_get(package.base)
|
|
)
|
|
application.reporter.package_update(package, BuildStatusEnum.Pending)
|
|
|
|
arguments = [_set_package_copy_parser]
|