week06
This commit is contained in:
69
env/lib/python3.12/site-packages/gitlab/v4/objects/pages.py
vendored
Normal file
69
env/lib/python3.12/site-packages/gitlab/v4/objects/pages.py
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
from typing import Any, cast, Union
|
||||
|
||||
from gitlab.base import RESTManager, RESTObject
|
||||
from gitlab.mixins import (
|
||||
CRUDMixin,
|
||||
DeleteMixin,
|
||||
GetWithoutIdMixin,
|
||||
ListMixin,
|
||||
ObjectDeleteMixin,
|
||||
RefreshMixin,
|
||||
SaveMixin,
|
||||
UpdateMethod,
|
||||
UpdateMixin,
|
||||
)
|
||||
from gitlab.types import RequiredOptional
|
||||
|
||||
__all__ = [
|
||||
"PagesDomain",
|
||||
"PagesDomainManager",
|
||||
"ProjectPagesDomain",
|
||||
"ProjectPagesDomainManager",
|
||||
"ProjectPages",
|
||||
"ProjectPagesManager",
|
||||
]
|
||||
|
||||
|
||||
class PagesDomain(RESTObject):
|
||||
_id_attr = "domain"
|
||||
|
||||
|
||||
class PagesDomainManager(ListMixin, RESTManager):
|
||||
_path = "/pages/domains"
|
||||
_obj_cls = PagesDomain
|
||||
|
||||
|
||||
class ProjectPagesDomain(SaveMixin, ObjectDeleteMixin, RESTObject):
|
||||
_id_attr = "domain"
|
||||
|
||||
|
||||
class ProjectPagesDomainManager(CRUDMixin, RESTManager):
|
||||
_path = "/projects/{project_id}/pages/domains"
|
||||
_obj_cls = ProjectPagesDomain
|
||||
_from_parent_attrs = {"project_id": "id"}
|
||||
_create_attrs = RequiredOptional(
|
||||
required=("domain",), optional=("certificate", "key")
|
||||
)
|
||||
_update_attrs = RequiredOptional(optional=("certificate", "key"))
|
||||
|
||||
def get(
|
||||
self, id: Union[str, int], lazy: bool = False, **kwargs: Any
|
||||
) -> ProjectPagesDomain:
|
||||
return cast(ProjectPagesDomain, super().get(id=id, lazy=lazy, **kwargs))
|
||||
|
||||
|
||||
class ProjectPages(ObjectDeleteMixin, RefreshMixin, RESTObject):
|
||||
_id_attr = None
|
||||
|
||||
|
||||
class ProjectPagesManager(DeleteMixin, UpdateMixin, GetWithoutIdMixin, RESTManager):
|
||||
_path = "/projects/{project_id}/pages"
|
||||
_obj_cls = ProjectPages
|
||||
_from_parent_attrs = {"project_id": "id"}
|
||||
_update_attrs = RequiredOptional(
|
||||
optional=("pages_unique_domain_enabled", "pages_https_only")
|
||||
)
|
||||
_update_method: UpdateMethod = UpdateMethod.PATCH
|
||||
|
||||
def get(self, **kwargs: Any) -> ProjectPages:
|
||||
return cast(ProjectPages, super().get(**kwargs))
|
Reference in New Issue
Block a user