Sha256: 3d939d820b688886a3d6c328c4d108c0faebe4cf17417c0160e8b16a8825ec40
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
require 'trello' Trello.configure do |config| config.developer_public_key = ENV['TRELLO_DEVELOPER_PUBLIC_KEY'] config.member_token = ENV['TRELLO_MEMBER_TOKEN'] end module Ruboty module Handlers class Trello < Base on /trello\s+b\s+(?<board_name>.*?)\s+l\s+(?<list_name>.*?)\s+(lb\s+(?<label_name>.*?)\s+)?(dd\s+(?<due_date>.*?)\s+)?c\s+(?<name>.*)\z/, name: 'trello', description: 'Add card to Trello' def trello(message) me = ::Trello::Member.find('me') board = me.boards.find { |board| board.name == message[:board_name] } if board.nil? message.reply "Board '#{message[:board_name]}' not found" return end list = board.lists.find { |list| list.name == message[:list_name] } if list.nil? message.reply "List '#{message[:list_name]}' not found" return end label = board.labels.find { |label| label.name == message[:label_name] } label_id = label&.id member_id = nil if ENV['TRELLO_AUTO_ASSIGN'] && message.from_name sender = message.from_name.downcase member = board.members.find do |member| member.username.downcase == sender || member.full_name.downcase.include?(sender) end member_id = member&.id end iso8601_time = Time.parse(message[:due_date]).iso8601 rescue nil new_card = ::Trello::Card.create(name: message[:name], list_id: list.id, card_labels: label_id, member_ids: member_id, due: iso8601_time) if new_card.short_url prefix = ENV['TRELLO_RESPONSE_PREFIX'] || 'Created' message.reply "#{prefix} #{new_card.short_url}" end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruboty-trello-0.1.6 | lib/ruboty/trello.rb |