-
Notifications
You must be signed in to change notification settings - Fork 676
Expand file tree
/
Copy pathsnippets.py
More file actions
327 lines (278 loc) · 10.3 KB
/
snippets.py
File metadata and controls
327 lines (278 loc) · 10.3 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
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
from __future__ import annotations
from typing import Any, Callable, Iterator, Literal, overload, TYPE_CHECKING
import requests
from gitlab import cli
from gitlab import exceptions as exc
from gitlab import utils
from gitlab.base import RESTObject, RESTObjectList
from gitlab.mixins import CRUDMixin, ObjectDeleteMixin, SaveMixin, UserAgentDetailMixin
from gitlab.types import RequiredOptional
from .award_emojis import ProjectSnippetAwardEmojiManager # noqa: F401
from .discussions import ProjectSnippetDiscussionManager # noqa: F401
from .notes import ProjectSnippetNoteManager # noqa: F401
__all__ = ["Snippet", "SnippetManager", "ProjectSnippet", "ProjectSnippetManager"]
class Snippet(UserAgentDetailMixin, SaveMixin, ObjectDeleteMixin, RESTObject):
_repr_attr = "title"
@overload
def content(
self,
streamed: Literal[False] = False,
action: None = None,
chunk_size: int = 1024,
*,
iterator: Literal[False] = False,
**kwargs: Any,
) -> bytes: ...
@overload
def content(
self,
streamed: bool = False,
action: None = None,
chunk_size: int = 1024,
*,
iterator: Literal[True] = True,
**kwargs: Any,
) -> Iterator[Any]: ...
@overload
def content(
self,
streamed: Literal[True] = True,
action: Callable[[bytes], Any] | None = None,
chunk_size: int = 1024,
*,
iterator: Literal[False] = False,
**kwargs: Any,
) -> None: ...
@cli.register_custom_action(cls_names="Snippet")
@exc.on_http_error(exc.GitlabGetError)
def content(
self,
streamed: bool = False,
action: Callable[..., Any] | None = None,
chunk_size: int = 1024,
*,
iterator: bool = False,
**kwargs: Any,
) -> bytes | Iterator[Any] | None:
"""Return the content of a snippet.
Args:
streamed: If True the data will be processed by chunks of
`chunk_size` and each chunk is passed to `action` for
treatment.
iterator: If True directly return the underlying response
iterator
action: Callable responsible of dealing with chunk of
data
chunk_size: Size of each chunk
**kwargs: Extra options to send to the server (e.g. sudo)
Raises:
GitlabAuthenticationError: If authentication is not correct
GitlabGetError: If the content could not be retrieved
Returns:
The snippet content
"""
path = f"/snippets/{self.encoded_id}/raw"
result = self.manager.gitlab.http_get(
path, streamed=streamed, raw=True, **kwargs
)
if TYPE_CHECKING:
assert isinstance(result, requests.Response)
return utils.response_content(
result, streamed, action, chunk_size, iterator=iterator
)
class SnippetManager(CRUDMixin[Snippet]):
_path = "/snippets"
_obj_cls = Snippet
_create_attrs = RequiredOptional(
required=("title",),
exclusive=("files", "file_name"),
optional=("description", "content", "visibility"),
)
_update_attrs = RequiredOptional(
optional=("title", "files", "file_name", "content", "visibility", "description")
)
@overload
def list_public(
self, *, iterator: Literal[False] = False, **kwargs: Any
) -> list[Snippet]: ...
@overload
def list_public(
self, *, iterator: Literal[True] = True, **kwargs: Any
) -> RESTObjectList[Snippet]: ...
@overload
def list_public(
self, *, iterator: bool = False, **kwargs: Any
) -> RESTObjectList[Snippet] | list[Snippet]: ...
@cli.register_custom_action(cls_names="SnippetManager")
def list_public(
self, *, iterator: bool = False, **kwargs: Any
) -> RESTObjectList[Snippet] | list[Snippet]:
"""List all public snippets.
Args:
get_all: If True, return all the items, without pagination
per_page: Number of items to retrieve per request
page: ID of the page to return (starts with page 1)
iterator: If set to True and no pagination option is
defined, return a generator instead of a list
**kwargs: Extra options to send to the server (e.g. sudo)
Raises:
GitlabListError: If the list could not be retrieved
Returns:
The list of snippets, or a generator if `iterator` is True
"""
return self.list(path="/snippets/public", iterator=iterator, **kwargs)
@overload
def list_all(
self, *, iterator: Literal[False] = False, **kwargs: Any
) -> list[Snippet]: ...
@overload
def list_all(
self, *, iterator: Literal[True] = True, **kwargs: Any
) -> RESTObjectList[Snippet]: ...
@overload
def list_all(
self, *, iterator: bool = False, **kwargs: Any
) -> RESTObjectList[Snippet] | list[Snippet]: ...
@cli.register_custom_action(cls_names="SnippetManager")
def list_all(
self, *, iterator: bool = False, **kwargs: Any
) -> RESTObjectList[Snippet] | list[Snippet]:
"""List all snippets.
Args:
get_all: If True, return all the items, without pagination
per_page: Number of items to retrieve per request
page: ID of the page to return (starts with page 1)
iterator: If set to True and no pagination option is
defined, return a generator instead of a list
**kwargs: Extra options to send to the server (e.g. sudo)
Raises:
GitlabListError: If the list could not be retrieved
Returns:
A generator for the snippets list
"""
return self.list(path="/snippets/all", iterator=iterator, **kwargs)
@overload
def public(
self,
*,
iterator: Literal[False] = False,
page: int | None = None,
**kwargs: Any,
) -> list[Snippet]: ...
@overload
def public(
self, *, iterator: Literal[True] = True, **kwargs: Any
) -> RESTObjectList[Snippet]: ...
@overload
def public(
self, *, iterator: bool = False, **kwargs: Any
) -> RESTObjectList[Snippet] | list[Snippet]: ...
def public(
self, *, iterator: bool = False, **kwargs: Any
) -> RESTObjectList[Snippet] | list[Snippet]:
"""List all public snippets.
Args:
get_all: If True, return all the items, without pagination
per_page: Number of items to retrieve per request
page: ID of the page to return (starts with page 1)
iterator: If set to True and no pagination option is
defined, return a generator instead of a list
**kwargs: Extra options to send to the server (e.g. sudo)
Raises:
GitlabListError: If the list could not be retrieved
Returns:
The list of snippets, or a generator if `iterator` is True
"""
utils.warn(
message=(
"Gitlab.snippets.public() is deprecated and will be removed in a "
"future major version. Use Gitlab.snippets.list_public() instead."
),
category=DeprecationWarning,
)
return self.list(path="/snippets/public", iterator=iterator, **kwargs)
class ProjectSnippet(UserAgentDetailMixin, SaveMixin, ObjectDeleteMixin, RESTObject):
_url = "/projects/{project_id}/snippets"
_repr_attr = "title"
awardemojis: ProjectSnippetAwardEmojiManager
discussions: ProjectSnippetDiscussionManager
notes: ProjectSnippetNoteManager
@overload
def content(
self,
streamed: Literal[False] = False,
action: None = None,
chunk_size: int = 1024,
*,
iterator: Literal[False] = False,
**kwargs: Any,
) -> bytes: ...
@overload
def content(
self,
streamed: bool = False,
action: None = None,
chunk_size: int = 1024,
*,
iterator: Literal[True] = True,
**kwargs: Any,
) -> Iterator[Any]: ...
@overload
def content(
self,
streamed: Literal[True] = True,
action: Callable[[bytes], Any] | None = None,
chunk_size: int = 1024,
*,
iterator: Literal[False] = False,
**kwargs: Any,
) -> None: ...
@cli.register_custom_action(cls_names="ProjectSnippet")
@exc.on_http_error(exc.GitlabGetError)
def content(
self,
streamed: bool = False,
action: Callable[..., Any] | None = None,
chunk_size: int = 1024,
*,
iterator: bool = False,
**kwargs: Any,
) -> bytes | Iterator[Any] | None:
"""Return the content of a snippet.
Args:
streamed: If True the data will be processed by chunks of
`chunk_size` and each chunk is passed to `action` for
treatment.
iterator: If True directly return the underlying response
iterator
action: Callable responsible of dealing with chunk of
data
chunk_size: Size of each chunk
**kwargs: Extra options to send to the server (e.g. sudo)
Raises:
GitlabAuthenticationError: If authentication is not correct
GitlabGetError: If the content could not be retrieved
Returns:
The snippet content
"""
path = f"{self.manager.path}/{self.encoded_id}/raw"
result = self.manager.gitlab.http_get(
path, streamed=streamed, raw=True, **kwargs
)
if TYPE_CHECKING:
assert isinstance(result, requests.Response)
return utils.response_content(
result, streamed, action, chunk_size, iterator=iterator
)
class ProjectSnippetManager(CRUDMixin[ProjectSnippet]):
_path = "/projects/{project_id}/snippets"
_obj_cls = ProjectSnippet
_from_parent_attrs = {"project_id": "id"}
_create_attrs = RequiredOptional(
required=("title", "visibility"),
exclusive=("files", "file_name"),
optional=("description", "content"),
)
_update_attrs = RequiredOptional(
optional=("title", "files", "file_name", "content", "visibility", "description")
)