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
|
# Copyright 2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=E0211,E0213
"""PublisherConfig interface."""
__metaclass__ = type
__all__ = [
'IPublisherConfig',
'IPublisherConfigSet',
]
from lazr.restful.fields import Reference
from zope.interface import Interface
from zope.schema import (
Int,
TextLine,
)
from canonical.launchpad import _
from lp.registry.interfaces.distribution import IDistribution
class IPublisherConfig(Interface):
"""`PublisherConfig` interface."""
id = Int(title=_('ID'), required=True, readonly=True)
distribution = Reference(
IDistribution, title=_("Distribution"), required=True,
description=_("The Distribution for this configuration."))
root_dir = TextLine(
title=_("Root Directory"), required=True,
description=_("The root directory for published archives."))
base_url = TextLine(
title=_("Base URL"), required=True,
description=_("The base URL for published archives"))
copy_base_url = TextLine(
title=_("Copy Base URL"), required=True,
description=_("The base URL for published copy archives"))
class IPublisherConfigSet(Interface):
"""`PublisherConfigSet` interface."""
def new(distribution, root_dir, base_url, copy_base_url):
"""Create a new `PublisherConfig`."""
def getByDistribution(distribution):
"""Get the config for a a distribution.
:param distribution: An `IDistribution`
"""
|