Chat: Add last_message to schema.
[akkoma] / docs / API / chats.md
1 # Chats
2
3 Chats are a way to represent an IM-style conversation between two actors. They are not the same as direct messages and they are not `Status`es, even though they have a lot in common.
4
5 ## Why Chats?
6
7 There are no 'visibility levels' in ActivityPub, their definition is purely a Mastodon convention. Direct Messaging between users on the fediverse has mostly been modeled by using ActivityPub addressing following Mastodon conventions on normal `Note` objects. In this case, a 'direct message' would be a message that has no followers addressed and also does not address the special public actor, but just the recipients in the `to` field. It would still be a `Note` and is presented with other `Note`s as a `Status` in the API.
8
9 This is an awkward setup for a few reasons:
10
11 - As DMs generally still follow the usual `Status` conventions, it is easy to accidentally pull somebody into a DM thread by mentioning them. (e.g. "I hate @badguy so much")
12 - It is possible to go from a publicly addressed `Status` to a DM reply, back to public, then to a 'followers only' reply, and so on. This can be become very confusing, as it is unclear which user can see which part of the conversation.
13 - The standard `Status` format of implicit addressing also leads to rather ugly results if you try to display the messages as a chat, because all the recipients are always mentioned by name in the message.
14 - As direct messages are posted with the same api call (and usually same frontend component) as public messages, accidentally making a public message private or vice versa can happen easily. Client bugs can also lead to this, accidentally making private messages public.
15
16 As a measure to improve this situation, the `Conversation` concept and related Pleroma extensions were introduced. While it made it possible to work around a few of the issues, many of the problems remained and it didn't see much adoption because it was too complicated to use correctly.
17
18 ## Chats explained
19 For this reasons, Chats are a new and different entity, both in the API as well as in ActivityPub. A quick overview:
20
21 - Chats are meant to represent an instant message conversation between two actors. For now these are only 1-on-1 conversations, but the other actor can be a group in the future.
22 - Chat messages have the ActivityPub type `ChatMessage`. They are not `Note`s. Servers that don't understand them will just drop them.
23 - The only addressing allowed in `ChatMessage`s is one single ActivityPub actor in the `to` field.
24 - There's always only one Chat between two actors. If you start chatting with someone and later start a 'new' Chat, the old Chat will be continued.
25 - `ChatMessage`s are posted with a different api, making it very hard to accidentally send a message to the wrong person.
26 - `ChatMessage`s don't show up in the existing timelines.
27 - Chats can never go from private to public. They are always private between the two actors.
28
29 ## Caveats
30
31 - Chats are NOT E2E encrypted (yet). Security is still the same as email.
32
33 ## API
34
35 In general, the way to send a `ChatMessage` is to first create a `Chat`, then post a message to that `Chat`. `Group`s will later be supported by making them a sub-type of `Account`.
36
37 This is the overview of using the API. The API is also documented via OpenAPI, so you can view it and play with it by pointing SwaggerUI or a similar OpenAPI tool to `https://yourinstance.tld/api/openapi`.
38
39 ### Creating or getting a chat.
40
41 To create or get an existing Chat for a certain recipient (identified by Account ID)
42 you can call:
43
44 `POST /api/v1/pleroma/chats/by-account-id/{account_id}`
45
46 The account id is the normal FlakeId of the usre
47
48 ```
49 POST /api/v1/pleroma/chats/by-account-id/someflakeid
50 ```
51
52 There will only ever be ONE Chat for you and a given recipient, so this call
53 will return the same Chat if you already have one with that user.
54
55 Returned data:
56
57 ```json
58 {
59 "account": {
60 "id": "someflakeid",
61 "username": "somenick",
62 ...
63 },
64 "id" : "1",
65 "unread" : 2,
66 "last_message" : {...} // The last message in that chat
67 }
68 ```
69
70 ### Marking a chat as read
71
72 To set the `unread` count of a chat to 0, call
73
74 `POST /api/v1/pleroma/chats/:id/read`
75
76 Returned data:
77
78 ```json
79 {
80 "account": {
81 "id": "someflakeid",
82 "username": "somenick",
83 ...
84 },
85 "id" : "1",
86 "unread" : 0
87 }
88 ```
89
90
91 ### Getting a list of Chats
92
93 `GET /api/v1/pleroma/chats`
94
95 This will return a list of chats that you have been involved in, sorted by their
96 last update (so new chats will be at the top).
97
98 Returned data:
99
100 ```json
101 [
102 {
103 "account": {
104 "id": "someflakeid",
105 "username": "somenick",
106 ...
107 },
108 "id" : "1",
109 "unread" : 2,
110 "last_message" : {...} // The last message in that chat
111 }
112 ]
113 ```
114
115 The recipient of messages that are sent to this chat is given by their AP ID.
116 The usual pagination options are implemented.
117
118 ### Getting the messages for a Chat
119
120 For a given Chat id, you can get the associated messages with
121
122 `GET /api/v1/pleroma/chats/{id}/messages`
123
124 This will return all messages, sorted by most recent to least recent. The usual
125 pagination options are implemented.
126
127 Returned data:
128
129 ```json
130 [
131 {
132 "account_id": "someflakeid",
133 "chat_id": "1",
134 "content": "Check this out :firefox:",
135 "created_at": "2020-04-21T15:11:46.000Z",
136 "emojis": [
137 {
138 "shortcode": "firefox",
139 "static_url": "https://dontbulling.me/emoji/Firefox.gif",
140 "url": "https://dontbulling.me/emoji/Firefox.gif",
141 "visible_in_picker": false
142 }
143 ],
144 "id": "13"
145 },
146 {
147 "account_id": "someflakeid",
148 "chat_id": "1",
149 "content": "Whats' up?",
150 "created_at": "2020-04-21T15:06:45.000Z",
151 "emojis": [],
152 "id": "12"
153 }
154 ]
155 ```
156
157 ### Posting a chat message
158
159 Posting a chat message for given Chat id works like this:
160
161 `POST /api/v1/pleroma/chats/{id}/messages`
162
163 Parameters:
164 - content: The text content of the message
165 - media_id: The id of an upload that will be attached to the message.
166
167 Currently, no formatting beyond basic escaping and emoji is implemented, as well as no
168 attachments. This will most probably change.
169
170 Returned data:
171
172 ```json
173 {
174 "account_id": "someflakeid",
175 "chat_id": "1",
176 "content": "Check this out :firefox:",
177 "created_at": "2020-04-21T15:11:46.000Z",
178 "emojis": [
179 {
180 "shortcode": "firefox",
181 "static_url": "https://dontbulling.me/emoji/Firefox.gif",
182 "url": "https://dontbulling.me/emoji/Firefox.gif",
183 "visible_in_picker": false
184 }
185 ],
186 "id": "13"
187 }
188 ```
189
190 ### Notifications
191
192 There's a new `pleroma:chat_mention` notification, which has this form:
193
194 ```json
195 {
196 "id": "someid",
197 "type": "pleroma:chat_mention",
198 "account": { ... } // User account of the sender,
199 "chat_message": {
200 "chat_id": "1",
201 "id": "10",
202 "content": "Hello",
203 "account_id": "someflakeid"
204 },
205 "created_at": "somedate"
206 }
207 ```