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
|
from typing import Any, cast, Union
from gitlab.base import RESTManager, RESTObject
from gitlab.mixins import CRUDMixin, ObjectDeleteMixin, SaveMixin, UploadMixin
from gitlab.types import RequiredOptional
__all__ = [
"ProjectWiki",
"ProjectWikiManager",
"GroupWiki",
"GroupWikiManager",
]
class ProjectWiki(SaveMixin, ObjectDeleteMixin, UploadMixin, RESTObject):
_id_attr = "slug"
_repr_attr = "slug"
_upload_path = "/projects/{project_id}/wikis/attachments"
class ProjectWikiManager(CRUDMixin, RESTManager):
_path = "/projects/{project_id}/wikis"
_obj_cls = ProjectWiki
_from_parent_attrs = {"project_id": "id"}
_create_attrs = RequiredOptional(
required=("title", "content"), optional=("format",)
)
_update_attrs = RequiredOptional(optional=("title", "content", "format"))
_list_filters = ("with_content",)
def get(
self, id: Union[str, int], lazy: bool = False, **kwargs: Any
) -> ProjectWiki:
return cast(ProjectWiki, super().get(id=id, lazy=lazy, **kwargs))
class GroupWiki(SaveMixin, ObjectDeleteMixin, UploadMixin, RESTObject):
_id_attr = "slug"
_repr_attr = "slug"
_upload_path = "/groups/{group_id}/wikis/attachments"
class GroupWikiManager(CRUDMixin, RESTManager):
_path = "/groups/{group_id}/wikis"
_obj_cls = GroupWiki
_from_parent_attrs = {"group_id": "id"}
_create_attrs = RequiredOptional(
required=("title", "content"), optional=("format",)
)
_update_attrs = RequiredOptional(optional=("title", "content", "format"))
_list_filters = ("with_content",)
def get(self, id: Union[str, int], lazy: bool = False, **kwargs: Any) -> GroupWiki:
return cast(GroupWiki, super().get(id=id, lazy=lazy, **kwargs))
|