issue_message.rb 1.49 KB
Newer Older
Douwe Maan's avatar
Douwe Maan committed
1
class SlackService
2
  class IssueMessage < BaseMessage
3
    attr_reader :user_name
4 5 6 7 8 9 10 11 12 13
    attr_reader :title
    attr_reader :project_name
    attr_reader :project_url
    attr_reader :issue_iid
    attr_reader :issue_url
    attr_reader :action
    attr_reader :state
    attr_reader :description

    def initialize(params)
14
      @user_name = params[:user][:name]
15 16 17 18 19 20 21 22 23 24
      @project_name = params[:project_name]
      @project_url = params[:project_url]

      obj_attr = params[:object_attributes]
      obj_attr = HashWithIndifferentAccess.new(obj_attr)
      @title = obj_attr[:title]
      @issue_iid = obj_attr[:iid]
      @issue_url = obj_attr[:url]
      @action = obj_attr[:action]
      @state = obj_attr[:state]
25
      @description = obj_attr[:description] || ''
26 27 28 29 30 31 32 33 34 35 36
    end

    def attachments
      return [] unless opened_issue?

      description_message
    end

    private

    def message
37 38 39 40 41 42
      case state
      when "opened"
        "[#{project_link}] Issue #{state} by #{user_name}"
      else
        "[#{project_link}] Issue #{issue_link} #{state} by #{user_name}"
      end
43 44 45 46 47 48 49
    end

    def opened_issue?
      action == "open"
    end

    def description_message
50 51 52 53 54
      [{
        title: issue_title,
        title_link: issue_url,
        text: format(description),
        color: "#C95823" }]
55 56 57 58 59 60 61
    end

    def project_link
      "[#{project_name}](#{project_url})"
    end

    def issue_link
62 63 64 65 66
      "[#{issue_title}](#{issue_url})"
    end

    def issue_title
      "##{issue_iid} #{title}"
67 68 69
    end
  end
end