forked from nkuntz1934/matrix-workers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelations.ts
More file actions
277 lines (231 loc) · 8.53 KB
/
relations.ts
File metadata and controls
277 lines (231 loc) · 8.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// Relations and Threads API
// Implements: https://spec.matrix.org/v1.12/client-server-api/#aggregations-of-child-events
//
// Relations allow events to reference other events (replies, reactions, threads, edits)
import { Hono } from 'hono';
import type { AppEnv } from '../types';
import { Errors } from '../utils/errors';
import { requireAuth } from '../middleware/auth';
const app = new Hono<AppEnv>();
// ============================================
// Types
// ============================================
// RelationEvent structure for event relations
export interface RelationEvent {
event_id: string;
type: string;
sender: string;
origin_server_ts: number;
content: Record<string, any>;
}
// ============================================
// Endpoints
// ============================================
// GET /_matrix/client/v1/rooms/:roomId/relations/:eventId - Get all relations
app.get('/_matrix/client/v1/rooms/:roomId/relations/:eventId', requireAuth(), async (c) => {
const userId = c.get('userId');
const roomId = c.req.param('roomId');
const eventId = c.req.param('eventId');
const db = c.env.DB;
// Check membership
const membership = await db.prepare(`
SELECT membership FROM room_memberships WHERE room_id = ? AND user_id = ?
`).bind(roomId, userId).first<{ membership: string }>();
if (!membership || !['join', 'leave'].includes(membership.membership)) {
return Errors.forbidden('Not a member of this room').toResponse();
}
// Get pagination params
const from = c.req.query('from');
// Note: 'to' pagination param reserved for future use
void c.req.query('to');
const limit = Math.min(parseInt(c.req.query('limit') || '50'), 100);
const dir = c.req.query('dir') || 'b'; // backwards by default
// Query relations
let query = `
SELECT e.event_id, e.event_type, e.sender, e.origin_server_ts, e.content
FROM events e
WHERE e.room_id = ? AND e.relates_to_event_id = ?
`;
const params: any[] = [roomId, eventId];
if (from) {
if (dir === 'b') {
query += ` AND e.origin_server_ts < ?`;
} else {
query += ` AND e.origin_server_ts > ?`;
}
params.push(parseInt(from));
}
query += ` ORDER BY e.origin_server_ts ${dir === 'b' ? 'DESC' : 'ASC'} LIMIT ?`;
params.push(limit + 1);
const results = await db.prepare(query).bind(...params).all<{
event_id: string;
event_type: string;
sender: string;
origin_server_ts: number;
content: string;
}>();
const hasMore = results.results.length > limit;
const events = results.results.slice(0, limit).map(e => ({
event_id: e.event_id,
type: e.event_type,
sender: e.sender,
origin_server_ts: e.origin_server_ts,
content: JSON.parse(e.content),
room_id: roomId,
}));
const response: any = {
chunk: events,
};
if (hasMore && events.length > 0) {
response.next_batch = events[events.length - 1].origin_server_ts.toString();
}
return c.json(response);
});
// GET /_matrix/client/v1/rooms/:roomId/relations/:eventId/:relType - Get relations by type
app.get('/_matrix/client/v1/rooms/:roomId/relations/:eventId/:relType', requireAuth(), async (c) => {
const userId = c.get('userId');
const roomId = c.req.param('roomId');
const eventId = c.req.param('eventId');
const relType = c.req.param('relType');
const db = c.env.DB;
// Check membership
const membership = await db.prepare(`
SELECT membership FROM room_memberships WHERE room_id = ? AND user_id = ?
`).bind(roomId, userId).first<{ membership: string }>();
if (!membership || !['join', 'leave'].includes(membership.membership)) {
return Errors.forbidden('Not a member of this room').toResponse();
}
// Get pagination params
const limit = Math.min(parseInt(c.req.query('limit') || '50'), 100);
const dir = c.req.query('dir') || 'b';
// Query relations by type
const results = await db.prepare(`
SELECT e.event_id, e.event_type, e.sender, e.origin_server_ts, e.content
FROM events e
WHERE e.room_id = ? AND e.relates_to_event_id = ? AND e.relation_type = ?
ORDER BY e.origin_server_ts ${dir === 'b' ? 'DESC' : 'ASC'}
LIMIT ?
`).bind(roomId, eventId, relType, limit + 1).all<{
event_id: string;
event_type: string;
sender: string;
origin_server_ts: number;
content: string;
}>();
const hasMore = results.results.length > limit;
const events = results.results.slice(0, limit).map(e => ({
event_id: e.event_id,
type: e.event_type,
sender: e.sender,
origin_server_ts: e.origin_server_ts,
content: JSON.parse(e.content),
room_id: roomId,
}));
const response: any = {
chunk: events,
};
if (hasMore && events.length > 0) {
response.next_batch = events[events.length - 1].origin_server_ts.toString();
}
return c.json(response);
});
// GET /_matrix/client/v1/rooms/:roomId/relations/:eventId/:relType/:eventType - Get relations by type and event type
app.get('/_matrix/client/v1/rooms/:roomId/relations/:eventId/:relType/:eventType', requireAuth(), async (c) => {
const userId = c.get('userId');
const roomId = c.req.param('roomId');
const eventId = c.req.param('eventId');
const relType = c.req.param('relType');
const eventType = c.req.param('eventType');
const db = c.env.DB;
// Check membership
const membership = await db.prepare(`
SELECT membership FROM room_memberships WHERE room_id = ? AND user_id = ?
`).bind(roomId, userId).first<{ membership: string }>();
if (!membership || !['join', 'leave'].includes(membership.membership)) {
return Errors.forbidden('Not a member of this room').toResponse();
}
const limit = Math.min(parseInt(c.req.query('limit') || '50'), 100);
const dir = c.req.query('dir') || 'b';
// Query relations by type and event type
const results = await db.prepare(`
SELECT e.event_id, e.event_type, e.sender, e.origin_server_ts, e.content
FROM events e
WHERE e.room_id = ? AND e.relates_to_event_id = ? AND e.relation_type = ? AND e.event_type = ?
ORDER BY e.origin_server_ts ${dir === 'b' ? 'DESC' : 'ASC'}
LIMIT ?
`).bind(roomId, eventId, relType, eventType, limit + 1).all<{
event_id: string;
event_type: string;
sender: string;
origin_server_ts: number;
content: string;
}>();
const hasMore = results.results.length > limit;
const events = results.results.slice(0, limit).map(e => ({
event_id: e.event_id,
type: e.event_type,
sender: e.sender,
origin_server_ts: e.origin_server_ts,
content: JSON.parse(e.content),
room_id: roomId,
}));
const response: any = {
chunk: events,
};
if (hasMore && events.length > 0) {
response.next_batch = events[events.length - 1].origin_server_ts.toString();
}
return c.json(response);
});
// GET /_matrix/client/v1/rooms/:roomId/threads - List threads in room
app.get('/_matrix/client/v1/rooms/:roomId/threads', requireAuth(), async (c) => {
const userId = c.get('userId');
const roomId = c.req.param('roomId');
const db = c.env.DB;
// Check membership
const membership = await db.prepare(`
SELECT membership FROM room_memberships WHERE room_id = ? AND user_id = ?
`).bind(roomId, userId).first<{ membership: string }>();
if (!membership || !['join', 'leave'].includes(membership.membership)) {
return Errors.forbidden('Not a member of this room').toResponse();
}
const limit = Math.min(parseInt(c.req.query('limit') || '50'), 100);
const include = c.req.query('include') || 'all'; // 'all' or 'participated'
// Find thread roots (events that have replies with m.thread relation)
let query = `
SELECT DISTINCT e.event_id, e.event_type, e.sender, e.origin_server_ts, e.content
FROM events e
WHERE e.room_id = ? AND e.event_id IN (
SELECT DISTINCT relates_to_event_id FROM events
WHERE room_id = ? AND relation_type = 'm.thread'
)
`;
const params: any[] = [roomId, roomId];
if (include === 'participated') {
query += ` AND (e.sender = ? OR EXISTS (
SELECT 1 FROM events r WHERE r.relates_to_event_id = e.event_id AND r.sender = ?
))`;
params.push(userId, userId);
}
query += ` ORDER BY e.origin_server_ts DESC LIMIT ?`;
params.push(limit);
const results = await db.prepare(query).bind(...params).all<{
event_id: string;
event_type: string;
sender: string;
origin_server_ts: number;
content: string;
}>();
const threads = results.results.map(e => ({
event_id: e.event_id,
type: e.event_type,
sender: e.sender,
origin_server_ts: e.origin_server_ts,
content: JSON.parse(e.content),
room_id: roomId,
}));
return c.json({
chunk: threads,
});
});
export default app;