OperationCode / operationcode_bot

Slack bot for responding to Slack events and handling interactive messages. (not currently in use)
MIT License
8 stars 37 forks source link

OperationCodeBot

Build Status Code Climate Test Coverage

OperationCode Bot is a bot built to deal with the Slack Events API. When a subscribed event occurs:

It also handles interactive message button presses. When a button click clicked:

Installation

Usage

Adding New Button Responses

Button Presses are called by as a class by way of the callback_id passed in from the slack API. To handle a new action define a new class in lib/button_press. The #process method must be defined. See the existing classes for more help.

Adding new help menu items

To add a new item to the help menu simply create a new class in lib/help_menu. See existing help menu classes for more help. Then you'll just need to add the messages template with $CLASS_NAME_message.txt.erb in views/help_menu/.

Adding A New Event

To create a new event, within the operationcode_bot.rb file, simply define a new private method with the same name as the method you want to handle.

For example, if you wanted to write some code any time someone pins an item (the pin_added event) you would define a new method like so:

private

def pin_added(data, token: nil)
  logger.add "Got pin_added event with data: #{data}"
  empty_response
end

You can now write your business logic inside of this method. If your logic is complex (more than a 5-10 lines) I'd recommend using a ruby object. There is an Event class that can be inherited from to make your life a bit easier. See Event::TeamJoin as a reference.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/OperationCode/operationcode_bot. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.