Skip to content

Commit 8cd988f

Browse files
Ma-vetaylorotwell
andauthored
feat: support threaded replies for SlackMessage (#94)
* feat: support threaded replies for SlackMessage * formatting --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent b783be6 commit 8cd988f

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

src/Slack/SlackMessage.php

+32
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@ class SlackMessage implements Arrayable
7171
*/
7272
protected ?string $username = null;
7373

74+
/**
75+
* Unique, per-channel, timestamp for each message. If provided, send message as a thread reply to this message.
76+
*/
77+
protected ?string $threadTs = null;
78+
79+
/**
80+
* If sending message as reply to thread, whether to 'broadcast' a reference to the thread reply to the parent conversation.
81+
*/
82+
protected ?bool $broadcastReply = null;
83+
7484
/**
7585
* Set the Slack channel the message should be sent to.
7686
*/
@@ -238,6 +248,26 @@ public function username(string $username): self
238248
return $this;
239249
}
240250

251+
/**
252+
* Set the thread timestamp (message ID) to send as reply to thread.
253+
*/
254+
public function threadTimestamp(?string $threadTimestamp): self
255+
{
256+
$this->threadTs = $threadTimestamp;
257+
258+
return $this;
259+
}
260+
261+
/**
262+
* Only applicable if threadTimestamp is set. Broadcasts a reference to the threaded reply to the parent conversation.
263+
*/
264+
public function broadcastReply(?bool $broadcastReply = true): self
265+
{
266+
$this->broadcastReply = $broadcastReply;
267+
268+
return $this;
269+
}
270+
241271
/**
242272
* Get the instance as an array.
243273
*/
@@ -258,6 +288,8 @@ public function toArray(): array
258288
'icon_url' => $this->image,
259289
'metadata' => $this->metaData?->toArray(),
260290
'mrkdwn' => $this->mrkdwn,
291+
'thread_ts' => $this->threadTs,
292+
'reply_broadcast' => $this->broadcastReply,
261293
'unfurl_links' => $this->unfurlLinks,
262294
'unfurl_media' => $this->unfurlMedia,
263295
'username' => $this->username,

tests/Slack/Feature/SlackMessageTest.php

+26
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,32 @@ public function it_can_unfurl_media(): void
187187
]);
188188
}
189189

190+
/** @test */
191+
public function it_can_reply_as_thread(): void
192+
{
193+
$this->sendNotification(function (SlackMessage $message) {
194+
$message->text('See https://api.slack.com/methods/chat.postMessage for more information.');
195+
$message->threadTimestamp('123456.7890');
196+
})->assertNotificationSent([
197+
'channel' => '#ghost-talk',
198+
'text' => 'See https://api.slack.com/methods/chat.postMessage for more information.',
199+
'thread_ts' => '123456.7890',
200+
]);
201+
}
202+
203+
/** @test */
204+
public function it_can_send_threaded_reply_as_broadcast_reference(): void
205+
{
206+
$this->sendNotification(function (SlackMessage $message) {
207+
$message->text('See https://api.slack.com/methods/chat.postMessage for more information.');
208+
$message->broadcastReply(true);
209+
})->assertNotificationSent([
210+
'channel' => '#ghost-talk',
211+
'text' => 'See https://api.slack.com/methods/chat.postMessage for more information.',
212+
'reply_broadcast' => true,
213+
]);
214+
}
215+
190216
/** @test */
191217
public function it_can_set_the_bot_user_name(): void
192218
{

0 commit comments

Comments
 (0)