org.models.file =============== .. py:module:: org.models.file .. autoapi-nested-parse:: Contains the models describing files and images. Attributes ---------- .. autoapisummary:: org.models.file._T org.models.file.FileT Classes ------- .. autoapisummary:: org.models.file.DateInterval org.models.file.GroupFilesByDateMixin org.models.file.GeneralFile org.models.file.ImageFile org.models.file.ImageSet org.models.file.ImageSetCollection org.models.file.GeneralFileCollection org.models.file.BaseImageFileCollection org.models.file.ImageFileCollection Module Contents --------------- .. py:data:: _T .. py:data:: FileT .. py:class:: DateInterval Bases: :py:obj:`NamedTuple` .. py:attribute:: name :type: str .. py:attribute:: start :type: datetime.datetime .. py:attribute:: end :type: datetime.datetime .. py:class:: GroupFilesByDateMixin Bases: :py:obj:`Generic`\ [\ :py:obj:`FileT`\ ] 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:method:: query() -> sqlalchemy.orm.Query[FileT] .. py:method:: get_date_intervals(today: datetime.datetime) -> collections.abc.Iterator[DateInterval] .. py:method:: query_intervals(intervals: collections.abc.Iterable[DateInterval], before_filter: collections.abc.Callable[[sqlalchemy.orm.Query[FileT]], sqlalchemy.orm.Query[_RowT]], process: collections.abc.Callable[[_RowT], _T]) -> collections.abc.Iterator[tuple[str, _T]] query_intervals(intervals: collections.abc.Iterable[DateInterval], before_filter: None, process: collections.abc.Callable[[FileT], _T]) -> collections.abc.Iterator[tuple[str, _T]] query_intervals(intervals: collections.abc.Iterable[DateInterval], before_filter: None = None, *, process: collections.abc.Callable[[FileT], _T]) -> collections.abc.Iterator[tuple[str, _T]] query_intervals(intervals: collections.abc.Iterable[DateInterval], before_filter: collections.abc.Callable[[sqlalchemy.orm.Query[FileT]], sqlalchemy.orm.Query[Any]] | None = None, process: None = None) -> collections.abc.Iterator[tuple[str, Any]] .. py:method:: grouped_by_date(today: datetime.datetime | None = None, id_only: Literal[True] = True) -> itertools.groupby[str, tuple[str, str]] grouped_by_date(today: datetime.datetime | None, id_only: Literal[False]) -> itertools.groupby[str, tuple[str, FileT]] grouped_by_date(today: datetime.datetime | None = None, *, id_only: Literal[False]) -> itertools.groupby[str, tuple[str, FileT]] Returns all files grouped by natural language dates. By default, only ids are returned, as this is enough to build the necessary links, which is what you usually want from a file. The given date is expected to be in UTC. .. py:class:: GeneralFile Bases: :py:obj:`onegov.file.File`, :py:obj:`onegov.file.SearchableFile` A general file (image, document, pdf, etc), referenced in the database. Thanks to the use of `Depot `_ files can be seemingly stored in the database (with transaction guarantees), without actually storing it in the database. .. py:attribute:: __mapper_args__ .. py:attribute:: linked_accesses :type: onegov.core.orm.mixins.dict_property[dict[str, str]] .. py:property:: access :type: str .. py:property:: es_public :type: bool Returns True if the model is available to be found by the public. If false, only editors/admins will see this object in the search results. .. py:class:: ImageFile Bases: :py:obj:`onegov.file.File` A general file (image, document, pdf, etc), referenced in the database. Thanks to the use of `Depot `_ files can be seemingly stored in the database (with transaction guarantees), without actually storing it in the database. .. py:attribute:: __mapper_args__ .. py:class:: ImageSet Bases: :py:obj:`onegov.file.FileSet`, :py:obj:`onegov.org.models.extensions.AccessExtension`, :py:obj:`onegov.search.ORMSearchable` A set of files that belong together. Each file may be part of none, one or many sets. Each set may containe none, one or many files. The fileset uses uuids for public urls instead of a readable url-safe name, because files are meant to be always public with an unguessable url, and so the filesets containing files must also have the same property. Otherwise we might not be able to guess the name the of the file, but we will be able to guess the name of a fileset containing files. .. py:attribute:: __mapper_args__ .. py:attribute:: es_properties Returns the type mapping of this model. Each property in the mapping will be read from the model instance. The returned object needs to be a dict or an object that provides a ``to_dict`` method. Internally, onegov.search stores differing languages in different indices. It does this automatically through langauge detection, or by manually specifying a language. Note that objects with multiple languages are not supported (each object is supposed to have exactly one language). Onegov.search will automatically insert the right analyzer for types like these. There's currently only limited support for properties here, namely objects and nested mappings do not work! This is going to be added in the future though. .. py:property:: es_public :type: bool Returns True if the model is available to be found by the public. If false, only editors/admins will see this object in the search results. .. py:property:: es_suggestions :type: dict[str, list[str]] .. py:attribute:: lead :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: view :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: order :type: onegov.core.orm.mixins.dict_property[str] .. py:attribute:: order_direction :type: onegov.core.orm.mixins.dict_property[str] .. py:attribute:: show_images_on_homepage :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:property:: ordered_files :type: list[onegov.file.File] .. py:class:: ImageSetCollection(session: sqlalchemy.orm.Session) Bases: :py:obj:`onegov.file.FileSetCollection`\ [\ :py:obj:`ImageSet`\ ] Manages filesets. .. py:class:: GeneralFileCollection(session: sqlalchemy.orm.Session, order_by: str = 'name') Bases: :py:obj:`onegov.file.FileCollection`\ [\ :py:obj:`GeneralFile`\ ], :py:obj:`GroupFilesByDateMixin`\ [\ :py:obj:`GeneralFile`\ ] Manages files. :param session: The SQLAlchemy db session to use. :param type: The polymorphic type to use and to filter for, or '*' for all. :param allow_duplicates: Prevents duplicates if set to false. Duplicates are detected before pre-processing, so already stored files may be downloaded and added again, as they might have changed during the upload. Note that this does not change existing files. It only prevents new duplicates from being added. .. py:attribute:: supported_content_types :value: 'all' .. py:attribute:: file_list .. py:attribute:: order_by :value: 'name' .. py:attribute:: direction .. py:attribute:: _last_interval :type: DateInterval | None :value: None .. py:method:: for_order(order: str) -> Self .. py:property:: intervals :type: tuple[DateInterval, Ellipsis] .. py:property:: statement :type: sqlalchemy.sql.Select .. py:property:: files :type: sqlalchemy.orm.Query[FileRow] .. py:method:: group(record: FileRow) -> str .. py:class:: BaseImageFileCollection(session: sqlalchemy.orm.Session, type: Literal['*', 'generic'] = '*', allow_duplicates: bool = True) BaseImageFileCollection(session: sqlalchemy.orm.Session, type: str, allow_duplicates: bool = True) Bases: :py:obj:`onegov.file.FileCollection`\ [\ :py:obj:`FileT`\ ], :py:obj:`GroupFilesByDateMixin`\ [\ :py:obj:`FileT`\ ] Manages files. :param session: The SQLAlchemy db session to use. :param type: The polymorphic type to use and to filter for, or '*' for all. :param allow_duplicates: Prevents duplicates if set to false. Duplicates are detected before pre-processing, so already stored files may be downloaded and added again, as they might have changed during the upload. Note that this does not change existing files. It only prevents new duplicates from being added. .. py:attribute:: supported_content_types .. py:class:: ImageFileCollection(session: sqlalchemy.orm.Session) Bases: :py:obj:`BaseImageFileCollection`\ [\ :py:obj:`ImageFile`\ ] Manages files. :param session: The SQLAlchemy db session to use. :param type: The polymorphic type to use and to filter for, or '*' for all. :param allow_duplicates: Prevents duplicates if set to false. Duplicates are detected before pre-processing, so already stored files may be downloaded and added again, as they might have changed during the upload. Note that this does not change existing files. It only prevents new duplicates from being added.