core.collection =============== .. py:module:: core.collection Attributes ---------- .. autoapisummary:: core.collection.PKType core.collection._M Classes ------- .. autoapisummary:: core.collection.GenericCollection core.collection.SearcheableCollection core.collection.Pagination core.collection.RangedPagination Module Contents --------------- .. py:data:: PKType .. py:data:: _M .. py:class:: GenericCollection(session: sqlalchemy.orm.Session, **kwargs: Any) Bases: :py:obj:`Generic`\ [\ :py:obj:`_M`\ ] Abstract base class for generic types. A generic type is typically declared by inheriting from this class parameterized with one or more type variables. For example, a generic mapping type might be defined as:: class Mapping(Generic[KT, VT]): def __getitem__(self, key: KT) -> VT: ... # Etc. This class can then be used as follows:: def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: try: return mapping[key] except KeyError: return default .. py:attribute:: session .. py:property:: model_class :type: type[_M] :abstractmethod: .. py:property:: primary_key :type: sqlalchemy.Column[str] | sqlalchemy.Column[uuid.UUID] | sqlalchemy.Column[int] .. py:method:: query() -> sqlalchemy.orm.Query[_M] .. py:method:: by_id(id: PKType) -> _M | None .. py:method:: by_ids(ids: collections.abc.Collection[PKType]) -> list[_M] .. py:method:: add(**kwargs: Any) -> _M .. py:method:: add_by_form(form: _FormThatSupportsGetUsefulData, properties: collections.abc.Iterable[str] | None = None) -> _M .. py:method:: delete(item: _M) -> None .. py:class:: SearcheableCollection(session: sqlalchemy.orm.Session, **kwargs: Any) Bases: :py:obj:`GenericCollection`\ [\ :py:obj:`_M`\ ] Requires a self.locale and self.term .. py:method:: match_term(column: sqlalchemy.Column[str] | sqlalchemy.Column[str | None], language: str, term: str) -> sqlalchemy.sql.elements.ClauseElement :staticmethod: Usage: model.filter(match_term(model.col, 'german', 'my search term')) .. py:method:: term_to_tsquery_string(term: str) -> str :staticmethod: Returns the current search term transformed to use within Postgres ``to_tsquery`` function. Removes all unwanted characters, replaces prefix matching, joins word together using FOLLOWED BY. .. py:method:: filter_text_by_locale(column: sqlalchemy.Column[str] | sqlalchemy.Column[str | None], term: str, locale: str | None = None) -> sqlalchemy.sql.elements.ClauseElement Returns an SqlAlchemy filter statement based on the search term. If no locale is provided, it will use english as language. ``to_tsquery`` creates a tsquery value from term, which must consist of single tokens separated by the Boolean operators & (AND), | (OR) and ! (NOT). ``to_tsvector`` parses a textual document into tokens, reduces the tokens to lexemes, and returns a tsvector which lists the lexemes together with their positions in the document. The document is processed according to the specified or default text search configuration. .. py:property:: locale :type: str :abstractmethod: .. py:property:: term_filter :type: collections.abc.Iterator[sqlalchemy.sql.elements.ClauseElement] .. py:method:: query() -> sqlalchemy.orm.Query[_M] .. py:class:: Pagination(page: int = 0) Bases: :py:obj:`Generic`\ [\ :py:obj:`_M`\ ] Provides collections with pagination, if they implement a few documented properties and methods. See :class:`onegov.ticket.TicketCollection` for an example. .. py:attribute:: batch_size :value: 10 .. py:attribute:: page :value: 0 .. py:method:: __eq__(other: object) -> bool :abstractmethod: Returns True if the current and the other Pagination instance are equal. Used to find the current page in a list of pages. .. py:method:: subset() -> sqlalchemy.orm.Query[_M] :abstractmethod: Returns an SQLAlchemy query containing all records that should be considered for pagination. .. py:property:: cached_subset :type: sqlalchemy.orm.Query[_M] .. py:property:: page_index :type: int :abstractmethod: Returns the current page index (starting at 0). .. py:method:: page_by_index(index: int) -> Self :abstractmethod: Returns the page at the given index. A page here means an instance of the class inheriting from the ``Pagination`` base class. .. py:method:: transform_batch_query(query: sqlalchemy.orm.Query[_M]) -> sqlalchemy.orm.Query[_M] Allows subclasses to transform the given query before it is used to retrieve the batch. This is a good place to add additional loading that should only apply to the batch (say joining other values to the batch which are then not loaded by the whole query). .. py:property:: subset_count :type: int Returns the total number of elements this pagination represents. .. py:property:: batch :type: tuple[_M, Ellipsis] Returns the elements on the current page. .. py:property:: offset :type: int Returns the offset applied to the current subset. .. py:property:: pages_count :type: int Returns the number of pages. .. py:property:: name_of_view :type: str The name of the view to link to. If omitted, the the default view is looked up.. .. py:property:: pages :type: collections.abc.Iterator[Self] Yields all page objects of this Pagination. .. py:property:: previous :type: Self | None Returns the previous page or None. .. py:property:: next :type: Self | None Returns the next page or None. .. py:class:: RangedPagination Bases: :py:obj:`Generic`\ [\ :py:obj:`_M`\ ] Provides a pagination that supports loading multiple pages at once. This is useful in a context where a single button is used to 'load more' results one by one. In this case we need an URL that represents what's happening on the screen (multiple pages are shown at the same time). .. py:attribute:: batch_size :value: 20 .. py:attribute:: range_limit :value: 5 .. py:method:: subset() -> sqlalchemy.orm.Query[_M] :abstractmethod: Returns an SQLAlchemy query containing all records that should be considered for pagination. .. py:property:: cached_subset :type: sqlalchemy.orm.Query[_M] .. py:property:: page_range :type: tuple[int, int] :abstractmethod: Returns the current page range (starting at (0, 0)). .. py:method:: by_page_range(page_range: tuple[int, int]) -> Self :abstractmethod: Returns an instance of the collection limited to the given page range. .. py:method:: limit_range(page_range: collections.abc.Sequence[int] | None, direction: Literal['up', 'down']) -> tuple[int, int] Limits the range to the range limit in the given direction. For example, 0-99 will be limited to 89-99 with a limit of 10 and 'up'. With 'down' it will be limited to 0-9. .. py:method:: transform_batch_query(query: sqlalchemy.orm.Query[_M]) -> sqlalchemy.orm.Query[_M] Allows subclasses to transform the given query before it is used to retrieve the batch. This is a good place to add additional loading that should only apply to the batch (say joining other values to the batch which are then not loaded by the whole query). .. py:property:: subset_count :type: int Returns the total number of elements this pagination represents. .. py:property:: batch :type: tuple[_M, Ellipsis] Returns the elements on the current page range. .. py:property:: pages_count :type: int Returns the number of pages. .. py:property:: previous :type: Self | None Returns the previous page or None. .. py:property:: next :type: Self | None Returns the next page range or None.