hubot-slack-attachment

1.0.1 • Public • Published

Re-enable slack-attachment in hubot-slack

When Slack introduced version 3 of their hubot-slack adapter the old slack-attachment was removed due to constraints in the RTM API.

This module attempts to reintroduce the event using Incoming Webhooks to somehow replicate the lost feature.

To use again slack-attachment events, just run the following in your hubot repository:

npm install hubot-slack-attachment --save

And then add hubot-slack-attachment to external-scripts.json.

Last but not least, you need to add the environment variable HUBOT_SLACK_INCOMING_WEBHOOK to the URL for the new incoming webhook you've just defined.

Usage

Emit a slack.attachment event with the following parameters:

robot.emit 'slack.attachment',
  message: msg.message
  content:
    # see https://api.slack.com/docs/attachments 
    text: "Attachment text"
    fallback: "Attachment fallback"
    fields: [{
      title: "Field title"
      value: "Field value"
    }]
  channel: "#general" # optional, defaults to message.room 
  username: "foobot" # optional, defaults to robot.name 
  icon_url: "..." # optional 
  icon_emoji: "..." # optional 

Known Issues

  • The user name sending the attachment will be #{robot.name} (bot), so if your bot is named hubot it will appear as hubot (bot)

Contributors

The following people deserve as much credit as I do for contributing to make this little project better:

License

This software is licensed under MIT License. See [LICENSE][LICENSE] for more details.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    43
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    43
  • 1.0.0
    0
  • 0.1.0
    0

Package Sidebar

Install

npm i hubot-slack-attachment

Weekly Downloads

43

Version

1.0.1

License

MIT

Last publish

Collaborators

  • inkel