Page MenuHomePhabricator

[lib] Introduce blobURI multimedia message field
ClosedPublic

Authored by bartek on Jun 29 2023, 6:37 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jun 25, 8:08 PM
Unknown Object (File)
Fri, Jun 14, 2:41 AM
Unknown Object (File)
Thu, Jun 13, 5:55 AM
Unknown Object (File)
Mon, Jun 10, 7:23 PM
Unknown Object (File)
Fri, Jun 7, 4:14 PM
Unknown Object (File)
Thu, Jun 6, 1:24 AM
Unknown Object (File)
Mon, Jun 3, 11:01 PM
Unknown Object (File)
Mon, Jun 3, 11:01 PM
Subscribers

Details

Summary

First part of ENG-3966. Details in the Linear task.
Replaced the holder field for Encrypted{Image,Video} with union holder | blobURI and updated validators accordingly

Added @michal because I made changes to validators.

Test Plan

This stack is tested altogether, CI will fail at this point due to Flow breaking changes which will be solved in subsequent diffs.

Actual test plan in the last diff.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

bartek held this revision as a draft.
bartek edited the test plan for this revision. (Show Details)
bartek published this revision for review.Jun 29 2023, 8:14 AM
lib/types/media-types.js
689 ↗(On Diff #28255)

Is this by mistake? It does not match the type

lib/types/media-types.js
689 ↗(On Diff #28255)

Yes, good catch. Leftover after experiments

ashoat requested changes to this revision.Jul 2 2023, 6:39 PM
ashoat added inline comments.
lib/types/media-types.js
680 ↗(On Diff #28255)

Same here as below

688 ↗(On Diff #28255)

Not sure there's a point to wrapping this in tShape. You could just declare an object, and skip the .meta.props extraction below

697 ↗(On Diff #28255)

Not sure what this export is for... I can't find any usages outside this file

735 ↗(On Diff #28255)

I'm not sure you can spread a union type. I think this will lead to issues.

You should reverse the approach and define the shared parts first:

type EncryptedVideoShared = {
  +id: string,
  +encryptionKey: string,
  +type: 'encrypted_video',
  +dimensions: Dimensions,
  +loop?: boolean,
  +thumbnailID: string,
  +thumbnailEncryptionKey: string,
  +thumbnailThumbHash: ?string,
};

export type EncryptedVideo =
  | { ...EncryptedVideoShared, +holder: string, +thumbnailHolder: string }
  | { ...EncryptedVideoShared, +blobURI: string, +thumbnailBlobURI: string };
This revision now requires changes to proceed.Jul 2 2023, 6:39 PM
lib/types/media-types.js
688 ↗(On Diff #28255)

Omitting this wasn't working in my initial solution but looks like it's working now, I'll do it

697 ↗(On Diff #28255)

It was here before my changes. I suspect @michal might know more

735 ↗(On Diff #28255)

Makes sense - this will keep the types in sync with validators too

lib/types/media-types.js
688 ↗(On Diff #28328)

One advantage of wrapping it in tShape<T>({...}) is that flow will throw an error if the field names don't match between the validator and the type.

697 ↗(On Diff #28255)

When I was creating the validators, I exported them if the type they were based on was also exported.

ashoat added inline comments.
lib/types/media-types.js
688 ↗(On Diff #28328)

Won't that happen on line 697 and 698 still?

This revision is now accepted and ready to land.Jul 3 2023, 10:39 AM
lib/types/media-types.js
688 ↗(On Diff #28328)

Unfortunately, the flow types for tcomb are not that smart. The field check only works if you explicitly specify the generic T in tShape<T>.

This revision was landed with ongoing or failed builds.Jul 11 2023, 2:58 AM
This revision was automatically updated to reflect the committed changes.