api.models ========== .. py:module:: api.models Attributes ---------- .. autoapisummary:: api.models._DefaultT api.models.log Exceptions ---------- .. autoapisummary:: api.models.ApiException api.models.ApiInvalidParamException Classes ------- .. autoapisummary:: api.models.ApiEndpointItem api.models.ApiEndpoint api.models.ApiEndpointCollection api.models.AuthEndpoint api.models.ApiKey Module Contents --------------- .. py:data:: _DefaultT .. py:data:: log .. py:exception:: ApiException(message: str = 'Internal Server Error', exception: Exception | None = None, status_code: int = 500, headers: dict[str, str] | None = None) Bases: :py:obj:`Exception` Base class for all API exceptions. Mainly used to ensure that all exceptions regarding the API are rendered with the correct content type. .. py:attribute:: message :value: 'Internal Server Error' .. py:attribute:: status_code :value: 500 .. py:attribute:: headers .. py:exception:: ApiInvalidParamException(message: str = 'Invalid Parameter', status_code: int = 400) Bases: :py:obj:`ApiException` Base class for all API exceptions. Mainly used to ensure that all exceptions regarding the API are rendered with the correct content type. .. py:attribute:: message :value: 'Invalid Parameter' .. py:attribute:: status_code :value: 400 .. py:class:: ApiEndpointItem(request: onegov.core.request.CoreRequest, endpoint: str, id: str) Bases: :py:obj:`Generic`\ [\ :py:obj:`onegov.core.collection._M`\ ] A single instance of an item of a specific endpoint. Passes all functionality to the specific API endpoint and is mainly used for routing. .. py:attribute:: request .. py:attribute:: app .. py:attribute:: endpoint .. py:attribute:: id .. py:property:: api_endpoint :type: ApiEndpoint[onegov.core.collection._M] | None .. py:property:: item :type: onegov.core.collection._M | None .. py:property:: data :type: dict[str, Any] | None .. py:property:: links :type: dict[str, Any] | None .. py:method:: form(request: onegov.core.request.CoreRequest) -> onegov.form.Form | None .. py:class:: ApiEndpoint(request: onegov.core.request.CoreRequest, extra_parameters: dict[str, str | None] | None = None, page: int | None = None) Bases: :py:obj:`Generic`\ [\ :py:obj:`onegov.core.collection._M`\ ] An API endpoint. API endpoints wrap collection and do some filter mapping. To add a new endpoint, inherit from this class and provide the missing functions and properties at the bottom. Note that the collection is expected to be to provide the functionality of ``onegov.core.collection.Pagination``. .. py:attribute:: name :type: ClassVar[str] :value: '' .. py:attribute:: endpoint :type: ClassVar[str] :value: '' .. py:attribute:: filters :type: ClassVar[set[str]] .. py:attribute:: form_class :type: ClassVar[type[onegov.form.Form] | None] :value: None .. py:attribute:: request .. py:attribute:: app .. py:attribute:: extra_parameters .. py:attribute:: page :value: None .. py:attribute:: batch_size :value: 100 .. py:method:: for_page(page: int | None) -> Self | None Return a new endpoint instance with the given page while keeping the current filters. .. py:method:: for_filter(**filters: Any) -> Self Return a new endpoint instance with the given filters while discarding the current filters and page. .. py:method:: for_item(item: None) -> None for_item(item: onegov.core.collection._M) -> ApiEndpointItem[onegov.core.collection._M] Return a new endpoint item instance with the given item. .. py:method:: for_item_id(item_id: None) -> None for_item_id(item_id: Any) -> ApiEndpointItem[Any] Return a new endpoint item instance with the given item id. .. py:method:: get_filter(name: str, default: _DefaultT, empty: _EmptyT) -> str | _DefaultT | _EmptyT get_filter(name: str, default: _DefaultT, empty: None = None) -> str | _DefaultT | None get_filter(name: str, default: None = None, *, empty: _EmptyT) -> str | _EmptyT | None get_filter(name: str, default: None = None, empty: None = None) -> str | None Returns the filter value with the given name. .. py:method:: by_id(id: onegov.core.collection.PKType) -> onegov.core.collection._M | None Return the item with the given ID from the collection. .. py:property:: session :type: sqlalchemy.orm.Session .. py:property:: links :type: dict[str, Self | None] Returns a dictionary with pagination instances. .. py:property:: batch :type: dict[ApiEndpointItem[onegov.core.collection._M], onegov.core.collection._M] Returns a dictionary with endpoint item instances and their titles. .. py:method:: item_data(item: onegov.core.collection._M) -> dict[str, Any] :abstractmethod: Return the data properties of the collection item as a dictionary. For example:: { 'name': 'Paul', 'age': 40 } .. py:method:: item_links(item: onegov.core.collection._M) -> dict[str, Any] :abstractmethod: Return the link properties of the collection item as a dictionary. Links can either be string or a linkable object. For example:: { 'website': 'https://onegov.ch', 'friends': FriendsApiEndpoint(app).for_item(paul), 'home': ApiEndpointCollection(app) } .. py:method:: form(item: onegov.core.collection._M | None, request: onegov.core.request.CoreRequest) -> onegov.form.Form | None Return a form for editing items of this collection. .. py:method:: apply_changes(item: onegov.core.collection._M, form: Any) -> None :abstractmethod: Apply the changes to the item based on the given form data. .. py:property:: collection :type: PaginationWithById[onegov.core.collection._M, Any] :abstractmethod: Return an instance of the collection with filters and page set. .. py:method:: assert_valid_filter(param: str) -> None .. py:class:: ApiEndpointCollection(app: onegov.core.Framework) A collection of all available API endpoints. .. py:attribute:: app .. py:property:: endpoints :type: dict[str, type[ApiEndpoint[Any]]] .. py:class:: AuthEndpoint(app: onegov.core.Framework) This is a Dummy, because morepath requires a model for linking. .. py:attribute:: app .. py:class:: ApiKey Bases: :py:obj:`onegov.core.orm.Base` .. py:attribute:: __tablename__ :value: 'api_keys' .. py:attribute:: id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: user_id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: user :type: sqlalchemy.orm.relationship[onegov.user.User] .. py:attribute:: name :type: sqlalchemy.Column[str] .. py:attribute:: read_only :type: sqlalchemy.Column[bool] .. py:attribute:: last_used :type: sqlalchemy.Column[datetime.datetime | None] .. py:attribute:: key :type: sqlalchemy.Column[uuid.UUID]