darkmatus/slack

一个简单的PHP包,用于向Slack发送消息,注重易用性和优雅的语法。

1.0.0 2022-01-17 11:40 UTC

This package is auto-updated.

Last update: 2024-09-17 17:47:56 UTC


README

一个简单的PHP包,用于通过 Slack接收Webhook 发送消息,注重易用性和优雅的语法。基于不再维护的 maknz/slack

要求

  • PHP 8 或更高版本

安装

您可以使用 Composer 包管理器安装此包。您可以在项目根目录中运行以下命令来安装它

composer require darkmatus/slack

然后在您的Slack账户上为该包创建一个 接收Webhook,以便包可以使用。您将需要Webhook URL来实例化客户端(或在使用Laravel的情况下配置文件)。

基本用法

实例化客户端

// Instantiate without defaults
$client = new Darkmatus\Slack\Client('https://hooks.slack.com/...');

// Instantiate with defaults, so all messages created
// will be sent from 'Cyril' and to the #accounting channel
// by default. Any names like @regan or #channel will also be linked.
$settings = [
	'username' => 'Cyril',
	'channel' => '#accounting',
	'linkNames' => true
];

$client = new Darkmatus\Slack\Client('https://hooks.slack.com/...', $settings);

设置

默认设置已经很好,但您可能希望为您的客户端设置默认行为,以便用于所有发送的消息。 所有设置都是可选的,您不需要提供任何。如果没有提供,我们将回退到在Webhook集成中配置的内容,这些内容在Slack上 管理,或者使用我们合理的默认设置。

发送消息

发送基本消息(《预览》)

$client->send('Hello world!');

向非默认通道发送消息

$client->to('#accounting')->send('Are we rich yet?');

向用户发送消息

$client->to('@regan')->send('Yo!');

以不同的机器人名称向通道发送消息(《预览》)

$client->from('Jake the Dog')->to('@FinnTheHuman')->send('Adventure time!');

使用不同图标发送消息(《预览”)

// Either with a Slack emoji
$client->to('@regan')->withIcon(':ghost:')->send('Boo!');

// or a URL
$client->to('#accounting')->withIcon('http://example.com/accounting.png')->send('Some accounting notification');

发送附件(《预览”)

$client->to('#operations')->attach([
	'fallback' => 'Server health: good',
	'text' => 'Server health: good',
	'color' => 'danger',
])->send('New alert from the monitoring system'); // no message, but can be provided if you'd like

发送包含字段的附件(《预览”)

$client->to('#operations')->attach([
	'fallback' => 'Current server stats',
	'text' => 'Current server stats',
	'color' => 'danger',
	'fields' => [
		[
			'title' => 'CPU usage',
			'value' => '90%',
			'short' => true // whether the field is short enough to sit side-by-side other fields, defaults to false
		],
		[
			'title' => 'RAM usage',
			'value' => '2.5GB of 4GB',
			'short' => true
		]
	]
])->send('New alert from the monitoring system'); // no message, but can be provided if you'd like

发送包含作者的附件(《预览”)

$client->to('@regan')->attach([
	'fallback' => 'Keep up the great work! I really love how the app works.',
	'text' => 'Keep up the great work! I really love how the app works.',
	'authorName' => 'Jane Appleseed',
	'authorLink' => 'https://yourapp.com/feedback/5874601',
	'authorIcon' => 'https://static.pexels.com/photos/61120/pexels-photo-61120-large.jpeg'
])->send('New user feedback');

高级用法

Markdown

默认情况下,消息文本启用Markdown,但附件字段禁用Markdown。此行为可以在设置中或动态配置

启用或禁用Markdown的消息

$client->to('#weird')->disableMarkdown()->send('Disable *markdown* just for this message');

$client->to('#general')->enableMarkdown()->send('Enable _markdown_ just for this message');

指定哪些字段应启用Markdown的附件

$client->to('#operations')->attach([
	'fallback' => 'It is all broken, man',
	'text' => 'It is _all_ broken, man',
	'pretext' => 'From user: *JimBob*',
	'color' => 'danger',
	'mrkdwn_in' => ['pretext', 'text']
])->send('New alert from the monitoring system');

显式创建消息

为了方便起见,通过在客户端上调用消息方法隐式创建消息对象。但我们也可以显式这样做,以避免触碰到魔术方法。

// Implicitly
$client->to('@regan')->send('I am sending this implicitly');

// Explicitly
$message = $client->createMessage();

$message->to('@regan')->setText('I am sending this explicitly');

$message->send();

附件

当使用附件时,最简单的方法是提供示例中所示的数据数组,实际上这些数据在底层被转换为附件对象。您也可以将附件对象附加到消息上

$attachment = new Attachment([
	'fallback' => 'Some fallback text',
	'text' => 'The attachment text'
]);

// Explicitly create a message from the client
// rather than using the magic passthrough methods
$message = $client->createMessage();

$message->attach($attachment);

// Explicitly set the message text rather than
// implicitly through the send method
$message->setText('Hello world')->send();

每个附件字段也是一个对象,即附件字段对象。您也可以使用它们代替数组形式中的数据

$attachment = new Attachment([
	'fallback' => 'Some fallback text',
	'text' => 'The attachment text',
	'fields' => [
		new AttachmentField([
			'title' => 'A title',
			'value' => 'A value',
			'short' => true
		])
	]
]);

如果您有很多附件和字段,您也可以直接设置它们

// implicitly create a message and set the attachments
$client->setAttachments($bigArrayOfAttachments);

// or explicitly
$client->createMessage()->setAttachments($bigArrayOfAttachments);
$attachment = new Attachment([]);

$attachment->setFields($bigArrayOfFields);

贡献

如果您遇到问题、发现错误或对功能有建议,请在Github上记录和提交问题。如果您想亲自尝试,请分支这个包并提交拉取请求。请包括任何新增或更改功能的测试。如果是错误,请包括回归测试。