1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
|
#!/usr/bin/env python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
# Copyright (C) 2019 Bryce W. Harrington
#
# Released under GNU GPLv2 or later, read the file 'LICENSE.GPLv2+' for
# more information.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Author: Bryce Harrington <bryce@canonical.com>
'''PPA developer tools'''
__example__ = '''
Register a new PPA:
$ ppa create my-ppa
Wait until all packages in the PPA have finished building:
$ ppa wait my-ppa
Delete the PPA:
$ ppa destroy my-ppa
Set the public description for a PPA from a file:
$ cat some-package/README | ppa desc ppa:my-name/my-ppa
'''
import os
import sys
import time
import argparse
import datetime
from inspect import currentframe
from textwrap import indent
from typing import Any, Dict
from distro_info import UbuntuDistroInfo
from lazr.restfulclient.errors import BadRequest, Unauthorized
try:
from ruamel import yaml
except ImportError:
import yaml
if '__file__' in globals():
sys.path.insert(0, os.path.realpath(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "..")))
from ppa._version import __version__
from ppa.constants import (
ARCHES_PPA_ALL,
ARCHES_PPA_DEFAULT,
ARCHES_AUTOPKGTEST,
CREDENTIALS_FILENAME_DEFAULT,
LOCAL_REPOSITORY_PATH,
LOCAL_REPOSITORY_MIRRORING_DIRECTIONS,
)
from ppa.dict import unpack_to_dict
from ppa.job import show_waiting, show_running
from ppa.lp import Lp
from ppa.ppa import (
get_ppa,
ppa_address_split,
Ppa,
PpaNotFoundError,
PendingReason
)
from ppa.ppa_group import PpaGroup, PpaAlreadyExists
from ppa.repository import Repository
from ppa.result import show_results
from ppa.text import o2str
from ppa.trigger import get_triggers, show_triggers
import ppa.debug
from ppa.debug import dbg, warn, error
EX_NOTFOUND = 127
EX_KEYBOARD_INTERRUPT = 130
def UNIMPLEMENTED():
"""Marks functionality that's not yet been coded"""
warn("[UNIMPLEMENTED]: %s()" % (currentframe().f_back.f_code.co_name))
def load_yaml_as_dict(filename):
"""Returns content of yaml-formatted file as a dictionary.
:rtype: dict
:returns: Content of file as a dict object.
"""
d = dict()
with open(filename, 'r') as f:
for y in yaml.safe_load_all(f.read()):
d.update(y)
return d
def add_global_options(parser: argparse.ArgumentParser) -> None:
"""Adds arguments to the given parser for generic options.
:param argparse.ArgumentParser parser: A parser or subparser.
"""
parser.add_argument('-A', '--credentials',
dest='credentials_filename', action='store',
metavar='FILE',
help="Location of oauth credentials file")
parser.add_argument('-C', '--config',
dest='config_filename', action='store',
default="~/.config/ppa-dev-tools/config.yml",
metavar="FILE",
help="Location of config file")
parser.add_argument('-D', '--debug',
dest='debug', action='store_true',
help="Turn on general debugging")
parser.add_argument('-V', '--version',
action='version',
version='%(prog)s {version}'.format(version=__version__),
help="Version information")
parser.add_argument('--dry-run',
dest='dry_run', action='store_true',
help="Simulate command without modifying anything")
parser.add_argument('-v', '--verbose',
dest='verbose', action='store_true',
help="Print more information during processing")
parser.add_argument('-q', '--quiet',
dest='quiet', action='store_true',
help="Minimize output during processing")
def add_basic_config_options(parser: argparse.ArgumentParser) -> None:
"""Adds to a parser the command line options to configure the PPA.
The config options are supported by the 'create' and 'set' command,
to allow configuring the PPA at creation time, or after, respectively.
These options represent what can be set as a user from the Launchpad
web interface.
:param argparse.ArgumentParser parser: A parser or subparser.
"""
# Architectures
parser.add_argument(
'-a', '--arches', '--arch', '--architectures',
dest="architectures",
action='store',
default=None,
help="Comma-separated list of hardware architectures to use"
)
parser.add_argument(
'--all-arches', '--all-architectures',
dest="architectures",
action='store_const',
const=','.join(ARCHES_PPA_ALL),
help="Enable all available architectures for the PPA"
)
parser.add_argument(
'--default-arches', '--default-architectures',
dest="architectures",
action='store_const',
const=','.join(ARCHES_PPA_DEFAULT),
help="Enable all available architectures for the PPA"
)
# Displayname
parser.add_argument(
'--displayname',
dest="displayname",
action='store',
default=None,
help="A short title for the PPA's web page."
)
# Description
parser.add_argument(
'--description',
dest="description",
action='store',
default=None,
help="A short description of the archive. URLs will be rendered as links. (See also 'ppa desc'.)"
)
# Dependencies
parser.add_argument(
'--ppa-dependencies', '--ppa-depends',
dest="ppa_dependencies", action='store',
help="The set of other PPAs this PPA should use for satisfying build dependencies."
)
# Public/Private access
parser.add_argument(
'--private', '-P',
dest="private",
action='store_true',
help=(
"Restrict access to the PPA to its owner and subscribers. " +
"This can only be changed if the archive has never had any " +
"sources published and the owner/group has permission to do so."
)
)
parser.add_argument(
'--public',
dest="private",
action='store_false',
help="Allow access to the PPA to anyone."
)
# Publishing
parser.add_argument(
'--publish',
dest="publish", action='store_true',
help=("Allow built packages in the PPA to be made available for download.")
)
parser.add_argument(
'--no-publish',
dest="publish", action='store_false',
help=("Do not make packages in the PPA available for download. " +
"They will still be built.")
)
def create_arg_parser() -> argparse.ArgumentParser:
"""Sets up the command line parser object.
:rtype: argparse.ArgumentParser
:returns: parser object, ready to run <parser>.parse_args().
"""
progname = "ppa"
parser = argparse.ArgumentParser(
prog=progname,
description=__doc__,
formatter_class=argparse.RawTextHelpFormatter,
epilog=__example__)
add_global_options(parser)
subparser = parser.add_subparsers(dest='command')
# Create Command
create_parser = subparser.add_parser(
'create',
argument_default=argparse.SUPPRESS,
help='create help',
prog=progname,
)
add_global_options(create_parser)
create_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
help="Name of the PPA to be created")
create_parser.add_argument('--owner-name', '--owner', '--team-name', '--team', metavar='NAME',
action='store',
default=None,
help="Person or team to create PPA under, if not specified via the ppa address (defaults to current LP user)")
add_basic_config_options(create_parser)
# Credentials Command
credentials_parser = subparser.add_parser(
'credentials',
argument_default=argparse.SUPPRESS,
help=(
"Store the Launchpad credentials to a file for manual use. "
f"(Default: '{CREDENTIALS_FILENAME_DEFAULT}')"
),
prog=progname,
)
add_global_options(credentials_parser)
credentials_parser.add_argument(
'ppa_name',
action='store',
nargs='?',
default='me',
help="Name of the PPA (optional)")
# Desc Command
desc_parser = subparser.add_parser(
'desc',
argument_default=argparse.SUPPRESS,
help='desc help',
prog=progname,
)
add_global_options(desc_parser)
desc_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
help="Name of the PPA to describe")
desc_parser.add_argument('description',
nargs=argparse.REMAINDER)
# Destroy Command
destroy_parser = subparser.add_parser(
'destroy',
argument_default=argparse.SUPPRESS,
help='destroy help',
prog=progname,
)
add_global_options(destroy_parser)
destroy_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
help="Name of the PPA to destroy")
# List Command
list_parser = subparser.add_parser(
'list',
argument_default=argparse.SUPPRESS,
help='list help',
prog=progname,
)
add_global_options(list_parser)
list_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
nargs='?', default='me',
help="Name of the PPA to list")
# Set Command
set_parser = subparser.add_parser(
'set',
argument_default=argparse.SUPPRESS,
help='Applies one or more configuration changes to the PPA.',
prog=progname,
)
add_global_options(set_parser)
set_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
help="Name of the PPA to be set config values on")
add_basic_config_options(set_parser)
# Show Command
show_parser = subparser.add_parser(
'show',
argument_default=argparse.SUPPRESS,
help='show help',
prog=progname,
)
add_global_options(show_parser)
show_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
help="Name of the PPA to show")
show_parser.add_argument('-a', '--arches', '--arch', '--architectures',
dest="architectures", action='store',
default=None,
help="Comma-separated list of hardware architectures to show")
show_parser.add_argument('-r', '--releases', '--release',
dest="releases", action='store',
default=None,
help="Comma-separated list of Ubuntu release codenames to show")
show_parser.add_argument('-p', '--packages', '--package',
dest="packages", action='store',
help="Comma-separated list of source package names to show")
# Tests Command
tests_parser = subparser.add_parser(
'tests',
argument_default=argparse.SUPPRESS,
help='tests help',
prog=progname,
)
add_global_options(tests_parser)
tests_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
default=None,
help="Name of the PPA to view tests")
tests_parser.add_argument('-a', '--arches', '--arch', '--architectures',
dest="architectures", action='store',
default=None,
help="Comma-separated list of hardware architectures to include")
tests_parser.add_argument('-r', '--releases', '--release',
dest="releases", action='store',
default=None,
help="Comma-separated list of Ubuntu release codenames to show")
tests_parser.add_argument('-p', '--packages', '--package',
dest="packages", action='store',
default=None,
help="Comma-separated list of source package names to show")
tests_parser.add_argument('-L', '--show-url', '--show-urls',
dest='show_urls', action='store_true',
default=False,
help="Display unformatted trigger action URLs")
tests_parser.add_argument('--show-rdepends',
dest='show_rdepends', action='store_true',
default=False,
help="Display test triggers for reverse dependencies")
# Wait Command
wait_parser = subparser.add_parser(
'wait',
argument_default=argparse.SUPPRESS,
help=(
'Polls status of packages in a PPA until they have all completed source '
'upload, binary building, and source and binary publication.'
),
prog=progname,
)
add_global_options(wait_parser)
wait_parser.add_argument('ppa_name', metavar='ppa-name',
action='store',
help="Name of the PPA to wait on")
wait_parser.add_argument('-l', '--log',
dest="wait_logging", action='store_true',
default=False,
help="Print ongoing status to console (without screen clearing).")
return parser
def create_lp(app_name: str, args: argparse.Namespace) -> Lp:
"""Instantiate the Lp Launchpad Interface object.
Use credentials from the file specified by --credentials , if
provided. If not, next try to use contents from the LP_CREDENTIALS
environment variable. Last, leave creds undefined, and Lp will
handle website login and credentials caching automatically.
:param argparse.Namespace args: Command line arguments.
:rtype: Lp
:returns: Interface object for accessing the launchpad service.
"""
if args.credentials_filename:
with open(args.credentials_filename, 'r') as f:
creds = f.read()
else:
creds = os.getenv("LP_CREDENTIALS")
return Lp(app_name, credentials=creds)
DEFAULT_CONFIG = {
'debug': False,
'ppa_name': None,
'owner_name': None,
'wait_seconds': 10.0
}
def create_config(lp: Lp, args: argparse.Namespace) -> Dict[str, Any]:
"""Creates config object by loading from file and adding args.
This routine merges the command line parameter values with data
loaded from the program's YAML formatted configuration file at
~/.config/ppa-dev-tools/config.yml (or as specified by the --config
parameter).
This permits setting static values in the config file(s), and using
the command line args for variable settings and overrides.
:param launchpadlib.service lp: The Launchpad service object.
:param Namespace args: The parsed args from ArgumentParser.
:rtype: dict
:returns: dict of configuration parameters and values, or None on error
"""
config_path = os.path.expanduser(args.config_filename)
try:
config = load_yaml_as_dict(config_path)
except FileNotFoundError:
# Assume defaults
dbg("Using default config since no config file found at {config_path}")
config = dict(DEFAULT_CONFIG)
except OSError as err:
error(f"Could not open {config_path}: {str(err)}")
return None
except YAMLError as err:
error(f"Invalid config file {config_path}: {str(err)}")
return None
# Map all non-empty elements from argparse Namespace into config dict
config.update({k: v for k, v in vars(args).items() if v is not None})
# Use defaults for any remaining parameters not yet configured
for k, v in DEFAULT_CONFIG.items():
config.setdefault(k, v)
if not hasattr(args, 'ppa_name'):
warn("No ppa name given")
return None
owner_name, ppa_name = ppa_address_split(args.ppa_name)
if owner_name:
# First use the owner if present in the PPA address itself,
# overriding any configured defaults or specified arguments.
config['owner_name'] = owner_name
elif config.get('owner_name'):
# Next use any owner name from config file or cli args.
pass
elif config.get('team_name'):
# Support legacy config term 'team_name' as alias for 'owner_name'
config['owner_name'] = config['team_name']
del config['team_name']
elif lp.me:
# Lastly, fallback to the current Launchpad username, if available.
config['owner_name'] = lp.me.name
else:
warn("No owning person or team identified for the PPA")
return None
if not ppa_name:
raise ValueError("Invalid ppa name '{args.ppa_name}'")
config['ppa_name'] = ppa_name
if args.dry_run:
config['dry_run'] = True
# TODO: Loading the values from the config file will need namespaced,
# so e.g. create.architectures = a,b,c
return config
################
### Commands ###
################
def command_create(lp: Lp, config: Dict[str, str]) -> int:
"""Creates a new PPA in Launchpad.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
# Take description from stdin if it's not a tty
description = config.get('description')
if not description and not sys.stdin.isatty():
description = sys.stdin.read()
ppa_name = config.get('ppa_name')
if not ppa_name:
warn("Could not determine PPA name")
return os.EX_USAGE
owner_name = config.get('owner_name')
if not owner_name:
warn("Could not determine owning person or team LP username")
return os.EX_USAGE
architectures = config.get('architectures', ARCHES_PPA_ALL)
if type(architectures) is str:
architectures = unpack_to_dict(architectures).keys()
try:
if not config.get('dry_run', False):
ppa_group = PpaGroup(service=lp, name=owner_name)
the_ppa = ppa_group.create(
ppa_name,
ppa_description=description,
private=config.get('private', False)
)
the_ppa.set_publish(config.get('publish', None))
if architectures:
the_ppa.set_architectures(architectures)
arch_str = ', '.join(the_ppa.architectures)
if 'ppa_dependencies' in config:
# Split value on comma
ppa_addresses = unpack_to_dict(config.get('ppa_dependencies'))
the_ppa.set_dependencies(ppa_addresses)
else:
the_ppa = Ppa(ppa_name, owner_name, description)
arch_str = ', '.join(architectures)
if not config.get('quiet', False):
print(f"PPA '{the_ppa.ppa_name}' created for the following architectures:\n")
print(f" {arch_str}\n")
print("The PPA can be viewed at:\n")
print(f" {the_ppa.url}\n")
print("You can upload packages to this PPA using:\n")
print(f" dput {the_ppa.address} <source.changes>\n")
print("Wait for the uploads to build and publish using:\n")
credentials_file=config.get('credentials_filename')
if credentials_file:
print(f" ppa --credentials {credentials_file} wait {the_ppa.address}\n")
else:
print(f" ppa wait {the_ppa.address}\n")
print("To add the repository and to your system:\n")
print(f" sudo add-apt-repository -yus {the_ppa.address}")
print(" sudo apt-get install <package(s)>")
return os.EX_OK
except Unauthorized as e:
error(f"Insufficient authorization to create '{ppa_name}' under ownership of '{owner_name}'.")
return os.EX_NOPERM
except KeyError as e:
error(f"No such person or team '{owner_name}'")
return os.EX_NOUSER
except PpaAlreadyExists as e:
warn(o2str(e.message))
return os.EX_CANTCREAT
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_credentials(lp: Lp, config: Dict[str, str]) -> int:
"""Saves login credentials to a file.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
try:
credentials_filename = config.get(
'credentials_filename',
CREDENTIALS_FILENAME_DEFAULT
)
lp.credentials.save_to_path(credentials_filename)
print(f"Launchpad credentials written to {credentials_filename}")
return os.EX_OK
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_desc(lp: Lp, config: Dict[str, str]) -> int:
"""Sets the description for a PPA.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
if not sys.stdin.isatty():
description = sys.stdin.read()
else:
description = ' '.join(config.get('description', None))
if not description or len(description) < 3:
warn('No description provided')
return os.EX_USAGE
try:
the_ppa = get_ppa(lp, config)
if config.get('dry_run', False):
print("dry_run: Set description to '{}'".format(description))
return os.EX_OK
return the_ppa.set_description(description)
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_destroy(lp: Lp, config: Dict[str, str]) -> int:
"""Destroys the PPA.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
try:
the_ppa = get_ppa(lp, config)
if not config.get('dry_run'):
# Attempt deletion of the PPA
the_ppa.destroy()
return os.EX_OK
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_list(lp: Lp, config: Dict[str, str], filter_func=None) -> int:
"""Lists the PPAs for the user or team.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
# TODO: Apply filters such as:
# - Ones with packages for the given arch or codename
# - filter_not_empty: Ones with packages
# - filter_empty: Ones without packages
# - filter_obsolete: Ones with only packages that are superseded
# - filter_newer: Ones newer than a given date
# - filter_older: Ones older than a given date
# - Status of the PPAs
if not lp:
return os.EX_UNAVAILABLE
owner_name = config.get('owner_name')
if not owner_name:
if lp.me:
owner_name = lp.me.name
else:
warn("Could not determine owning person or team name")
return os.EX_USAGE
try:
ppa_group = PpaGroup(service=lp, name=owner_name)
for p in ppa_group.ppas:
print(p.address)
return os.EX_OK
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_exists(lp: Lp, config: Dict[str, str]) -> int:
"""Checks if the named PPA exists in Launchpad.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
try:
the_ppa = get_ppa(lp, config)
if the_ppa.archive is not None:
return os.EX_OK
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
return 1
def command_set(lp: Lp, config: Dict[str, str]) -> int:
"""Sets one or more properties of PPA in Launchpad.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
try:
the_ppa = get_ppa(lp, config)
if 'architectures' in config:
architectures = config['architectures']
if isinstance(architectures, str):
architectures = unpack_to_dict(architectures).keys()
the_ppa.set_architectures(architectures)
if 'description' in config:
the_ppa.archive.description = config['description']
if 'displayname' in config:
the_ppa.archive.displayname = config['displayname']
if 'ppa_dependencies' in config:
# Split value on comma
ppa_addresses = unpack_to_dict(config.get('ppa_dependencies'))
the_ppa.set_dependencies(ppa_addresses)
if 'publish' in config:
the_ppa.archive.publish = config.get('publish')
the_ppa.set_private(config.get('private', None))
return the_ppa.archive.lp_save()
except Unauthorized as e:
if b'private' in e.content:
error(f"Insufficient authorization to change privacy for PPA '{the_ppa.name}'.")
else:
error(f"Insufficient authorization to modify PPA '{the_ppa.name}'.")
return os.EX_NOPERM
except PpaNotFoundError as e:
print(e)
return EX_NOTFOUND
except ValueError as e:
print(f"Error: {e}")
return os.EX_USAGE
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_show(lp: Lp, config: Dict[str, str]) -> int:
"""Displays details about the given PPA.
:param Lp lp: The Launchpad wrapper object.
:param Dict config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
distro = None
series = None
arch = None
try:
the_ppa = get_ppa(lp, config)
print(f"ppa: {the_ppa.name}")
print(f"address: {the_ppa.address}")
print(f"url: {the_ppa.url}")
print("description:")
print(indent(the_ppa.description, 4))
print("sources:")
for source in the_ppa.get_source_publications(distro, series, arch):
print(" %s (%s) %s" % (
source.source_package_name,
source.source_package_version,
source.status))
# Only show binary details if specifically requested
print("binaries:")
total_downloads = 0
for binary in the_ppa.get_binaries(distro, series, arch) or []:
# Skip uninteresting binaries
if not config.get('show-debug', False) and binary.is_debug:
continue
if not config.get('show-superseded', False) and binary.status == 'Superseded':
continue
if not config.get('show-deleted', False) and binary.status == 'Deleted':
continue
if not config.get('show-obsolete', False) and binary.status == 'Obsolete':
continue
print(" %-40s %-8s %s %s %s %6d" % (
binary.binary_package_name + ' ' + binary.binary_package_version,
binary.distro_arch_series.architecture_tag,
binary.component_name,
binary.pocket,
binary.status,
binary.getDownloadCount()))
total_downloads += binary.getDownloadCount()
print("downloads: %d" % (total_downloads))
return os.EX_OK
except PpaNotFoundError as e:
print(e)
return EX_NOTFOUND
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_wait(lp: Lp, config: Dict[str, str]) -> int:
"""Blocks until all package builds are finished.
Polls Launchpad for build (and/or test) status on packages present in
the PPA. Exits only when all packages have completed processing.
This is intended to be used in a workflow where packages are
uploaded to the PPA for building and/or testing, with additional
steps take once the packages have finished processing. The wait
command allows the workflow to pause until the builds and/or tests
have finished.
The exit value of the wait command indicates if the processing was
successful, or if there were one or more failures.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
try:
wait_max_age_hours = config.get('wait_max_age_hours')
created_since_date = None
if wait_max_age_hours:
created_since_date = datetime.datetime.utcnow().replace(
tzinfo=datetime.timezone.utc
) - datetime.timedelta(hours=int(wait_max_age_hours))
name = config.get('name')
the_ppa = get_ppa(lp, config)
waiting = True
bad_request_count = 0
while waiting:
try:
if not the_ppa.has_packages(created_since_date=created_since_date, name=name):
print("Nothing present in PPA. Waiting for new package uploads...")
# TODO: Only wait a configurable amount of time (15 min?)
waiting = True # config['wait_for_packages']
else:
pending_reason = the_ppa.pending_publications(
created_since_date=created_since_date,
name=name,
logging=config.get('wait_logging', False),
)
waiting = bool(pending_reason)
if config.get('exit_on_only_build_failure', False) and all(
x == PendingReason.BUILD_FAILED for x in pending_reason):
# If exiting due to not pending, return ok, else failure
return 100 if pending_reason else os.EX_OK
bad_request_count = 0
except BadRequest as e:
if bad_request_count < 3:
warn("BadRequest from Launchpad. Retrying...")
bad_request_count += 1
else:
error(f"Launchpad failure: {e}")
return os.EX_TEMPFAIL
time.sleep(config['wait_seconds'])
return os.EX_OK
except PpaNotFoundError as e:
print(e)
return EX_NOTFOUND
except ValueError as e:
print(f"Error: {e}")
return os.EX_USAGE
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
def command_tests(lp: Lp, config: Dict[str, str]) -> int:
"""Displays testing status for the PPA.
:param Lp lp: The Launchpad wrapper object.
:param Dict[str, str] config: Configuration param:value map.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not lp:
return os.EX_UNAVAILABLE
apt_repository = None
if config.get("show_rdepends"):
local_dists_path = os.path.join(LOCAL_REPOSITORY_PATH, "dists")
try:
apt_repository = Repository(cache_dir=local_dists_path)
except FileNotFoundError as e:
error(f'Missing checkout\n{LOCAL_REPOSITORY_MIRRORING_DIRECTIONS}: {e}')
return EX_NOTFOUND
releases = config.get('releases', None)
if releases is None:
udi = UbuntuDistroInfo()
releases = udi.supported()
releases.extend(r for r in udi.supported_esm() if r not in releases)
if isinstance(releases, str):
releases = list(unpack_to_dict(releases).keys())
if not isinstance(releases, list):
raise TypeError(f"Parameter releases={releases} not of type list")
packages = config.get('packages', None)
if not packages is None:
if isinstance(packages, str):
packages = list(unpack_to_dict(packages).keys())
if not isinstance(packages, list):
raise TypeError(f"Parameter packages={packages} not of type list")
the_ppa = get_ppa(lp, config)
if not the_ppa.exists():
error(f"PPA {the_ppa.name} does not exist for user {the_ppa.owner_name}")
return EX_NOTFOUND
architectures = config.get('architectures', ARCHES_AUTOPKGTEST)
if isinstance(architectures, str):
architectures = list(unpack_to_dict(architectures).keys())
if not isinstance(architectures, list):
raise TypeError(f"Parameter architectures={architectures} not of type list")
try:
# Triggers
source_pub_triggers = []
for source_pub in the_ppa.get_source_publications():
series = source_pub.distro_series.name
if series not in releases:
continue
pkg = source_pub.source_package_name
if packages and (pkg not in packages):
continue
ver = source_pub.source_package_version
triggers = get_triggers(pkg, ver, the_ppa, series, architectures)
if config.get("show_rdepends"):
# Construct suite object from repository.
# NOTE: If a package has been freshly added to 'proposed' it
# will be missed since we consider only packages present
# in the release pocket.
suite = apt_repository.get_suite(series, 'release')
if not suite:
raise RuntimeError(
f'No suite "{series}" in the local Apt cache'
)
# Lookup rdepends for the package
source_package = suite.sources.get(pkg)
if not source_package:
raise RuntimeError(
f'No source package "{pkg}" in the local Apt cache for "{suite}"'
)
rdepends_source_package_names = suite.dependent_packages(source_package)
for rdep_name in rdepends_source_package_names:
rdep = suite.sources.get(rdep_name)
if not rdep:
raise RuntimeError(
f'Undefined reverse dependency "{rdep_name}"'
)
triggers.extend([
Trigger(pkg, ver, arch, series, the_ppa, rdep.name)
for arch
in architectures
])
source_pub_triggers.append((source_pub, triggers))
# Display triggers
print("* Triggers:")
for source_pub, triggers in source_pub_triggers:
show_triggers(
source_pub.source_package_name,
source_pub.source_package_version,
triggers,
source_pub.status,
show_trigger_urls=config.get("show_urls"),
show_trigger_names=config.get("show_rdepends")
)
# Results
show_results(the_ppa.get_autopkgtest_results(releases, architectures, packages),
config.get('show_urls'))
# Running Queue
show_running(sorted(the_ppa.get_autopkgtest_running(releases, packages),
key=lambda k: str(k.submit_time)))
# Waiting Queue
show_waiting(the_ppa.get_autopkgtest_waiting(releases, packages))
return os.EX_OK
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
print("Unhandled error")
return 1
COMMANDS = {
'create': (command_create, None),
'credentials': (command_credentials, None),
'desc': (command_desc, None),
'destroy': (command_destroy, None),
'list': (command_list, None),
'set': (command_set, None),
'show': (command_show, None),
'tests': (command_tests, None),
'wait': (command_wait, None),
}
def main(args: argparse.Namespace) -> int:
"""Main entrypoint for the command.
:param argparse.Namespace args: Command line arguments.
:rtype: int
:returns: Status code OK (0) on success, non-zero on error.
"""
if not args.command:
error("No command given.")
return os.EX_USAGE
try:
lp = create_lp('ppa-dev-tools', args)
config = create_config(lp, args)
except KeyboardInterrupt:
return EX_KEYBOARD_INTERRUPT
except ValueError as e:
error(e)
return os.EX_CONFIG
if not config:
return os.EX_CONFIG
ppa.debug.DEBUGGING = config.get('debug', False)
dbg("Configuration:")
dbg(config)
command = args.command
try:
func, param = COMMANDS[command]
except KeyError:
parser.error(f"No such command {command}")
return os.EX_USAGE
if param:
return func(lp, config, param)
return func(lp, config)
if __name__ == "__main__":
# Option handling
parser = create_arg_parser()
args = parser.parse_args()
retval = main(args)
if retval == os.EX_USAGE:
print()
parser.print_help()
elif retval == EX_KEYBOARD_INTERRUPT:
sys.stderr.write(" (user interrupt)\n")
sys.exit(retval)
|