summaryrefslogtreecommitdiff
path: root/lib/flowdock/git.rb
blob: 539fd66a510a739a2a11126322baf2246598905e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# frozen_string_literal: true
require 'flowdock'
require 'flowdock/git/builder'

module Flowdock
  class Git
    TokenError = Class.new(StandardError)

    DEFAULT_PERMANENT_REFS = [
      Regexp.new('refs/heads/master')
    ].freeze

    class << self
      def post(ref, from, to, options = {})
        Git.new(ref, from, to, options).post
      end
    end

    def initialize(ref, from, to, options = {})
      raise TokenError, "Flowdock API token not found" unless options[:token]

      @ref = ref
      @from = from
      @to = to
      @options = options
      @token = options[:token]
      @commit_url = options[:commit_url]
      @diff_url = options[:diff_url]
      @repo_url = options[:repo_url]
      @repo_name = options[:repo_name]
      @permanent_refs = options.fetch(:permanent_refs, DEFAULT_PERMANENT_REFS)
    end

    # Send git push notification to Flowdock
    def post
      messages.each do |message|
        Flowdock::Client.new(flow_token: @token).post_to_thread(message)
      end
    end

    def repo
      @options[:repo]
    end

    private

    def messages
      Git::Builder.new(repo: repo,
                       ref: @ref,
                       before: @from,
                       after: @to,
                       commit_url: @commit_url,
                       branch_url: @branch_url,
                       diff_url: @diff_url,
                       repo_url: @repo_url,
                       repo_name: @repo_name,
                       permanent_refs: @permanent_refs,
                       tags: tags
                      ).to_hashes
    end

    # Flowdock tags attached to the push notification
    def tags
      Array(@options[:tags]).map { |tag| CGI.escape(tag) }
    end
  end
end