magnetikonline / slack-post

Node.js module for sending posts to Slack via the incoming webhooks API. Supports both simple and advanced messaging formats.

Home Page:https://www.npmjs.com/package/slackpost

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Slack Post

Node.js module for sending posts to Slack via the incoming webhooks API. Supports both simple and advanced messaging formats.

NPM

An existing incoming webhook integration will be required and can be created via the Slack administration system to successfully use this module.

For further API details refer to the Incoming Webhooks and Message Attachments (advanced messaging) documents.

Methods

slackPost.post(webhookURL,postText)

  • Returns new slackPost message instance.
  • webhookURL must be in the format expected by the Slack administration integration endpoint - method will throw an error if web hook URL invalid.
  • postText is implemented as follows:
    • For simple messages (text posts) this will be the message text.
    • For advanced messages will be used as the fall back text for scenarios where advanced rendering is unsupported.

Example:

let slackPost = require('slackpost');

let myNewPost = slackPost.post(
	'https://hooks.slack.com/services/ABCDEF012/012345ABC/fjdke456HRekdftFOGRPh21s',
	'Hello, HAL. Do you read me, HAL?'
);

slackPost.setUsername(name)

  • Override default username for the incoming webhook.
  • Returns slackPost instance.

slackPost.setChannel(channel)

  • Override default target channel for the incoming webhook with either:
    • An alternative channel.
    • Direct message Slack username.
  • Format must be one of #channel or @username, anything else will throw an error.
  • Returns slackPost instance.

slackPost.setIconEmoji(iconEmoji)

  • Override default icon for incoming webhook with a defined emoji.
  • Provide desired emoji name without leading/trailing : characters.
  • Returns slackPost instance.

Example:

let slackPost = require('slackpost');

let myNewPost = slackPost.post(WEBHOOK_URL,'Message');

// set the post icon to ":chicken:"
myNewPost.setIconEmoji('chicken');

slackPost.setIconURL(iconURL)

  • Override the default icon for incoming webhook with a public image URL.
  • Returns slackPost instance.

slackPost.enableUnfurlLinks()

  • When enabled, Slack will automatically attempt to extract and display summarized details for URLs within the post content.
  • By default URLs referenced in posts made by an incoming webhook will not be unfurled - unless they are deemed media content links.
  • Returns slackPost instance.

slackPost.disableMarkdown()

  • When disabled, Slack will avoid marking up post text with Markdown-like syntax.
  • Method applies only to the simple message format, which by default is automatically marked up.
  • Returns slackPost instance.

slackPost.setColor(color)

  • Sets left hand border color for advanced message format posts.
  • Given color is either a HTML color code (e.g. #439fe0) or one of good, warning or danger.
  • Color names are also defined at require('slackpost').COLOR_LIST.
  • If color is undefined then GOOD will be used by default.
  • Returns slackPost instance.

Example:

let slackPost = require('slackpost');

let myNewPost = slackPost.post(WEBHOOK_URL,'Message');

// color options
myNewPost.setColor(slackPost.COLOR_LIST.GOOD);
myNewPost.setColor(slackPost.COLOR_LIST.WARNING);
myNewPost.setColor(slackPost.COLOR_LIST.DANGER);
myNewPost.setColor('#439fe0');

slackPost.setPreText(preText[,enableMarkdown])

  • Set the optional text that appears above the advanced message block.
  • If enableMarkdown is true, will action Slack Markdown-like formatting of given preText.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

slackPost.setAuthor(name[,authorURL][,iconURL])

  • Sets a small display section at the top of the message for the post author.
  • Optional authorURL allows setting of a URL for the author (will link both the name and iconURL within the rendered Slack post).
  • Optional iconURL will set a small 16x16px image to the left of the author name.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

slackPost.setTitle(title[,URL])

  • Sets a title, in bold text near the top of the message area.
  • Optional URL allows for the title to be hyperlinked.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

slackPost.setRichText(richText[,enableMarkdown])

  • Sets the richText (main text) for an advanced message post.
    • Content will automatically collapse if it contains 700+ characters or 5+ linebreaks, and will display a "Show more..." link to expand the content.
  • If enableMarkdown is true, will action Slack Markdown-like formatting of given richText.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

slackPost.addField(title,value[,isShort])

  • Adds message meta data in a tabular format at the footer of the message area. Method can be called multiple times to add multiple field items to the rendered table.
  • Optional isShort boolean controls if field data is considered short enough to allow side-by-side tabular display with the following/next field item, otherwise field title/value will consume its own full table row.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

Example:

let slackPost = require('slackpost');

let myNewPost = slackPost.post(WEBHOOK_URL,'Message');

// add some fields - Name and Company will appear side-by-side
myNewPost.addField('Name','Don Draper',true);
myNewPost.addField('Company','Sterling Cooper',true);

// Job title field will appear on its own row
myNewPost.addField('Job title','Creative Director');

slackPost.enableFieldMarkdown()

  • When called, will action Slack to markup field item values added via slackPost.addField() with Markdown-like syntax.
  • Method only applies to the advanced message format with one or more fields created.
  • Returns slackPost instance.

slackPost.setThumbnail(URL)

  • Provides a public URL to an image that will be displayed as a thumbnail to the right of an advanced message.
  • Image formats of GIF, JPEG, PNG and BMP are supported.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

slackPost.setImage(URL)

  • Provides a public URL to an image that will be displayed as an image inside the message area.
  • Image formats of GIF, JPEG, PNG and BMP are supported.
  • Large images will be resized to a maximum width of 400px or a maximum height of 500px - whilst maintaining aspect ratio.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

slackPost.setFooter(text[,timestamp][,iconURL])

  • Adds brief text to contextualize and identify referenced post content.
  • Optional timestamp provided as a Unix timestamp will display a reference date/time to the right of the footer credit.
  • Optional iconURL will set a small 16x16px image to the left of the footer text.
  • When called will enable the advanced message format.
  • Returns slackPost instance.

slackPost.send(callback)

  • Sends a composed message, using the methods presented above to the Slack incoming webhook API endpoint.
  • callback is a function, receiving exactly one argument:
    • Upon success argument will be null.
    • In case of error, argument will be an instance of Error().

Example usage

Sending a simple message:

let slackPost = require('slackpost');

let simpleMsg = slackPost.post(
	'https://hooks.slack.com/services/ABCDEF012/012345ABC/fjdke456HRekdftFOGRPh21s',
	'Hello, HAL. Do you read me, HAL?'
);

simpleMsg
	.setUsername('HAL9000')
	.setChannel('#spaceship')
	.enableUnfurlLinks()
	.disableMarkdown();

simpleMsg.send((err) => {

	if (err) {
		// error sending message to Slack API
		console.dir(err);
		return;
	}

	// success!
});

Sending an advanced message:

let slackPost = require('slackpost');

let advancedMsg = slackPost.post(
	'https://hooks.slack.com/services/ABCDEF012/012345ABC/fjdke456HRekdftFOGRPh21s',
	'This is my fallback text for mobile notifications and IRC users/etc.'
);

advancedMsg
	.setUsername('magnetik')
	.setChannel('@alexandra')
	.setColor(slackPost.COLOR_LIST.WARNING)
	.setAuthor(
		'Peter Mescalchin',
		'http://magnetikonline.com'
	)
	.setRichText('This is some *rich-text* messaging!',true);

advancedMsg.send((err) => {

	if (err) {
		// error sending message to Slack API
		console.dir(err);
		return;
	}

	// success!
});

About

Node.js module for sending posts to Slack via the incoming webhooks API. Supports both simple and advanced messaging formats.

https://www.npmjs.com/package/slackpost

License:MIT License


Languages

Language:JavaScript 100.0%