Page MenuHomePhabricator

[lib][web][native] Move deviceToken to keyserverStore
ClosedPublic

Authored by inka on Oct 27 2023, 9:02 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Sep 29, 2:45 AM
Unknown Object (File)
Sun, Sep 29, 2:42 AM
Unknown Object (File)
Mon, Sep 23, 9:52 PM
Unknown Object (File)
Fri, Sep 6, 4:51 PM
Unknown Object (File)
Fri, Sep 6, 4:51 PM
Unknown Object (File)
Fri, Sep 6, 4:51 PM
Unknown Object (File)
Fri, Sep 6, 4:51 PM
Unknown Object (File)
Fri, Sep 6, 4:51 PM

Details

Summary

issue: https://linear.app/comm/issue/ENG-5284/refactor-setdevicetoken-action
We will need to communicate the device token to every keyserver we are connected to. The device token may change. A keyserver might not have our current device token. Each keyserver may realise they have the wrong token at a different time. We want to keep track of each keyservers knowledge. I am moving the logic that was used for one keyserver to multiple keyservers. This logic is flawed, but it will be updated in a different task: https://linear.app/comm/issue/ENG-5599/device-token-setting-mechanizm

Test Plan

Checked:

The migration, the keyserver selectors, sanitizeState, logInExtraInfoSelector

that the reducer sets the device token in the keyserver store on setDeviceTokenActionTypes.success action,

that the notifs still work,

that when the ks has an incorrect device token it is able to get a new one in the same way as it was before

checked that if a user turns off and back on the notifications, they work

checked that login works. Assuming that register and siweAuth work by symmetry

ran yarn flow-all

Diff Detail

Repository
rCOMM Comm
Branch
inka/actions_new_branch
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

inka requested review of this revision.Oct 27 2023, 9:19 AM
native/push/push-handler.react.js
245–247

This doesn't make much sense now because setDeviceToken action is not yet refactored for multiple keyserver. It will be done in the next diff, and this logic will be updated

277–285

The keyserver might try to send a notif and get an error from the Push service even before the client is notified about the token change. Also, the keyservers don't necesserly lear this at the same time. Thats why if any of the keyservers sets the deviceID to null we want to check if notifs are enabled

ashoat added a subscriber: marcin.

It might make sense for @marcin to take a look at this given his experience with notifs

Don't we need a migration for web too?

lib/selectors/keyserver-selectors.js
102–107 ↗(On Diff #32638)
lib/types/account-types.js
51–55 ↗(On Diff #32638)

Does this make sense?

Don't we need a migration for web too?

deviceToken wasn't being persisted, so I don't think so (it's not on the persistWhitelist)

lib/types/account-types.js
51–55 ↗(On Diff #32638)

If you mean DeviceTokenUpdateRequest then yes

This revision is now accepted and ready to land.Nov 7 2023, 2:11 AM
This revision was landed with ongoing or failed builds.Nov 7 2023, 6:34 AM
This revision was automatically updated to reflect the committed changes.