week06
This commit is contained in:
54
env/lib/python3.12/site-packages/gitlab/v4/objects/wikis.py
vendored
Normal file
54
env/lib/python3.12/site-packages/gitlab/v4/objects/wikis.py
vendored
Normal file
@ -0,0 +1,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))
|
Reference in New Issue
Block a user