forked from pulp/pulp_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewsets.py
More file actions
170 lines (139 loc) · 6.39 KB
/
Copy pathviewsets.py
File metadata and controls
170 lines (139 loc) · 6.39 KB
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
from drf_yasg.utils import swagger_auto_schema
from rest_framework.decorators import action
from pulpcore.plugin import viewsets as core_viewsets
from pulpcore.plugin.models import RepositoryVersion
from pulpcore.plugin.actions import ModifyRepositoryActionMixin
from pulpcore.plugin.serializers import (
AsyncOperationResponseSerializer,
RepositorySyncURLSerializer,
)
from pulpcore.plugin.tasking import enqueue_with_reservation
from pulp_python.app import models as python_models
from pulp_python.app import serializers as python_serializers
from pulp_python.app import tasks
class PythonRepositoryViewSet(core_viewsets.RepositoryViewSet, ModifyRepositoryActionMixin):
"""
A ViewSet for PythonRepository.
"""
endpoint_name = 'python'
queryset = python_models.PythonRepository.objects.all()
serializer_class = python_serializers.PythonRepositorySerializer
@swagger_auto_schema(
operation_description="Trigger an asynchronous task to sync Python content.",
operation_summary="Sync from remote",
responses={202: AsyncOperationResponseSerializer}
)
@action(detail=True, methods=['post'], serializer_class=RepositorySyncURLSerializer)
def sync(self, request, pk):
"""
<!-- User-facing documentation, rendered as html-->
Trigger an asynchronous task to sync python content. The sync task will retrieve Python
content from the specified `Remote` and " update the specified `Respository`, creating a
new `RepositoryVersion`.
"""
repository = self.get_object()
serializer = RepositorySyncURLSerializer(
data=request.data,
context={'request': request}
)
serializer.is_valid(raise_exception=True)
remote = serializer.validated_data.get('remote')
mirror = serializer.validated_data.get('mirror')
result = enqueue_with_reservation(
tasks.sync,
[repository, remote],
kwargs={
'remote_pk': remote.pk,
'repository_pk': repository.pk,
'mirror': mirror
}
)
return core_viewsets.OperationPostponedResponse(result, request)
class PythonRepositoryVersionViewSet(core_viewsets.RepositoryVersionViewSet):
"""
PythonRepositoryVersion represents a single Python repository version.
"""
parent_viewset = PythonRepositoryViewSet
class PythonDistributionViewSet(core_viewsets.BaseDistributionViewSet):
"""
<!-- User-facing documentation, rendered as html-->
Pulp Python Distributions are used to distribute
<a href="../restapi.html#tag/publications">Python Publications.</a> <b> Pulp Python
Distributions should not be confused with "Python Distribution" as defined by the Python
community.</b> In Pulp usage, Python content is refered to as <a
href="../restapi.html#tag/content">Python Package Content.</a>
"""
endpoint_name = 'pypi'
queryset = python_models.PythonDistribution.objects.all()
serializer_class = python_serializers.PythonDistributionSerializer
class PythonPackageContentFilter(core_viewsets.ContentFilter):
"""
FilterSet for PythonPackageContent.
"""
class Meta:
model = python_models.PythonPackageContent
fields = {
'name': ['exact', 'in'],
'author': ['exact', 'in'],
'packagetype': ['exact', 'in'],
'filename': ['exact', 'in', 'contains'],
'keywords': ['in', 'contains'],
}
class PythonPackageSingleArtifactContentUploadViewSet(
core_viewsets.SingleArtifactContentUploadViewSet):
"""
<!-- User-facing documentation, rendered as html-->
PythonPackageContent represents each individually installable Python package. In the Python
ecosystem, this is called a <i>Python Distribution</i>, sometimes (ambiguously) refered to as a
package. In Pulp Python, we refer to it as <i>PythonPackageContent</i>. Each
PythonPackageContent corresponds to a single filename, for example
`pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`.
"""
endpoint_name = 'packages'
queryset = python_models.PythonPackageContent.objects.all()
serializer_class = python_serializers.PythonPackageContentSerializer
minimal_serializer_class = python_serializers.MinimalPythonPackageContentSerializer
filterset_class = PythonPackageContentFilter
class PythonRemoteViewSet(core_viewsets.RemoteViewSet):
"""
<!-- User-facing documentation, rendered as html-->
Python Remotes are representations of an <b>external repository</b> of Python content, eg.
PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from
upstream repositories, and contains sync settings.
"""
endpoint_name = 'python'
queryset = python_models.PythonRemote.objects.all()
serializer_class = python_serializers.PythonRemoteSerializer
class PythonPublicationViewSet(core_viewsets.PublicationViewSet):
"""
<!-- User-facing documentation, rendered as html-->
Python Publications refer to the Python Package content in a repository version, and include
metadata about that content.
"""
endpoint_name = 'pypi'
queryset = python_models.PythonPublication.objects.all()
serializer_class = python_serializers.PythonPublicationSerializer
@swagger_auto_schema(
operation_description="Trigger an asynchronous task to publish python content.",
responses={202: AsyncOperationResponseSerializer}
)
def create(self, request):
"""
<!-- User-facing documentation, rendered as html-->
Dispatches a publish task, which generates metadata that will be used by pip.
"""
serializer = self.get_serializer(data=request.data)
serializer.is_valid(raise_exception=True)
repository_version = serializer.validated_data.get('repository_version')
# Safe because version OR repository is enforced by serializer.
if not repository_version:
repository = serializer.validated_data.get('repository')
repository_version = RepositoryVersion.latest(repository)
result = enqueue_with_reservation(
tasks.publish,
[repository_version.repository],
kwargs={
'repository_version_pk': repository_version.pk
}
)
return core_viewsets.OperationPostponedResponse(result, request)