swarms/ideas/086-push-notif-v2
Oskar Thorén 8d5673e214
Static site for ideas, dynamically generated index (#185)
- Feature complete with README.md

- Idea registry, commitment registry and classifieds

- Core Contributors tracked in contributors.yaml

- Updated yaml front matter for in progress ideas a few from other states
2018-04-20 23:40:46 +08:00
..
1to1.dot Improve ladder diagram and mark swarm `In Progress` (#86) 2018-04-19 17:19:45 +02:00
README.md Static site for ideas, dynamically generated index (#185) 2018-04-20 23:40:46 +08:00

README.md

id title status created category lead-contributor contributors exit-criteria success-metrics clear-roles future-iterations roles-needed
86-push-notif-v2 Push Notifications v2 Active 2018-03-01 core PombeirP
PombeirP
nastya
adriacidre
yenda
yes yes yes yes

Meta

Idea: 086
Title: Push Notifications v2
Status: In Progress
Created: 2018-03-01
Q2 Objective: #core 1.2

Summary

The current push notification system is sort of in an MVP stage. It works, but there are lots of important improvements which we need to accomplish in order to meet basic expectations from end users, such as supporting group chats and previewing the message sender and content on the notification itself.

Swarm Participants

  • Lead Contributor: @PombeirP (~20h/week)
  • Testing & Evaluation: @nastya
  • Contributor (Go): @adriacidre (24h/week)
  • Contributor (Clojure): @yenda (20h/week)

Product Overview

The user expects push notifications to be reliable and helpful while maintaining security. Some familiar behaviors illustrate some fundamental inter-connected qualities:

  • Reliable:
    • A user expects to receive a notification in the following scenarios:
      • His screen is turned off, and he receives a message.
      • His screen is on, and the app is running in the background.
      • The app is in the foreground, and he receives a new message in a chat room which is not visible.
    • A user expects his conversation partners to be notified in a timely manner.
    • A user expects that the notifications he finds on his device accurately reflect unread messages.
  • Helpful:
    • A user expects that the notifications he finds on his device accurately reflect unread messages. If he has browsed through a conversation that included messages mentioned in a PN, the PN should be updated accordingly, so the user is not misled and can trust the notification system.
    • A user expects to be able to see message details from notifications without needing to open the app (perhaps configurable due to privacy concerns?).
    • A user expects to be able to be able to ping other users selectively user @-type addressing (individual and group notifications), to reduce unnecessary noise.
  • Timely:
    • A user expects that relevant events are received as notifications in a timely fashion (i.e., < 15 seconds from actual event).
  • Secure:
    • A user expects that by receiving PNs, he is not giving up the degrees of anonymity and plausible deniability which are afforded by the app's underlying communication protocol.

We want to end up with a notification system which works on as many devices as possible and is resistant to censorship. There are countries which block certain notification providers (an example being China blocking Google Cloud Messaging). For that to be possible, we need to allow users to select their notification provider (with a reasonable default being Pushy or FCM), and to incentivize the creation of a paid notification provider economy. Per Oskars description:

“Alice and Bob are chatting with Eve the masternode/mailserver listening. Bob uses F-Droid / lives in Cuba and thus can't/doesn't want to use Firebase/GCM (see whitepaper). Eve sees this as an opportunity to host a node which can serve Bob. Alice does not know any of this. Bob registers their method of choice for PN with Eve, so that when Alice sends a message to Bob, Eve also picks it up and triggers a push notification on Bob's device. Eve cannot inspect the payload.”

We also want a solution that doesnt involve talking directly to the notification provider, as that would require keeping authentication elements embedded in the app (currently the case), and might expose us to quota theft.

Flow Diagram (1:1 chat)

Alt text

For group chats, the flow is similar, but it's the chat admin which ensures that each chat member gets a notification channel for every other chat member. Notifications from chat members who left/were removed should be ignored.

Goals

At a high-level, we want to move up the current solution a notch regarding some of the critical qualities mentioned in the Product Overview which are currently lagging behind. The specific steps to reach that goal are:

  • Improve usability of notifications by:

    • Allowing the app to match a push notification with a specific chat message. That way we can:
    • [P3] adding "quick actions" buttons on mobile notifications, so the user can directly "mark as read" or "delete" specific messages.
  • Improve helpfulness by:

    • [P0] retrieving the message body and displaying it in the notification body so that the user can see who is talking and what is being said without needing to unlock the phone or opening the app.
    • [P2] supporting simplistic deep-linking. Clicking on a push notification should take you to the specific chat that is mentioned. We could achieve this functionality by looking for the message in all chats that match the ID from the notification.
    • [P3] making Push Notifications work in group chats. By default, participants would only receive notifications when being mentioned with an @ symbol, to avoid creating a noisy environment that would degrade the whole experience.
    • [P3] supporting full deep-linking. Support for it might require mapping screens to specific URLs. Useful beyond push notifications.
  • Improve security of the solution by:

    • [P0] not embedding FCM (Firebase Cloud Messaging) server key in source code or app binary.
    • [P4] building a pluggable model for Push Notifications so that 3rd party providers can have a convincing economic model to host their own Push Notification servers.

Requirements & Dependencies

Security and Privacy Implications

  • It is possible for a third-party to easily exhaust the capacity of a Push Notification server by organizing a distributed attack to consume all the available slots. This should be resolved with paid notification servers.

Exit criteria

There are undoubtedly enough issues identified to span several months of effort, so it seems reasonable to have a Swarm that tackles the problems which have the most impact on the user in the short term and leave the rest for a future Swarm to form around. There is value however in documenting the shortcomings of the current implementation, even if they are too far away on the horizon to be addressed in this Swarm (e.g., 3rd party PN provider support).

With that in mind, the exit criteria are as follows:

  • The swarm has addressed all P0 and P1 goals mentioned in the goals section.

Success Metrics

KRs:

  • 100% of the messages that should generate a notification on the receiving device do so within 15 seconds, under different network conditions (i.e. Wi-Fi, cellular).
  • Network and battery consumption values are same or less than current values.

Dates

Minimum Viable Product

Goal Date: 2018-05-07

Description: Show more information on notification

  • Send only envelope hash on PN to destination device so that it knows to refresh messages and to match them to the notification.
  • Update message body from retrieved Whisper message.

Iteration 1

Goal Date: 2018-05-21

Description: Implement notification server mode on statusd

  • Connects to FCM, only 1 instance, no load-balancing.
  • Add logic to statusd (accept special P2P messages from clients, and trigger notifications in response).
  • Deploy service with Ansible.
  • Change client so that it communicates with notification server to send notifications indirectly to contact.

Iteration 2

Goal Date: 2018-06-04

Description: Support simple deep-linking

  • Open respective chat when taping on a notification.
  • Hide notification when the user views the respective message in chat.

Iteration 3

Goal Date: TBD

Description: TBD

Supporting Role Communication

TBD

Copyright and related rights waived via CC0.