Class: Dependabot::GitCommitChecker

Inherits:
Object
  • Object
show all
Defined in:
lib/dependabot/git_commit_checker.rb

Constant Summary collapse

VERSION_REGEX =
/
  (?<version>
    (?<=^v)[0-9]+(?:\-[a-z0-9]+)?
    |
    [0-9]+\.[0-9]+(?:\.[a-z0-9\-]+)*
  )$
/ix.freeze

Instance Method Summary collapse

Constructor Details

#initialize(dependency:, credentials:, ignored_versions: [], raise_on_ignored: false, requirement_class: nil, version_class: nil) ⇒ GitCommitChecker

Returns a new instance of GitCommitChecker.



24
25
26
27
28
29
30
31
32
33
# File 'lib/dependabot/git_commit_checker.rb', line 24

def initialize(dependency:, credentials:,
               ignored_versions: [], raise_on_ignored: false,
               requirement_class: nil, version_class: nil)
  @dependency = dependency
  @credentials = credentials
  @ignored_versions = ignored_versions
  @raise_on_ignored = raise_on_ignored
  @requirement_class = requirement_class
  @version_class = version_class
end

Instance Method Details

#allowed_version_tagsObject



131
132
133
134
135
136
137
138
139
140
141
142
143
# File 'lib/dependabot/git_commit_checker.rb', line 131

def allowed_version_tags
  tags =
    local_tags.
    select { |t| version_tag?(t.name) && matches_existing_prefix?(t.name) }
  filtered = tags.
             reject { |t| tag_included_in_ignore_requirements?(t) }
  if @raise_on_ignored && filter_lower_versions(filtered).empty? && filter_lower_versions(tags).any?
    raise Dependabot::AllVersionsIgnored
  end

  filtered.
    reject { |t| tag_is_prerelease?(t) && !wants_prerelease? }
end

#branch_or_ref_in_release?(version) ⇒ Boolean

Returns:

  • (Boolean)


71
72
73
# File 'lib/dependabot/git_commit_checker.rb', line 71

def branch_or_ref_in_release?(version)
  pinned_ref_in_release?(version) || branch_behind_release?(version)
end

#current_versionObject



145
146
147
148
149
150
# File 'lib/dependabot/git_commit_checker.rb', line 145

def current_version
  return unless dependency.version && version_tag?(dependency.version)

  version = dependency.version.match(VERSION_REGEX).named_captures.fetch("version")
  version_class.new(version)
end

#filter_lower_versions(tags) ⇒ Object



152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/dependabot/git_commit_checker.rb', line 152

def filter_lower_versions(tags)
  return tags unless current_version

  versions = tags.map do |t|
    version = t.name.match(VERSION_REGEX).named_captures.fetch("version")
    version_class.new(version)
  end

  versions.select do |version|
    version > current_version
  end
end

#git_dependency?Boolean

Returns:

  • (Boolean)


35
36
37
38
39
# File 'lib/dependabot/git_commit_checker.rb', line 35

def git_dependency?
  return false if dependency_source_details.nil?

  dependency_source_details.fetch(:type) == "git"
end

#git_repo_reachable?Boolean

Returns:

  • (Boolean)


176
177
178
179
180
181
# File 'lib/dependabot/git_commit_checker.rb', line 176

def git_repo_reachable?
  local_upload_pack
  true
rescue Dependabot::GitDependenciesNotReachable
  false
end

#head_commit_for_current_branchObject



75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/dependabot/git_commit_checker.rb', line 75

def head_commit_for_current_branch
  ref = ref_or_branch || "HEAD"

  if pinned?
    return dependency.version ||
           .head_commit_for_ref(ref)
  end

  sha = .head_commit_for_ref(ref)
  return sha if sha

  raise Dependabot::GitDependencyReferenceNotFound, dependency.name
end

#local_tag_for_latest_versionObject



108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/dependabot/git_commit_checker.rb', line 108

def local_tag_for_latest_version
  tag = max_version_tag(allowed_version_tags)

  return unless tag

  version = tag.name.match(VERSION_REGEX).named_captures.fetch("version")
  {
    tag: tag.name,
    version: version_class.new(version),
    commit_sha: tag.commit_sha,
    tag_sha: tag.tag_sha
  }
end

#local_tag_for_pinned_versionObject



165
166
167
168
169
170
171
172
173
174
# File 'lib/dependabot/git_commit_checker.rb', line 165

def local_tag_for_pinned_version
  return unless pinned?

  ref = dependency_source_details.fetch(:ref)
  tags = local_tags.select { |t| t.commit_sha == ref && version_class.correct?(t.name) }.
         sort_by { |t| version_class.new(t.name) }
  return if tags.empty?

  tags[-1].name
end

#local_tags_for_latest_version_commit_shaObject



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/dependabot/git_commit_checker.rb', line 89

def local_tags_for_latest_version_commit_sha
  tags = allowed_version_tags
  max_tag = max_version_tag(tags)

  return [] unless max_tag

  tags.
    select { |t| t.commit_sha == max_tag.commit_sha }.
    map do |t|
      version = t.name.match(VERSION_REGEX).named_captures.fetch("version")
      {
        tag: t.name,
        version: version_class.new(version),
        commit_sha: t.commit_sha,
        tag_sha: t.tag_sha
      }
    end
end

#max_version_tag(tags) ⇒ Object



122
123
124
125
126
127
128
129
# File 'lib/dependabot/git_commit_checker.rb', line 122

def max_version_tag(tags)
  tags.
    max_by do |t|
    version = t.name.match(VERSION_REGEX).named_captures.
              fetch("version")
    version_class.new(version)
  end
end

#pinned?Boolean

Returns:

  • (Boolean)


41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/dependabot/git_commit_checker.rb', line 41

def pinned?
  raise "Not a git dependency!" unless git_dependency?

  ref = dependency_source_details.fetch(:ref)
  branch = dependency_source_details.fetch(:branch)

  return false if ref.nil?
  return false if branch == ref
  return true if branch
  return true if dependency.version&.start_with?(ref)

  # Check the specified `ref` isn't actually a branch
  !local_upload_pack.match?(%r{ refs/heads/#{ref}$})
end

#pinned_ref_looks_like_commit_sha?Boolean

Returns:

  • (Boolean)


62
63
64
65
66
67
68
69
# File 'lib/dependabot/git_commit_checker.rb', line 62

def pinned_ref_looks_like_commit_sha?
  ref = dependency_source_details.fetch(:ref)
  return false unless ref&.match?(/^[0-9a-f]{6,40}$/)

  return false unless pinned?

  .head_commit_for_ref(ref).nil?
end

#pinned_ref_looks_like_version?Boolean

Returns:

  • (Boolean)


56
57
58
59
60
# File 'lib/dependabot/git_commit_checker.rb', line 56

def pinned_ref_looks_like_version?
  return false unless pinned?

  dependency_source_details.fetch(:ref).match?(VERSION_REGEX)
end