event.collections.events ======================== .. py:module:: event.collections.events Classes ------- .. autoapisummary:: event.collections.events.EventImportItem event.collections.events.EventCollection Module Contents --------------- .. py:class:: EventImportItem Bases: :py:obj:`NamedTuple` .. py:attribute:: event :type: onegov.event.models.Event .. py:attribute:: image :type: IO[bytes] | None .. py:attribute:: image_filename :type: str | None .. py:attribute:: pdf :type: IO[bytes] | None .. py:attribute:: pdf_filename :type: str | None .. py:class:: EventCollection(session: sqlalchemy.orm.Session, page: int = 0, state: onegov.event.models.event.EventState | None = None) Bases: :py:obj:`onegov.core.collection.Pagination`\ [\ :py:obj:`onegov.event.models.Event`\ ] Manage a list of events. .. py:attribute:: session .. py:attribute:: state :value: None .. py:method:: __eq__(other: object) -> bool 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[onegov.event.models.Event] Returns an SQLAlchemy query containing all records that should be considered for pagination. .. py:property:: page_index :type: int Returns the current page index (starting at 0). .. py:method:: page_by_index(index: int) -> Self Returns the page at the given index. A page here means an instance of the class inheriting from the ``Pagination`` base class. .. py:method:: for_state(state: onegov.event.models.event.EventState | None) -> Self Returns a new instance of the collection with the given state. .. py:method:: query() -> sqlalchemy.orm.Query[onegov.event.models.Event] .. py:method:: _get_unique_name(name: str) -> str Create a unique, URL-friendly name. .. py:method:: add(title: str, start: datetime.datetime, end: datetime.datetime, timezone: str, autoclean: bool = True, **optional: Any) -> onegov.event.models.Event Add a new event. A unique, URL-friendly name is created automatically for this event using the title and optionally numbers for duplicate names. Every time a new event is added, old, stale events are deleted unless disabled with the ``autoclean`` option. Returns the created event or None if already automatically deleted. .. py:method:: delete(event: onegov.event.models.Event) -> None Delete an event. .. py:method:: remove_stale_events(max_stale: datetime.datetime | None = None) -> None Remove events which have never been submitted and are created more than five days ago. .. py:method:: by_name(name: str) -> onegov.event.models.Event | None Returns an event by its URL-friendly name. .. py:method:: by_id(id: uuid.UUID) -> onegov.event.models.Event | None Return an event by its id. Hex representations work as well. .. py:method:: from_import(items: collections.abc.Iterable[EventImportItem | str], purge: str | None = None, publish_immediately: bool = True, valid_state_transfers: collections.abc.Mapping[str, str] | None = None, published_only: bool = False, future_events_only: bool = False) -> tuple[list[onegov.event.models.Event], list[onegov.event.models.Event], list[uuid.UUID]] Add or updates the given events. Only updates events which have changed. Uses ``Event.source_updated`` if available, falls back to comparing all relevant attributes. Doesn't change the states of events allowing to permanently withdraw imported events. :param items: A list of ``EventImportItem``'s or event sources to keep from purging. :param purge: Optionally removes all events with the given meta-source-prefix not present in the given events. :param publish_immediately: Set newly added events to published, else let them be initiated. :param valid_state_transfers: Dict of existing : remote state should be considered when updating. Example: {'published': 'withdrawn'} would update locally published events if the remote has been withdrawn. for any {'valid_state': 'withdrawn'} that lead to an update of the local state, an existing ticket will be close automatically. Be aware, that transferring state and creating tickets might lead to inconsistencies. So adjust the script in that case to handle the tickets automatically. :param published_only: Do not import unpublished events. Still do not ignore state like withdrawn. :param future_events_only: If set only events in the future will be imported .. py:method:: from_ical(ical: str, future_events_only: bool = False, event_image: IO[bytes] | None = None, event_image_name: str | None = None, default_categories: list[str] | None = None, default_filter_keywords: dict[str, list[str]] | None = None) -> tuple[list[onegov.event.models.Event], list[onegov.event.models.Event], list[uuid.UUID]] Imports the events from an iCalender string. We assume the timezone to be Europe/Zurich! :param ical: ical to be imported :type ical: str :param future_events_only: if set only events in the future will be imported :type future_events_only: bool :param event_image: image file :param event_image_name: image name :type event_image_name: str :param default_categories: categories applied if non is given in ical :type default_categories: [str] :param default_filter_keywords: default filter keywords, see event filter settings app.org.event_filter_type :type default_filter_keywords: dict(str, [str] | None) .. py:method:: as_anthrazit_xml(request: onegov.core.request.CoreRequest, future_events_only: bool = True) -> str Returns all published occurrences as xml for Winterthur. Anthrazit format according https://doc.anthrazit.org/ext/XML_Schnittstelle:: 01 Titel der Seite 2-3 Sätze des Text Feldes packed in CDATA 2011-08-06 00:00:00 2011-08-06 23:59:00 ... url bild tag_1 tag_2 Veranstaltungspreis packed in CDATA ... ... :param future_events_only: if set, only future events will be returned, all events otherwise :rtype: str :return: xml string