Skip to content

Commit b00ba5d

Browse files
committed
Prepare EntryRecipient and Collection
1 parent d92404c commit b00ba5d

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

src/onegov/directory/collections/directory.py

+10
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,16 @@ def by_id(self, id: str | UUID) -> EntryRecipient | None:
8989
return self.query().filter(EntryRecipient.id == id).first()
9090
return None
9191

92+
def by_address(
93+
self,
94+
address: str,
95+
) -> EntryRecipient | None:
96+
97+
query = self.query()
98+
query = query.filter(EntryRecipient.address == address)
99+
100+
return query.first()
101+
92102
def add(
93103
self,
94104
address: str,

src/onegov/directory/models/directory.py

+23-1
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def process_obj(self, obj: DirectoryEntry) -> None:
590590
return DirectoryEntryForm
591591

592592

593-
class EntryRecipient(Base, TimestampMixin):
593+
class EntryRecipient(Base, TimestampMixin, ContentMixin):
594594
""" Represents a single recipient.
595595
"""
596596

@@ -628,6 +628,28 @@ def subscription(self) -> EntrySubscription:
628628
nullable=False
629629
)
630630

631+
@property
632+
def is_inactive(self) -> bool:
633+
"""
634+
Checks if the directory entry recipient's email address is marked as
635+
inactive.
636+
637+
Returns:
638+
bool: True if the email address is marked as inactive, False
639+
otherwise.
640+
"""
641+
return self.meta.get('inactive', False)
642+
643+
def mark_inactive(self) -> None:
644+
"""
645+
Marks the recipient's email address as inactive.
646+
647+
This method sets the 'inactive' flag in the recipient's metadata to
648+
True. It is typically used when a bounce event causes the email
649+
address to be deactivated by Postmark.
650+
"""
651+
self.meta['inactive'] = True
652+
631653

632654
class EntrySubscription:
633655
""" Adds subscription management to a recipient. """

0 commit comments

Comments
 (0)