Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3363023
D4990.id16148.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
932 B
Referenced Files
None
Subscribers
None
D4990.id16148.diff
View Options
diff --git a/lib/utils/validation-utils.js b/lib/utils/validation-utils.js
--- a/lib/utils/validation-utils.js
+++ b/lib/utils/validation-utils.js
@@ -7,6 +7,7 @@
TRefinement,
TEnums,
TInterface,
+ TUnion,
} from 'tcomb';
import {
@@ -65,6 +66,22 @@
const tOldValidUsername: TRegex = tRegex(oldValidUsernameRegex);
const tID: TRefinement<string> = t.refinement(t.String, (id: string) => !!id);
+const tMediaMessagePhoto: TInterface = tShape({
+ type: tString('photo'),
+ uploadID: t.String,
+});
+
+const tMediaMessageVideo: TInterface = tShape({
+ type: tString('video'),
+ uploadID: t.String,
+ thumbnailUploadID: t.String,
+});
+
+const tMediaMessageMedia: TUnion<TInterface> = t.union([
+ tMediaMessagePhoto,
+ tMediaMessageVideo,
+]);
+
export {
tBool,
tString,
@@ -82,4 +99,7 @@
tEmail,
tOldValidUsername,
tID,
+ tMediaMessagePhoto,
+ tMediaMessageVideo,
+ tMediaMessageMedia,
};
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 25, 11:41 PM (18 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2581041
Default Alt Text
D4990.id16148.diff (932 B)
Attached To
Mode
D4990: [lib] Introduce `tMediaMessage[Photo/Video/Media]` to validate requests to `textMessageCreationResponder`
Attached
Detach File
Event Timeline
Log In to Comment