0.6.1 • Published 8 years ago
slacklibbot v0.6.1
SlackLibBot
A Slack bot framework written in TypeScript
Installation
> npm install slacklibbot --saveExample
import { start, setup } from 'slacklibbot'
const bot = setup({ name: 'Bot' })
bot.register('my-command', 'Description', async (bot, msg, cfg, params) => {
  const user = bot.users.find(user => user.id === msg.user)
  await bot.postMessage({ channel: bot.channel, text: `Msg recvd: ${params.join(' ')}`, ...cfg.defaultParams })
  console.log('Message received from ', user!.name)
})
start()Configuration API
Configuration Defaults
// This can be overridden at any time
interface DefaultConfig {
  token: 'slack-bot-token',
  name: 'SlacklibBot',
  emoji: ':robot_face:',
  channel: 'general',
  timezone: 8
}setup
This returns an object with the getter and setter functions used to control your configuration.
// Signature
interface Configuration {
  setConfig: SetConfig // Async function to update your configuration
  getConfig: GetConfig // Sync function to retrieve your configuration
  register: RegisterFunction
}
// privateKeys are keys that cannot be retrieved using @bot get [key]
// If you have passwords or tokens in your configuration, add those configuration keys to the privateKeys array when setting up
configure<YourConfig>(config: YourConfig & Partial<DefaultConfig>, privateKeys: string[]): Promise<Configuration>
/** ./config.ts */
import { setup } from 'slacklibbot'
// E.g.
const { getConfig, setConfig, register } = setup({
  token: 'xoxb-1234-abc',
  myKey: 42,
  name: 'My Bot Name'
  // plus any overrides of the DefaultConfig
})
export { getConfig, setConfig, register }getConfig
DefaultParams is intended as a helper objet for calling postMessage.
It contains the message options for the bot's username and emoji.
// Included in this framework
// Signature
interface DefaultParams {
  defaultParams: {
    icon_emoji: string
    username: string
    as_user: boolean
  }
}
function getConfig(): YourConfig & DefaultConfig & DefaultParams
/** ./my-module.ts (Sample module in your code) */
import { getConfig } from './config'
const myConfig = config.getConfig()setConfig
// Signature
async function setConfig(key: keyof YourConfig & DefaultConfig, value: any): Promise<YourConfig & DefaultConfig>
/** ./another-module.ts (Sample module in your code) */
import { setConfig } from './config'
async function doThing() {
  // Override a default
  await setConfig('emoji', ':thumbs_up:')
  // Set your own keys
  await setConfig('myKey', { foo: 'bar' })
}Commands API
Commands that you register are automatically added to the help response.
To call commands, you must mention the bot with the command and your parameters.
E.g. If the bot's username (configured via the Slack Bot customisation user interface) is @mybot:
> @mybot help
> @mybot set emoji :thumbs_up:
> @mybot set name SlackbotBuilt-in commands
> help
> get
> setCommand Registration
RegisterCallback
type RegisterCallback = (bot: SlackClient, message: Chat.Message, config: Config, params: string[])register
function register(command: string, description: string, callback: RegisterCallback)
// Example
import { register } from './config'
register('my-command', 'This will appear when help is caled', (bot, msg, cfg, params) => {
  bot.postMessage({
    channel: msg.channel,
    text: `Message received!`,
    ...cfg.defaultParams // This is to apply the bot's username and emoji to its message
  }, )
})Helper functions
readMessage
This allows you to write synchronous looking code that waits for a message
import { register, readMessage } from 'slacklibbot'
export interface ReadOptions {
  // Will only "read" messages that are directly to the bot
  directOnly?: boolean
  // Timeout in seconds
  timeout: number
}
// Signature
function register(bot: SlackClient, user: Users.User, options: ReadOptions): Promise<string>
// Example
register('my-command', 'My command description', (bot, msg, cfg) => {
  const msgCfg = { channel: bot.channel, ...cfg.defaultParams }
  await bot.postMessage({ ...msgCfg, text: 'Please respond:' })
  const response = await readMessage(bot, msg.user, { timeout: 10 })
  await bot.postMessage({ ...msgCfg, text: `Thanks for your response: ${response}` })
})