Sha256: 2dff75d8609176fde148d74b8e3499a1a6a2926144637177dd47999db969aad8

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

require 'net/http'
require 'json'

load File.expand_path("../tasks/slack.rake", __FILE__)

module Slackistrano

  #
  #
  #
  def self.post(team: nil, token: nil, webhook: nil, via_slackbot: false, payload: {})
    if via_slackbot
      post_as_slackbot(team: team, token: token, webhook: webhook, payload: payload)
    else
      post_as_webhook(team: team, token: token, webhook: webhook, payload: payload)
    end
  rescue => e
    error("[slackistrano] Error notifying Slack!")
    error("[slackistrano]   Error: #{e.inspect}")
  end

  #
  #
  #
  def self.post_as_slackbot(team: nil, token: nil, webhook: nil, payload: {})
    uri = URI(URI.encode("https://#{team}.slack.com/services/hooks/slackbot?token=#{token}&channel=#{payload[:channel]}"))

    text = payload[:attachments].collect { |a| a[:text] }.join("\n")

    Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|
      http.request_post uri, text
    end
  end

  #
  #
  #
  def self.post_as_webhook(team: nil, token: nil, webhook: nil, payload: {})
    params = {'payload' => payload.to_json}

    if webhook.nil?
      webhook = "https://#{team}.slack.com/services/hooks/incoming-webhook"
      params.merge!('token' => token)
    end

    uri = URI(webhook)
    Net::HTTP.post_form(uri, params)
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
slackistrano-2.0.0 lib/slackistrano/capistrano.rb