ticket.handler ============== .. py:module:: ticket.handler Attributes ---------- .. autoapisummary:: ticket.handler._LinkOrCallback ticket.handler._H ticket.handler._Q Classes ------- .. autoapisummary:: ticket.handler.Handler ticket.handler.HandlerRegistry Module Contents --------------- .. py:type:: _LinkOrCallback :canonical: tuple[str, str] | Callable[[CoreRequest], str] .. py:data:: _H .. py:data:: _Q .. py:class:: Handler(ticket: onegov.ticket.model.Ticket, handler_id: uuid.UUID | str, handler_data: dict[str, Any]) Defines a generic handler, responsible for a subset of the tickets. onegov.ticket is meant to be a rather generic bucket of tickets, to which varying modules submit tickets with varying content and different actionables. Each module wanting to submit tickets needs to implement a handler with a unique id and a unique short code. The short code is added in front of the ticket number. Tickets submitted to the database are shown in a list, without handler involvement. When a ticket is displayed, the handler is called with whatever data the handler supplied during ticket submission. The handler then uses the handler data to access whatever data it needs to display a summary as well as links to certain actions (possibly a link to the original item, links that change the state of the ticket as well as the data associated with the handler, etc.). .. py:attribute:: ticket .. py:attribute:: id .. py:attribute:: data .. py:property:: session :type: sqlalchemy.orm.Session .. py:method:: refresh() -> None Updates the current ticket with the latest data from the handler. .. py:property:: email :type: str | None :abstractmethod: Returns the email address behind the ticket request. .. py:property:: submitter_name :type: str | None Returns the name of the submitter .. py:property:: submitter_address :type: str | None Returns the address of the submitter .. py:property:: submitter_phone :type: str | None Returns the phone of the submitter .. py:property:: title :type: str :abstractmethod: Returns the title of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: subtitle :type: str | None :abstractmethod: Returns the subtitle of the ticket. If this title may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: group :type: str | None :abstractmethod: Returns the group of the ticket. If this group may change over time, the handler must call :meth:`self.refresh` when there's a change. .. py:property:: deleted :type: bool :abstractmethod: Returns true if the underlying model was deleted. It is best to never let that happen, as we want tickets to stay around forever. However, this can make sense in certain scenarios. Note that if you do delete your underlying model, make sure to call :meth:`onegov.ticket.models.Ticket.create_snapshot` beforehand! .. py:property:: extra_data :type: collections.abc.Sequence[str] An array of string values which are indexed in elasticsearch when the ticket is stored there. .. py:property:: payment :type: onegov.pay.Payment | None An optional link to a onegov.pay payment record. .. py:property:: undecided :type: bool Returns true if there has been no decision about the subject of this handler. For example, if a reservation ticket has been accepted, but the reservation has been neither confirmed nor cancelled, the ticket can be seen as undecided. This is an optional flag that may be implemented by handlers. If a ticket is undecided, the UI might show a special icon and it might warn the user if he closes the ticket without making a decision. By default, the ticket is assumed to be decided for backwards compatibility and for tickets where this does not make sense (a simple form submission may not have any way of knowing if there has been a decision or not). .. py:method:: handle_extra_parameters(session: sqlalchemy.orm.Session, query: _Q, extra_parameters: dict[str, Any]) -> _Q :classmethod: Takes a dictionary of extra parameters and uses it to optionally modifiy the query used for the collection. Use this to add handler-defined custom filters with extra query parameters. Only called if the collection is already limited to the given handler. If all handlers are shown in the collection, this method is not called. If no extra paramaters were given, this method is *not* called. Returns the modified or unmodified query. .. py:method:: get_summary(request: onegov.core.request.CoreRequest) -> markupsafe.Markup :abstractmethod: Returns the summary of the current ticket as a html string. .. py:method:: get_links(request: onegov.core.request.CoreRequest) -> collections.abc.Sequence[_LinkOrCallback] :abstractmethod: Returns the links associated with the current ticket in the following format:: [ ('Link Title', 'http://link'), ('Link Title 2', 'http://link2'), ] If the links are not tuples, but callables, they will be called with the request which should return the rendered link. .. py:property:: ticket_deletable :type: bool .. py:method:: prepare_delete_ticket() -> None The handler knows best what to do when a ticket is called for deletion. .. py:class:: HandlerRegistry .. py:attribute:: _reserved_handler_codes .. py:attribute:: registry :type: dict[str, type[Handler]] .. py:method:: get(handler_code: str) -> type[Handler] Returns the handler registration for the given id. If the id does not exist, a KeyError is raised. .. py:method:: register(handler_code: str, handler_class: type[Handler]) -> None Registers a handler. :handler_code: Three characters long shortcode of the handler added in front of the ticket number. Must be globally unique and must not change! Examples for good handler_codes:: FRM ONS RES EVT :handler_class: A handler class inheriting from :class:`Handler`. .. py:method:: registered_handler(handler_code: str) -> collections.abc.Callable[[type[_H]], type[_H]] A decorator to register handles. Use as followed:: @handlers.registered_handler('FOO') class FooHandler(Handler): pass