Componette

Componette

coolin-cz

coolin-cz / slackMessenger

Nette addon which allow log Errors and send messages to Slack

download-cloud-line composer require my/slack-messenger

Slack Messenger

Latest Version Issues License

This Nette extension package allows you to log your errors and send messages to Slack.

Instalation

  • Download

composer require coolin/slack-messenger

  • Registration
extensions:
	slackMessenger: Coolin\SlackMessenger\SlackExtension
  • Minimal configuration
slackMessenger:
	hook: 'YOUR_SLACK_WEBHOOK'
	channel: '#general'

Configuration

Package contains two services. Messenger and Logger. Both of them can be configured by global settings or, they can have specific configuration. If you use global and specific settings at once, specific setings will be always used.

slackMessenger:
    hook: 'YOUR_SLACK_WEBHOOK'
    channel: '#globalChannel'
    timeout: 30
    name: 'Slack Bot'
    title: 'globalTitle'
    color: 'globalColor'
    icon: 'globalIcon'
    messenger:
        enable: true
        channel: '#messengerChannel'
        name: 'Slack Bot'
        title: 'messengerTitle'
        color: 'messengerColor'
        icon: 'messengerIcon'
    logger:
        enable: false
        channel: '#loggerChannel'
        name: 'Slack Bot'
        title: 'loggerTitle'
        color: 'loggerColor'
        icon: 'loggerIcon'

Messenger

for sending messages from aplication you have to inject Messenger first. You can do in only if you have enabled Messenger in config.neon

  /** @var \Coolin\SlackMessenger\Messenger @inject*/
  public $slack;
  
  public function send(){
    //variant 1    
    $this->slack->send('Your Message');
    
    //variant 2
    $message = new \Coolin\SlackMessenger\Message();
    $message->setChannel('#general');
    $message->setName('Awesome Bot');
    $message->setText('I\'m alive!');
    
    $this->slack->sendMessage($message);
    $this->slack->sendMessage($message, null, self::ALT_SLACK_HOOK); // ignore Slack hook from config and use specific one
  }

In both variants, if you omit some setting, default setting from config.neon will be used instead.

Formatting

Class Coolin\SlackMessenger\Formater contains basic functions for text formatting.

$message->setText('Normal text ' . Formatter::bold('bold text'));

No release at this moment. Try to create first one.

bar-chart-fill

Statistics

download-cloud-fill
N/A
star-fill
0
bug-fill
0
flashlight-fill
4.2y
price-tag-2-line

Badges

guide-fill

Dependencies

php (>=7.1)
ext-json (*)
nette/di (~3.0)
Componette Componette felix@nette.org