gitlab-org--gitlab-foss/app/models/protected_branch.rb

31 lines
1.0 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class ProtectedBranch < ActiveRecord::Base
2017-04-03 14:17:24 +00:00
include ProtectedRef
protected_ref_access_levels :merge, :push
2018-04-18 13:52:55 +00:00
def self.protected_ref_accessible_to?(ref, user, project:, action:, protected_refs: nil)
2018-05-22 08:51:45 +00:00
# Maintainers, owners and admins are allowed to create the default branch
2018-04-18 13:52:55 +00:00
if default_branch_protected? && project.empty_repo?
return true if user.admin? || project.team.max_member_access(user.id) > Gitlab::Access::DEVELOPER
end
super
end
# Check if branch name is marked as protected in the system
def self.protected?(project, ref_name)
return true if project.empty_repo? && default_branch_protected?
refs = project.protected_branches.select(:name)
self.matching(ref_name, protected_refs: refs).present?
end
def self.default_branch_protected?
Gitlab::CurrentSettings.default_branch_protection == Gitlab::Access::PROTECTION_FULL ||
Gitlab::CurrentSettings.default_branch_protection == Gitlab::Access::PROTECTION_DEV_CAN_MERGE
end
end