gitlab-org--gitlab-foss/lib/gitlab/git/push.rb

43 lines
838 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Git
class Push
2018-09-28 08:46:22 -04:00
include Gitlab::Utils::StrongMemoize
attr_reader :oldrev, :newrev
def initialize(project, oldrev, newrev, ref)
@project = project
@oldrev = oldrev
@newrev = newrev
@ref = ref
end
def branch_name
2018-09-28 08:46:22 -04:00
strong_memoize(:branch_name) do
Gitlab::Git.branch_name(@ref)
end
end
def branch_added?
Gitlab::Git.blank_ref?(@oldrev)
end
def branch_removed?
Gitlab::Git.blank_ref?(@newrev)
end
def force_push?
Gitlab::Checks::ForcePush.force_push?(@project, @oldrev, @newrev)
end
def branch_push?
2018-09-28 08:46:22 -04:00
strong_memoize(:branch_push) do
Gitlab::Git.branch_ref?(@ref)
end
end
end
end
end