Page MenuHomePhabricator

[lib] Introduce `threadInfoFromRawThreadInfo` wrapper that computes `currentUser` and passes to `baseThreadInfoFromRawThreadInfo`
AcceptedPublic

Authored by atul on Mar 13 2024, 1:49 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Apr 14, 1:58 PM
Unknown Object (File)
Sun, Apr 14, 1:58 PM
Unknown Object (File)
Sun, Apr 14, 1:57 PM
Unknown Object (File)
Wed, Apr 3, 10:41 AM
Unknown Object (File)
Mon, Apr 1, 7:57 PM
Unknown Object (File)
Sun, Mar 31, 12:15 PM
Unknown Object (File)
Mar 20 2024, 8:08 AM
Unknown Object (File)
Mar 20 2024, 8:06 AM
Subscribers

Details

Summary
  1. We rename existing threadInfoFromRawThreadInfo to baseThreadInfoFromRawThreadInfo
  2. We introduce threadInfoFromRawThreadInfo which computes currentUser with getMinimallyEncodedCurrentUser and passed to baseThreadInfoFromRawThreadInfo

What's the motivation for doing this?

Right now threadInfoFromRawThreadInfo is used on both client and server. However, we want to split the implementation into a serverThreadInfoFromRawThreadInfo and clientThreadInfoFromRawThreadInfo. We want to share as much code as possible, so we're going to create a client and server wrapper function over baseThreadInfoFromRawThreadInfo where we pass in a "pre-computed" currentUser.

Why do we need to split functionality between client and server?

  1. The primary motivation of the specialRole work is to reduce the size of role/permissions data stored in Redux on the clients.
  2. By updating memberHasAdminPowers and appendUserInfo to depend on community root roles instead of computed member.permissions, we can avoid storing/persisting/sending that data to the clients.
  3. On the clients we can compute memberHadAdminPowers using community root threadInfo which we have access to via Redux ThreadStore.
  4. HOWEVER, things are not so easy on the keyserver. There are many callsites that eventually call threadInfoFromRawThreadInfo where we do NOT have access to community root threadInfo.
  5. Updating all of the callsites to have access to community root threadInfo would be quite involved. I tried doing that yesterday (Tuesday), and the scope quickly grew out of control. We'd have to update a bunch of queries, types, intermediate functions, etc. It seems like a project of its own.
  6. I think the most pragmatic way forward, and way to achieve the primary goal of removing computed member.permissions from client stores, is to focus on updating everything on the client and deferring things on the keyserver.
  7. This means that for the timebeing, the memberHasAdminPowers check will continue using the CHANGE_ROLE approximation on keyserver.
  8. I think updating keyserver memberHasAdminPowers checks to use roles will require a lot of work and effectively be its own project. I think this would fit naturally with the "minimal permissions in memberships table" work.
NOTE: TLDR: I think the most pragmatic solution is to use communityThreadInfo.roles to compute memberHasAdminPowers on client, while it makes sense to keep using CHANGE_ROLE check on keyserver for the timebeing. This will mean that the logic will diverge. I think in practice it should be fine since we've been using the CHANGE_ROLE approximation this whole time and will be doing something "more robust" on the client

Depends on D11317

Test Plan

Noop, added some breakpoints before/after and confirmed that nothing has changed.

Diff Detail

Repository
rCOMM Comm
Branch
master
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

atul requested review of this revision.Mar 13 2024, 2:04 PM

After reading the description it sounds like

By updating memberHasAdminPowers and appendUserInfo to depend on community root roles instead of computed member.permissions, we can avoid storing/persisting/sending that data to the clients.

is the main goal. What is the impact of doing this? How much can we save?

This revision is now accepted and ready to land.Mar 19 2024, 5:17 AM