gazette.models.notice ===================== .. py:module:: gazette.models.notice Classes ------- .. autoapisummary:: gazette.models.notice.CachedUserNameMixin gazette.models.notice.CachedGroupNameMixin gazette.models.notice.GazetteNoticeFile gazette.models.notice.GazetteNotice gazette.models.notice.GazetteNoticeChange Module Contents --------------- .. py:class:: CachedUserNameMixin Mixin providing a cached version of the user name. There needs to be: * a ``user`` relationship (which has no dynamic backref) * a meta column The observer needs to be registered in the children:: @observes('user', 'user.realname', 'user.username') def user_observer(self, user, realname, username): if hasattr(self, '_user_observer'): self._user_observer(user, realname, username) .. py:attribute:: user :type: sqlalchemy.orm.relationship[onegov.user.User | None] | sqlalchemy.orm.relationship[onegov.user.User] .. py:attribute:: _user_name :type: onegov.core.orm.mixins.dict_property[str | None] .. py:property:: user_name :type: str | None Returns the name of the owner. If the user has been deleted, the last known name in brackets is returned. .. py:method:: _user_observer(user: onegov.user.User | None, realname: str | None, username: str | None) -> None Upates the last known name of the owner. This never deletes the stored name, set ``self._user_name`` yourself if you want to clear it. .. py:class:: CachedGroupNameMixin Mixin providing a cached version of the group name. There needs to be: * a ``group`` relationship (which has no dynamic backref) * a meta column The observer needs to be registered in the children:: @observes('group', 'group.name') def group_observer(self, group, name): if hasattr(self, '_group_observerr'): self._group_observerr(user, realname, username) .. py:attribute:: group :type: sqlalchemy.orm.relationship[onegov.user.UserGroup | None] | sqlalchemy.orm.relationship[onegov.user.UserGroup] .. py:attribute:: _group_name :type: onegov.core.orm.mixins.dict_property[str | None] .. py:property:: group_name :type: str | None Returns the name of the group this notice belongs to. If the group has been deleted, the last known name in brackets is returned. .. py:method:: _group_observer(group: onegov.user.UserGroup | None, name: str | None) -> None Upates the last known name of the group. This never deletes the stored name, set ``self._group_name`` yourself if you want to clear it. .. py:class:: GazetteNoticeFile 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:attribute:: linked_official_notices :type: sqlalchemy.orm.relationship[list[GazetteNotice]] .. py:class:: GazetteNotice Bases: :py:obj:`onegov.notice.OfficialNotice`, :py:obj:`CachedUserNameMixin`, :py:obj:`CachedGroupNameMixin`, :py:obj:`onegov.file.AssociatedFiles` An official notice with extras. We use a combination of the categories/organizations HSTORE and the individual category/organization columns. The ID of the category/ organization is stored in the HSTORE column and the actual name ist copied when calling ``apply_meta``. We store only the issue names (year-number) in the HSTORE. It's possible to add a changelog entry by calling ``add_change``. Changelog entries are created for state changes by default. The user name accessible by ``user_name`` gets cached in case the user is deleted. The group name accessible by ``group_name`` gets cached in case the group is deleted. .. py:attribute:: __mapper_args__ .. py:attribute:: print_only :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:attribute:: at_cost :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:attribute:: billing_address :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: changes :type: sqlalchemy.orm.relationship[onegov.core.types.AppenderQuery[GazetteNoticeChange]] .. py:method:: user_observer(user: onegov.user.User | None, realname: str | None, username: str | None) -> None .. py:method:: group_observer(group: onegov.user.UserGroup | None, name: str | None) -> None .. py:method:: add_change(request: onegov.gazette.request.GazetteRequest, event: str, text: str | None = None) -> None Adds en entry to the changelog. .. py:method:: submit(request: onegov.gazette.request.GazetteRequest) -> None Submit a drafted notice. This automatically adds en entry to the changelog. .. py:method:: reject(request: onegov.gazette.request.GazetteRequest, comment: str) -> None Reject a submitted notice. This automatically adds en entry to the changelog. .. py:method:: accept(request: onegov.gazette.request.GazetteRequest) -> None Accept a submitted notice. This automatically adds en entry to the changelog. .. py:method:: publish(request: onegov.gazette.request.GazetteRequest) -> None Publish an accepted notice. This automatically adds en entry to the changelog. .. py:property:: rejected_comment :type: str Returns the comment of the last rejected change log entry. .. py:property:: issues :type: dict[str, str | None] Returns the issues sorted (by year/number). .. py:property:: issue_objects :type: list[onegov.gazette.models.issue.Issue] .. py:method:: set_publication_number(issue: str, number: int) -> None .. py:property:: category_id :type: str | None The ID of the category. We store this the ID in the HSTORE (we use only one!) and additionaly store the title of the category in the category column. .. py:property:: category_object :type: onegov.gazette.models.category.Category | None .. py:property:: organization_id :type: str | None The ID of the organization. We store this the ID in the HSTORE (we use only one!) and additionaly store the title of the organization in the organization column. .. py:property:: organization_object :type: onegov.gazette.models.organization.Organization | None .. py:property:: overdue_issues :type: bool Returns True, if any of the issue's deadline is reached. .. py:property:: expired_issues :type: bool Returns True, if any of the issue's issue date is reached. .. py:property:: invalid_category :type: bool Returns True, if the category is invalid or inactive. .. py:property:: invalid_organization :type: bool Returns True, if the organization is invalid or inactive. .. py:method:: apply_meta(session: sqlalchemy.orm.Session) -> None Updates the category, organization and issue date from the meta values. .. py:class:: GazetteNoticeChange Bases: :py:obj:`onegov.chat.Message`, :py:obj:`CachedUserNameMixin` A changelog entry for an official notice. .. py:attribute:: __mapper_args__ .. py:attribute:: user :type: sqlalchemy.orm.relationship[onegov.user.User | None] .. py:method:: user_observer(user: onegov.user.User | None, realname: str | None, username: str | None) -> None .. py:attribute:: notice :type: sqlalchemy.orm.relationship[GazetteNotice] .. py:attribute:: event :type: onegov.core.orm.mixins.dict_property[str | None]