Questions
- How should we bounce messages? Silently? Via an auto-generated message?
- On an error, send an error message to the sender's inbox.
- How should we handle messages sent to groups rather than individuals? Should the message be broken into individuals messages (after checking for SEND_MESSAGE permission on the group)?
Objects
Name | DBO | Migration | DTO |
---|---|---|---|
(Immutable after creation) |
| Backup via ID Note: Etag is required because MessageStatus is mutable. | Interface
|
(Immutable after creation) |
| Secondary to MessageContent | Implements MessageContent
|
(Immutable after creation) |
| Secondary to MessageContent | |
|
| Secondary to MessageContent |
|
(Immutable after creation) |
| Secondary to MessageContent | Implements MessageContent
|
|
| TBD |
|
|
| TBD |
|
| Bundles the MessageToUser and Message Status |
'* per Marcel, Comments may have a more complex set of references/relationships than Messages to Users have. Rather than just 'inReplyTo', it might be that one Comment is an 'answer' to another comment which is a question. Further, the multiple answers to a question may have 'previous' references which order them.
Other
- Message ID generator
- Message delivery will be via worker, i.e. asynchronous (in most cases) with respect to message creation
- Messages to a low number (1) of recipients should be immediately consistent
- Comments should always be immediately consistent
- Proposed RDS implementation
- Add a migratable table with a single column of message IDs
- Add a worker that periodically polls the table
- If the table is not empty, process N rows from the top
- Delete rows once finished processing
- Email mechanism (use Amazon SES)
- Since we've decided to use SES, we should use their REST API rather than their SMTP API
- The Gmail server may still be useful for handling bounced messages
Services
- Sorting & Pagination
- Sort by creation date
- Sort by subject
- Sort by recipient name
Method | URI | Body | Parameters | Return | Description | Permission |
---|---|---|---|---|---|---|
| /message/inbox | Sorting + pagination | Paginated results<MessageBundle> | Gets all messages the authenticated user has received | Authenticated User | |
| /message/outbox | Sorting + pagination | Paginated results<Message> | Gets all messages the authenticated user has sent | Authenticated User | |
| /message | Message | inReplyTo=null (i.e. another Message) | Message | Sends a message. Note, message delivery permission is on a recipient-by-recipient basis, asynchronous to the message creation. Unauthorized delivery may result in silent failure or a bounce message (TBD). | Authenticated User
Must be admin to send to AUTH_USERS |
| /message/{id}/forward | RecipientBundle | Forwards a message to other recipients. This is equivalent to getting a (visible) message and POST-ing it to /message | Sender or Receiver | ||
| /entity/{id}/comments | Message | Message | Convenience method for commenting on an entity. The service fills out fields like message ID, thread ID, and recipients, leaving just subject and body for the user. | Authenticated user with SEND_MESSAGE permission on entity | |
| /message/{id} | Message | Gets a specific message | Sender or Receiver | ||
| /message/{id}/conversation | Sorting + pagination | Paginated results<Message> | Gets messages belonging in the same thread as the message ID. The list is filtered according to the user's ID. | Sender or Receiver | |
| /entity/{id}/comments | Sorting + pagination | Paginated results<Message> | Gets message belonging to the thread tied to the entity. | Authenticated user with READ permission on entity | |
| /message/{id}/status | Message Status | Gets the status of a message | Receiver | ||
| /message/status | MessageStatus | Marks a message as:
| Receiver | ||
| /message/settings | MessageSettings | Gets the notification settings of the user | Authenticated User | ||
| /message/settings | MessageSettings | Changes notification settings | Authenticated User |