-
Notifications
You must be signed in to change notification settings - Fork 348
[ENG-8064] Add New Notifications Data Model (Refactor Notifications Phase 2) #11151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
[ENG-8064] Add New Notifications Data Model (Refactor Notifications Phase 2) #11151
Conversation
3a8b414
to
57b0bd1
Compare
2b8ba0d
to
c449599
Compare
ad18e9d
to
300524c
Compare
2dee1b2
to
2dbcbf7
Compare
9238258
to
37b419a
Compare
afc3815
to
b6bbeed
Compare
1a4314d
to
2894a24
Compare
7145117
to
4ad8e87
Compare
4ad8e87
to
02b7adf
Compare
@@ -108,11 +112,6 @@ class CeleryConfig(defaults.CeleryConfig): | |||
|
|||
USE_CDN_FOR_CLIENT_LIBS = False | |||
|
|||
# WARNING: `SENDGRID_WHITELIST_MODE` should always be True in local dev env to prevent unintentional spamming. | |||
# Add specific email addresses to `SENDGRID_EMAIL_WHITELIST` for testing purposes. | |||
SENDGRID_WHITELIST_MODE = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mfraezz I checked with another member of the cloud team, but just want to confirm with you this isn't still being used somewhere.
22e2979
to
e8f7e1f
Compare
@receiver(post_save, sender=CollectionProvider) | ||
@receiver(post_save, sender=PreprintProvider) | ||
@receiver(post_save, sender=RegistrationProvider) | ||
def create_provider_notification_subscriptions(sender, instance, created, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This gets added on demand now
f5b82c4
to
41da71c
Compare
41da71c
to
f9003e8
Compare
a432fac
to
566ca6a
Compare
@@ -21,10 +21,10 @@ | |||
from framework.celery_tasks import app as celery_app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Johnetordoff Can I remove this?
8efc5d3
to
86ef26a
Compare
86ef26a
to
a28feef
Compare
Purpose
This system is designed to formalize and consolidate OSF Notifications under one system in order to better facilitate collaboration between Product, Engineers and QA and end persistent problems with notification email related tech debt. This project is the result of an extensive audit of all OSF emails and combined email digests and seeks to move the
NotificationSubscription
model out of it's transitional state having been migrated from a document based model, into it's final data model which is more regular for a relation our current relational database (django's postgress db).In order to do this I have taken @mfraezz design documents and implemented them with minor changes. This means the responsibility for sending notifications in osf.io is shared by three new models, which will have the old data migrated into them via a migration script and management command. The models are:
NotificationType
notification.yaml
a developer will be able to see at a glance if where a notification template is and what it's purpose is.NotificationSubscription
EmailDigest
model, this holds references to potentially many Notifcations models that can be compiled into a single digest this is sent at a periodic basis.Notification
Changes
notifications.yaml
to contain all notification types info it is populated via postmigrate hookNotification
NotificationSubscription
andNotificationType
send_mails
method and replaces it withemit
ofNotificationType
handle_boa_error
to pass the already decanted user object.notifications.yaml
for data dependency notificationtypescapture_notifications
mocking utilqueued_mail
EmailDigest
detect_duplicates
for duplicate subscriptionsQA Notes
Please make verification statements inspired by your code and what your code touches.
What are the areas of risk?
Any concerns/considerations/questions that development raised?
Documentation
Side Effects
Ticket
https://openscience.atlassian.net/browse/ENG-8064