-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathadapter-util.ts
251 lines (229 loc) · 7.21 KB
/
adapter-util.ts
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
// Provides a collection of adapter-helpers for hubot on flowdock, which
// enhance or replace existing Flowdock adapter functionality.
// These functions return immediately if the adapter in use isn't properly
// set up, or isn't a flowdock adapter, enabling better error handling.
import { Envelope, Adapter } from "hubot"
import { Matrix } from "hubot-matrix"
import { JoinRule } from "matrix-js-sdk"
let roomIDByLowercaseName: { [lowercaseRoomName: string]: string } = {}
/**
* Returns whether a given adapter is a Matrix adapter. Using instanceof does
* not work for unclear reasons, so a type guard is introduced to do the check.
*/
function isMatrixAdapter(adapter: Adapter): adapter is Matrix {
return adapter.constructor === Matrix
}
/**
* Given a robotAdapter and a room name, returns the id of that room, based on
* adapter room information. Returns null if not found.
*
* If the adapter isn't properly set up, or doesn't support this lookup, or the
* room is unknown, returns undefined.
*/
function getRoomIdFromName(
robotAdapter: Adapter,
roomName: string,
): string | undefined {
const lowercaseRoomName = roomName.toLowerCase()
if (lowercaseRoomName in roomIDByLowercaseName) {
return roomIDByLowercaseName[lowercaseRoomName]
}
if (isMatrixAdapter(robotAdapter)) {
const rooms = robotAdapter.client?.getRooms()
roomIDByLowercaseName =
rooms?.reduce(
(acc, room) => {
acc[room.normalizedName.toLowerCase()] = room.roomId
const canonicalAlias = room.getCanonicalAlias()
if (canonicalAlias !== null) {
acc[canonicalAlias.toLowerCase()] = room.roomId
}
return acc
},
{} as typeof roomIDByLowercaseName,
) ?? roomIDByLowercaseName
return roomIDByLowercaseName[lowercaseRoomName]
}
return undefined
}
/**
* Given a robotAdapter and a room id, returns the name of that room, based on
* adapter room information. Returns null if not found.
*
* If the adapter isn't properly set up, or doesn't support this lookup,
* returns undefined.
*/
function getRoomNameFromId(
robotAdapter: Adapter,
roomId: string,
): string | undefined {
if (isMatrixAdapter(robotAdapter)) {
return robotAdapter.client?.getRoom(roomId)?.name
}
return undefined
}
export type RoomInfo = {
roomId: string
roomName: string
accessType: "public" | "non-public"
}
/**
* Given a robotAdapter and a room id or name, returns the room info for that
* room, based on adapter room information. Returns undefined if not found.
*
* If the adapter isn't properly set up, or doesn't support this lookup,
* returns null.
*
* The flow object returned from this function has the same structure as the
* response listed for ‘Get a flow’ at https://www.flowdock.com/api/flows.
*/
function getRoomInfoFromIdOrName(
robotAdapter: Adapter,
roomIdOrName: string,
): RoomInfo | undefined {
if (!isMatrixAdapter(robotAdapter)) {
return undefined
}
const rooms = robotAdapter.client?.getRooms() ?? []
const matchingRoom = rooms.find(
(room) =>
room.roomId === roomIdOrName ||
room.name.toLowerCase() === roomIdOrName.toLowerCase(),
)
if (matchingRoom) {
return {
roomId: matchingRoom.roomId,
roomName: matchingRoom.name,
accessType:
matchingRoom.getJoinRule() === JoinRule.Public
? "public"
: "non-public",
}
}
return undefined
}
/**
* Given a robotAdapter, returns an array of ids for rooms that the robot has
* joined, based on adapter room information.
*
* Returns an empty array if the robot has not joined any rooms. If the adapter
* isn't properly set up, or doesn't support this lookup, returns an empty array.
*/
async function getAllJoinedRoomIds(robotAdapter: Adapter): Promise<string[]> {
if (isMatrixAdapter(robotAdapter)) {
return (await robotAdapter.client?.getJoinedRooms())?.joined_rooms ?? []
}
return []
}
/**
* Given a robotAdapter, returns an array of ids for public (not non-public)
* rooms that the robot has joined, based on adapter room information.
*
* Returns an empty array if the robot has not joined any rooms or if all
* joined rooms are non-public. If the adapter isn't properly set up, or
* doesn't support this lookup, returns an empty array.
*/
async function getPublicJoinedRoomIds(
robotAdapter: Adapter,
): Promise<string[]> {
if (isMatrixAdapter(robotAdapter)) {
return (
(await robotAdapter.client?.getJoinedRooms())?.joined_rooms.filter(
(roomId) =>
getRoomInfoFromIdOrName(robotAdapter, roomId)?.accessType ===
"public",
) ?? []
)
}
return []
}
/**
* Given a robotAdapter and a room name, returns a boolean indicating whether
* or not the room name represents a valid room to this adapter, based on
* whether a room id can be found based on the room name.
*
* If the room name passed as an argument is null, or if the adapter isn't
* properly set up or isn't a flowdock adapter, returns false.
*/
function isRoomNameValid(robotAdapter: Adapter, roomName: string): boolean {
if (!roomName || !getRoomIdFromName(robotAdapter, roomName)) {
return false
}
return true
}
/**
* Given a robotAdapter and a room id, returns a boolean indicating whether or
* not the robot has joined the room, based on Flowdock flow information.
*
* If the adapter isn't properly set up, or isn't a flowdock adapter, returns
* false
*/
async function robotIsInRoom(
robotAdapter: Adapter,
roomId: string,
): Promise<boolean> {
return (await getAllJoinedRoomIds(robotAdapter)).indexOf(roomId) >= 0
}
/**
* Given a thread id, returns an encoded copy of the thread id, with dashes
* replaced.
*
* We encountered a bug constructing markdown-formatted links with some thread
* ids, specifically those ending in "--". Since encodeURIComponent doesn't
* replace dashes, we have to do a string replace as well.
*/
function encodeThreadId(threadId: string) {
return encodeURIComponent(threadId).replace(/-/g, "%2D")
}
export function isRoomNonPublic(
adapter: Adapter,
targetRoomId: string,
): boolean {
if (adapter instanceof Matrix) {
return (
getRoomInfoFromIdOrName(adapter, targetRoomId)?.accessType !== "public" ??
false
)
}
return false
}
/**
* Generates a matrix URL for a particular event, room, and server.
*/
export function matrixUrlFor(
roomId: string,
serverName: string,
eventId: string,
): string {
return `https://matrix.to/#/${roomId}/${eventId}?via=${serverName}`
}
/**
* Sends the given messages to the given thread id; if we don't know how to
* send to a thread with the given adapter, sends a regular message.
*/
export function sendThreaded(
adapter: Adapter,
envelope: Envelope,
threadId: string,
...messages: string[]
) {
if (threadId === undefined || !isMatrixAdapter(adapter)) {
// If it isn't the matrix adapter or there is no thread, fall back on a standard message.
adapter.send(envelope, ...messages)
} else {
messages.forEach((message) =>
adapter.sendThreaded(envelope, threadId, message),
)
}
}
export {
getRoomIdFromName,
getRoomNameFromId,
getRoomInfoFromIdOrName,
getAllJoinedRoomIds,
getPublicJoinedRoomIds,
encodeThreadId,
isRoomNameValid,
robotIsInRoom,
isMatrixAdapter,
}