-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
notifications: add user preferences filter
schemas: add notifications schema
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) 2023 Graz University of Technology. | ||
# | ||
# Invenio-Users-Resources is free software; you can redistribute it and/or | ||
# modify it under the terms of the MIT License; see LICENSE file for more | ||
# details. | ||
|
||
"""User specific resources for notifications.""" | ||
|
||
|
||
from invenio_records_resources.notifications import RecipientFilter | ||
|
||
|
||
class UserPreferencesRecipientFilter(RecipientFilter): | ||
"""Recipient filter for notifications being enabled at all.""" | ||
|
||
def run(self, recipients, **kwargs): | ||
"""Filter recipients.""" | ||
return [ | ||
r | ||
for r in recipients | ||
if r.get("user", {}) | ||
.get("preferences", {}) | ||
.get("notifications", {}) | ||
.get("enabled", False) | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters