Goals:
- If a user doesn't do their scheduled burst activities after N days, we send them an SMS notification.
Non-Goals:
- Generic re-usable automated notifications.
How to Model Activity Burst
App will need to use the Publish Custom Event API to publish custom events for "activityBurst1Start", "activityBurst2Start", etc... (Note that we can schedule off custom events, but if there are duplicate event IDs, we schedule off the first such event. So each activity burst start will need to use a different event key.) "activityBurst1Start" should be the same as enrollment date (or possibly whenever the user upgraded to mPower 2), and the subsequent burst start times should be every 3 months after that (or whatever interval we decided).
If the user reinstalls, the app can use the Get Activity Events API to verify if the user already has activity burst events configured. Note that we use this API because it already exists, and because we assume the app wants to know where the user is in an existing study burst (if any). If it turns out that the app doesn't need to know where the user is in the study burst, we could always implement a "publish activity event if not exists" API, but that API doesn't exist yet.
The server will have schedules for each activity burst, using the activity burst event ID and sequence period to schedule daily activities. (Note that for custom events, we add the prefix "custom:" to the event key. Example: "custom:activityBurst1Start".)
When the app completes each activity, it will need to call the Update Activity API to mark that activity as completed.
Sending Notifications
We want to be able to send SMS notifications on an individual basis. Topics and subscriptions doesn't really fit the use case, so we'll need to create a worker facing "send SMS to user" API. Note that this message should be marked as "Promotional" rather than "Transactional", since it's not really transactional in nature.
SMS vs In-App Notifications
SMS notifications are desired specifically because they are more heavyweight than in-app notifications, and because users who haven't engaged with the app are unlikely to respond to in-app notifications.
Opting Out of SMS Notifications
We need to give users a way to opt-out of receiving SMS notifications. AWS handles this automatically for us (see https://docs.aws.amazon.com/sns/latest/dg/sms_manage.html#sms_manage_optout). Part of the notification should inform the user that they can choose to quit the study replying with QUIT.
Important: SMS opt-out is account wide. If a user opts out of SMS from Bridge, this means they also no longer receive SMS to verify their phone or get a phone sign-in link for any study.
Also note that, unlike email, we don't get any notifications if a user opts out of SMS. We have to manually poll SNS to determine users who have opted out. As a Stretch Goal, we can build a system to poll users who have opted out of SNS and withdraw them from the study.
Activity Burst Notification Worker
We will need to add worker APIs for:
- get notification registrations for user
- get activity events for user
- get activity history for user
- send notification to user
(NOTE: These APIs all exist for study researchers, but they do not yet exist for workers.)
The worker will be scheduled to run daily at (for example) 20:00 UTC (12pm PST / 1pm PDT). The worker will iterate over every user in the given study, and for each user:
- Check that the user has registered for notifications. If they haven't, don't bother doing any work. Just skip.
- Look up the user's activity events to determine where they are in the study burst.
- If the user is in an activity burst, get all their activities since the start of the activity burst to see if they've been completing their activities. (Note that the only way to look up a user's activity is by their guid, so the worker will need to know the activity guids for the activity burst.)
- If certain conditions happen (the user has done less than X activityes in at least Y days), send a notification to the user using the Send Notification API.
Handling Time Zones
(Stretch Goal)
The previous design assumes everyone is in the US, and it will send notifications at 12pm/1pm for PST/PDT, 1pm/2pm for MST/MDT, 2pm/3pm for CST/CDT, and 3pm/4pm for EST/EDT. Note that Alaska is one hour before Pacific Time, and Hawaii is 2 hours before Pacific Time, meaning that Hawaiians can be notified as early as 10am. This doesn't account for US residents in Pacific Islands that are far outside our timezones, or are otherwise not anywhere near contiguous US timezones. This also means that the notification can be spread around up to 4 different hours in the contiguous US (more outside the US), rather than having a consistent notification time.
We can instead have the notification worker run every hour, calculate what timezone offset corresponds to "noon local time" (or whatever arbitrary local time we want notifications to be sent at). Note that special handling will need to be done to handle fractional timezones. (Note that there are no fractional timezones in the US.) This will be configured as part of the notification worker.
While iterating users, the notification worker can check the user's time zone (this is persisted when they first ask for scheduled activities), and if that user's time zone doesn't match with the time zone we're currently processing, we skip the user.
Note that there are a few issues with this approach:
- Note the users cannot currently change their timezone on the server. Even during DST change, we use the user's original timezone for scheduling. This means that during DST change, or if the user physically changes timezones, this could cause the notification to be sent at a different local time zone.
- If in the future, we do allow a timezone change, this may cause the notification worker to "skip" that user. This can be fixed by having our notification rules to send on Day >= 3 instead of on Day 3, but we'll need to keep track of whether we've sent the notification to that user for this activity burst, to make sure they don't receive duplicate notifications.
- The notification worker iterates over all users 24 times a day. This is fine for now, while the participant pool is fairly small. Long term, we could solve this by building a more sophisticated worker, where the first worker runs daily, goes through all users, figures out if we should send a notification, and if so, figures out when (based on user's time zone). The second worker runs hourly, figures out which users have scheduled notifications, and then sends them.