BigW Consortium Gitlab

ci_service.rb 1.44 KB
Newer Older
1 2 3 4
# Base class for CI services
# List methods you need to implement to get your CI service
# working with GitLab Merge Requests
class CiService < Service
5 6
  default_value_for :category, 'ci'

Kirilll Zaitsev committed
7
  def valid_token?(token)
8
    self.respond_to?(:token) && self.token.present? && ActiveSupport::SecurityUtils.variable_size_secure_compare(token, self.token)
Kirilll Zaitsev committed
9
  end
10

11 12 13 14
  def supported_events
    %w(push)
  end

Kirilll Zaitsev committed
15 16 17 18 19 20 21 22 23
  def merge_request_page(iid, sha, ref)
    commit_page(sha, ref)
  end

  def commit_page(sha, ref)
    build_page(sha, ref)
  end

  # Return complete url to merge_request page
24 25 26 27
  #
  # Ex.
  #   http://jenkins.example.com:8888/job/test1/scm/bySHA1/12d65c
  #
Valery Sizov committed
28
  def build_page(sha, ref)
29 30 31 32 33
    # implement inside child
  end

  # Return string with build status or :error symbol
  #
34
  # Allowed states: 'success', 'failed', 'running', 'pending', 'skipped'
35 36 37
  #
  #
  # Ex.
Kirilll Zaitsev committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  #   @service.merge_request_status(9, '13be4ac', 'dev')
  #   # => 'success'
  #
  #   @service.merge_request_status(10, '2abe4ac', 'dev)
  #   # => 'running'
  #
  #
  def merge_request_status(iid, sha, ref)
    commit_status(sha, ref)
  end

  # Return string with build status or :error symbol
  #
  # Allowed states: 'success', 'failed', 'running', 'pending', 'skipped'
  #
  #
  # Ex.
  #   @service.commit_status('13be4ac', 'master')
56 57
  #   # => 'success'
  #
Kirilll Zaitsev committed
58
  #   @service.commit_status('2abe4ac', 'dev')
59 60 61
  #   # => 'running'
  #
  #
Valery Sizov committed
62
  def commit_status(sha, ref)
63 64 65
    # implement inside child
  end
end