Class: Gitlab::Checks::SingleChangeAccess

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab/checks/single_change_access.rb

Constant Summary collapse

ATTRIBUTES =
%i[user_access project skip_authorization
protocol oldrev newrev ref
branch_name tag_name logger commits].freeze

Instance Method Summary collapse

Constructor Details

#initialize(change, user_access:, project:, protocol:, logger:, commits: nil) ⇒ SingleChangeAccess

Returns a new instance of SingleChangeAccess.



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/gitlab/checks/single_change_access.rb', line 12

def initialize(
  change, user_access:, project:,
  protocol:, logger:, commits: nil
)
  @oldrev, @newrev, @ref = change.values_at(:oldrev, :newrev, :ref)
  @branch_ref = Gitlab::Git.branch_ref?(@ref)
  @branch_name = Gitlab::Git.branch_name(@ref)
  @tag_ref = Gitlab::Git.tag_ref?(@ref)
  @tag_name = Gitlab::Git.tag_name(@ref)
  @user_access = user_access
  @project = project
  @protocol = protocol
  @commits = commits

  @logger = logger
  @logger.append_message("Running checks for ref: #{@branch_name || @tag_name}")
end

Instance Method Details

#branch_ref?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/gitlab/checks/single_change_access.rb', line 43

def branch_ref?
  @branch_ref
end

#commitsObject



39
40
41
# File 'lib/gitlab/checks/single_change_access.rb', line 39

def commits
  @commits ||= project.repository.new_commits(newrev)
end

#tag_ref?Boolean

Returns:

  • (Boolean)


47
48
49
# File 'lib/gitlab/checks/single_change_access.rb', line 47

def tag_ref?
  @tag_ref
end

#validate!Object



30
31
32
33
34
35
36
37
# File 'lib/gitlab/checks/single_change_access.rb', line 30

def validate!
  ref_level_checks
  # Check of commits should happen as the last step
  # given they're expensive in terms of performance
  commits_check

  true
end