-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathmessage-command.ts
More file actions
297 lines (286 loc) · 10.7 KB
/
Copy pathmessage-command.ts
File metadata and controls
297 lines (286 loc) · 10.7 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
import type { Command } from "commander";
import type { CliContext } from "./context.ts";
import {
deleteMessage,
editMessage,
handleMessageGet,
handleMessageList,
reactOnTarget,
sendMessage,
type MessageCommandOptions,
} from "./message-actions.ts";
import { draftMessage } from "./draft-actions.ts";
function collectOptionValue(value: string, previous: string[] = []): string[] {
return [...previous, value];
}
export function registerMessageCommand(input: { program: Command; ctx: CliContext }): void {
const messageCmd = input.program
.command("message")
.description("Read/write Slack messages (token-efficient JSON)");
messageCmd
.command("get", { isDefault: true })
.description("Fetch a single Slack message (with thread summary if any)")
.argument("<target>", "Slack message URL, #channel, or channel ID")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--ts <ts>", "Message ts (required when using #channel/channel id)")
.option("--thread-ts <ts>", "Thread root ts hint (useful for thread permalinks)")
.option(
"--max-body-chars <n>",
"Max content characters to include (default 8000, -1 for unlimited)",
"8000",
)
.option("--include-reactions", "Include reactions + reacting users")
.option("--resolve-users", "Resolve user IDs to user profiles")
.option(
"--refresh-users",
"Refresh user profile cache before resolving user IDs (implies --resolve-users)",
)
.action(async (...args) => {
const [targetInput, options] = args as [string, MessageCommandOptions];
try {
const payload = await handleMessageGet({ ctx: input.ctx, targetInput, options });
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
messageCmd
.command("list")
.description("List recent channel messages, or fetch a full thread")
.argument("<target>", "Slack message URL, #channel, or channel ID")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--thread-ts <ts>", "Thread root ts (lists thread replies instead of channel history)")
.option("--ts <ts>", "Message ts (resolve message to its thread)")
.option("--limit <n>", "Max messages to return for channel history (default 25, max 200)")
.option("--oldest <ts>", "Only messages after this ts (channel history mode)")
.option("--latest <ts>", "Only messages before this ts (channel history mode)")
.option(
"--with-reaction <emoji>",
"Only include messages with this reaction (repeatable; channel history mode; requires --oldest)",
collectOptionValue,
[],
)
.option(
"--without-reaction <emoji>",
"Only include messages without this reaction (repeatable; channel history mode; requires --oldest)",
collectOptionValue,
[],
)
.option(
"--max-body-chars <n>",
"Max content characters to include (default 8000, -1 for unlimited)",
"8000",
)
.option("--include-reactions", "Include reactions + reacting users")
.option("--resolve-users", "Resolve user IDs to user profiles")
.option(
"--refresh-users",
"Refresh user profile cache before resolving user IDs (implies --resolve-users)",
)
.action(async (...args) => {
const [targetInput, options] = args as [string, MessageCommandOptions];
try {
const payload = await handleMessageList({ ctx: input.ctx, targetInput, options });
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
messageCmd
.command("edit")
.description("Edit a message")
.argument("<target>", "Slack message URL, #channel, or channel ID")
.argument("<text>", "New message text")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--ts <ts>", "Message ts (required when using #channel/channel id)")
.option("--blocks <path>", "Read Block Kit blocks JSON from file or '-'")
.action(async (...args) => {
const [targetInput, text, options] = args as [
string,
string,
{ workspace?: string; ts?: string; blocks?: string },
];
try {
const payload = await editMessage({
ctx: input.ctx,
targetInput,
text,
options,
});
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
messageCmd
.command("delete")
.description("Delete a message")
.argument("<target>", "Slack message URL, #channel, or channel ID")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--ts <ts>", "Message ts (required when using #channel/channel id)")
.action(async (...args) => {
const [targetInput, options] = args as [string, { workspace?: string; ts?: string }];
try {
const payload = await deleteMessage({
ctx: input.ctx,
targetInput,
options,
});
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
messageCmd
.command("send")
.description("Send a message (optionally into a thread)")
.argument("<target>", "Slack message URL, #name/name, or channel id")
.argument("[text]", "Message text to post (optional when using --attach)")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--thread-ts <ts>", "Thread root ts to post into (optional)")
.option("--attach <path>", "Attach a local file path (repeatable)", collectOptionValue, [])
.option(
"--blocks <path>",
"Path to a JSON file containing a Block Kit blocks array. Bypasses automatic markdown-to-rich-text conversion. Use '-' to read from stdin. Cannot be combined with --attach.",
)
.action(async (...args) => {
const [targetInput, text, options] = args as [
string,
string | undefined,
{ workspace?: string; threadTs?: string; attach?: string[]; blocks?: string },
];
const hasAttach = (options.attach ?? []).length > 0;
const hasBlocks = options.blocks !== undefined;
if (!text && !hasAttach && !hasBlocks) {
console.error("Error: <text> is required when no --attach files or --blocks are provided.");
process.exitCode = 1;
return;
}
if (hasBlocks && hasAttach) {
console.error("Error: --blocks cannot be combined with --attach.");
process.exitCode = 1;
return;
}
try {
const payload = await sendMessage({
ctx: input.ctx,
targetInput,
text: text ?? "",
options,
});
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
messageCmd
.command("draft")
.description("Open a rich Slack-like editor to compose and send a message")
.argument("<target>", "Slack message URL, #name/name, or channel id")
.argument("[text]", "Initial draft text (mrkdwn format)")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--thread-ts <ts>", "Thread root ts to post into (optional)")
.action(async (...args) => {
const [targetInput, text, options] = args as [
string,
string | undefined,
{ workspace?: string; threadTs?: string },
];
try {
const payload = await draftMessage({
ctx: input.ctx,
targetInput,
initialText: text,
options,
});
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
const reactCmd = messageCmd.command("react").description("Add or remove reactions");
reactCmd
.command("add")
.description("Add a reaction to a message")
.argument("<target>", "Slack message URL, #channel, or channel ID")
.argument("<emoji>", "Emoji to react with (:rocket:, rocket, or 🚀)")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--ts <ts>", "Message ts (required when using #channel/channel id)")
.action(async (...args) => {
const [targetInput, emoji, options] = args as [
string,
string,
{ workspace?: string; ts?: string },
];
try {
const payload = await reactOnTarget({
ctx: input.ctx,
action: "add",
targetInput,
emoji,
options,
});
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
reactCmd
.command("remove")
.description("Remove a reaction from a message")
.argument("<target>", "Slack message URL, #channel, or channel ID")
.argument("<emoji>", "Emoji to remove (:rocket:, rocket, or 🚀)")
.option(
"--workspace <url>",
"Workspace selector (full URL or unique substring; needed when using #channel/channel id across multiple workspaces)",
)
.option("--ts <ts>", "Message ts (required when using #channel/channel id)")
.action(async (...args) => {
const [targetInput, emoji, options] = args as [
string,
string,
{ workspace?: string; ts?: string },
];
try {
const payload = await reactOnTarget({
ctx: input.ctx,
action: "remove",
targetInput,
emoji,
options,
});
console.log(JSON.stringify(payload, null, 2));
} catch (err: unknown) {
console.error(input.ctx.errorMessage(err));
process.exitCode = 1;
}
});
}