28
28
from canonical.librarian.utils import copy_and_close
29
29
from lp.app.errors import NotFoundError
30
30
from lp.buildmaster.enums import BuildStatus
31
from lp.soyuz.adapters.notification import notify
32
31
from lp.soyuz.adapters.packagelocation import build_package_location
33
32
from lp.soyuz.enums import (
512
511
def do_copy(sources, archive, series, pocket, include_binaries=False,
513
allow_delayed_copies=True, person=None, check_permissions=True,
514
overrides=None, send_email=False):
512
allow_delayed_copies=True, person=None, check_permissions=True):
515
513
"""Perform the complete copy of the given sources incrementally.
517
515
Verifies if each copy can be performed using `CopyChecker` and
536
534
:param person: the requester `IPerson`.
537
535
:param check_permissions: boolean indicating whether or not the
538
536
requester's permissions to copy should be checked.
539
:param overrides: A list of `IOverride` as returned from one of the copy
540
policies which will be used as a manual override insyead of using the
541
default override returned by IArchive.getOverridePolicy(). There
542
must be the same number of overrides as there are sources and each
543
override must be for the corresponding source in the sources list.
544
Overrides will be ignored for delayed copies.
545
:param send_email: Should we notify for the copy performed?
547
538
:raise CannotCopy when one or more copies were not allowed. The error
548
539
will contain the reason why each copy was denied.
579
569
destination_series = series
580
570
if source.delayed:
581
571
delayed_copy = _do_delayed_copy(
582
source, archive, destination_series, pocket,
572
source, archive, destination_series, pocket, include_binaries)
584
573
sub_copies = [delayed_copy]
588
override = overrides[overrides_index]
589
575
sub_copies = _do_direct_copy(
590
source, archive, destination_series, pocket,
591
include_binaries, override)
594
person, source.sourcepackagerelease, [], [], archive,
595
destination_series, pocket, changes=None,
576
source, archive, destination_series, pocket, include_binaries)
599
578
copies.extend(sub_copies)
604
def _do_direct_copy(source, archive, series, pocket, include_binaries,
583
def _do_direct_copy(source, archive, series, pocket, include_binaries):
606
584
"""Copy publishing records to another location.
608
586
Copy each item of the given list of `SourcePackagePublishingHistory`
620
598
:param include_binaries: optional boolean, controls whether or
621
599
not the published binaries for each given source should be also
622
600
copied along with the source.
623
:param override: An `IOverride` as per do_copy().
625
602
:return: a list of `ISourcePackagePublishingHistory` and
626
603
`BinaryPackagePublishingHistory` corresponding to the copied
631
608
# Copy source if it's not yet copied.
609
policy = archive.getOverridePolicy()
632
610
source_in_destination = archive.getPublishedSources(
633
611
name=source.sourcepackagerelease.name, exact_match=True,
634
612
version=source.sourcepackagerelease.version,
635
613
status=active_publishing_status,
636
614
distroseries=series, pocket=pocket)
637
policy = archive.getOverridePolicy()
638
615
if source_in_destination.is_empty():
639
# If no manual overrides were specified and the archive has an
640
# override policy then use that policy to get overrides.
641
if override is None and policy is not None:
642
package_names = (source.sourcepackagerelease.sourcepackagename,)
643
# Only one override can be returned so take the first
644
# element of the returned list.
645
overrides = policy.calculateSourceOverrides(
646
archive, series, pocket, package_names)
647
# Only one override can be returned so take the first
648
# element of the returned list.
649
assert len(overrides) == 1, (
650
"More than one override encountered, something is wrong.")
651
override = overrides[0]
652
source_copy = source.copyTo(series, pocket, archive, override)
616
source_copy = source.copyTo(series, pocket, archive, policy=policy)
653
617
close_bugs_for_sourcepublication(source_copy)
654
618
copies.append(source_copy)