25 lines
715 B
Ruby
25 lines
715 B
Ruby
module Gitlab
|
|
module Checks
|
|
class ForcePush
|
|
def self.force_push?(project, oldrev, newrev)
|
|
return false if project.empty_repo?
|
|
|
|
# Created or deleted branch
|
|
return false if Gitlab::Git.blank_ref?(oldrev) || Gitlab::Git.blank_ref?(newrev)
|
|
|
|
GitalyClient.migrate(:force_push) do |is_enabled|
|
|
if is_enabled
|
|
!project
|
|
.repository
|
|
.gitaly_commit_client
|
|
.is_ancestor(oldrev, newrev)
|
|
else
|
|
Gitlab::Git::RevList.new(
|
|
path_to_repo: project.repository.path_to_repo,
|
|
oldrev: oldrev, newrev: newrev).missed_ref.present?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|