mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
140 lines
4.8 KiB
Ruby
140 lines
4.8 KiB
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
require "rubocops/extend/formula"
|
|
require "extend/string"
|
|
|
|
module RuboCop
|
|
module Cop
|
|
module FormulaAudit
|
|
# This cop audits patches in Formulae.
|
|
class Patches < FormulaCop
|
|
def audit_formula(node, _class_node, _parent_class_node, body)
|
|
@full_source_content = source_buffer(node).source
|
|
|
|
external_patches = find_all_blocks(body, :patch)
|
|
external_patches.each do |patch_block|
|
|
url_node = find_every_method_call_by_name(patch_block, :url).first
|
|
url_string = parameters(url_node).first
|
|
patch_problems(url_string)
|
|
end
|
|
|
|
inline_patches = find_every_method_call_by_name(body, :patch)
|
|
inline_patches.each { |patch| inline_patch_problems(patch) }
|
|
|
|
if inline_patches.empty? && patch_end?
|
|
offending_patch_end_node(node)
|
|
problem "patch is missing 'DATA'"
|
|
end
|
|
|
|
patches_node = find_method_def(body, :patches)
|
|
return if patches_node.nil?
|
|
|
|
legacy_patches = find_strings(patches_node)
|
|
problem "Use the patch DSL instead of defining a 'patches' method"
|
|
legacy_patches.each { |p| patch_problems(p) }
|
|
end
|
|
|
|
private
|
|
|
|
def patch_problems(patch)
|
|
patch_url = string_content(patch)
|
|
|
|
if regex_match_group(patch, %r{https://github.com/[^/]*/[^/]*/pull})
|
|
problem "Use a commit hash URL rather than an unstable pull request URL: #{patch_url}"
|
|
end
|
|
|
|
if regex_match_group(patch, %r{.*gitlab.*/merge_request.*})
|
|
problem "Use a commit hash URL rather than an unstable merge request URL: #{patch_url}"
|
|
end
|
|
|
|
if regex_match_group(patch, %r{https://github.com/[^/]*/[^/]*/commit/[a-fA-F0-9]*\.diff})
|
|
problem <<~EOS.chomp
|
|
GitHub patches should end with .patch, not .diff:
|
|
#{patch_url}
|
|
EOS
|
|
end
|
|
|
|
if regex_match_group(patch, %r{.*gitlab.*/commit/[a-fA-F0-9]*\.diff})
|
|
problem <<~EOS.chomp
|
|
GitLab patches should end with .patch, not .diff:
|
|
#{patch_url}
|
|
EOS
|
|
end
|
|
|
|
gh_patch_param_pattern = %r{https?://github\.com/.+/.+/(?:commit|pull)/[a-fA-F0-9]*.(?:patch|diff)}
|
|
if regex_match_group(patch, gh_patch_param_pattern) && !patch_url.match?(/\?full_index=\w+$/)
|
|
problem <<~EOS
|
|
GitHub patches should use the full_index parameter:
|
|
#{patch_url}?full_index=1
|
|
EOS
|
|
end
|
|
|
|
gh_patch_patterns = Regexp.union([%r{/raw\.github\.com/},
|
|
%r{/raw\.githubusercontent\.com/},
|
|
%r{gist\.github\.com/raw},
|
|
%r{gist\.github\.com/.+/raw},
|
|
%r{gist\.githubusercontent\.com/.+/raw}])
|
|
if regex_match_group(patch, gh_patch_patterns) && !patch_url.match?(%r{/[a-fA-F0-9]{6,40}/})
|
|
problem <<~EOS.chomp
|
|
GitHub/Gist patches should specify a revision:
|
|
#{patch_url}
|
|
EOS
|
|
end
|
|
|
|
gh_patch_diff_pattern =
|
|
%r{https?://patch-diff\.githubusercontent\.com/raw/(.+)/(.+)/pull/(.+)\.(?:diff|patch)}
|
|
if regex_match_group(patch, gh_patch_diff_pattern)
|
|
problem "Use a commit hash URL rather than patch-diff: #{patch_url}"
|
|
end
|
|
|
|
if regex_match_group(patch, %r{macports/trunk})
|
|
problem <<~EOS.chomp
|
|
MacPorts patches should specify a revision instead of trunk:
|
|
#{patch_url}
|
|
EOS
|
|
end
|
|
|
|
if regex_match_group(patch, %r{^http://trac\.macports\.org})
|
|
problem <<~EOS.chomp
|
|
Patches from MacPorts Trac should be https://, not http:
|
|
#{patch_url}
|
|
EOS
|
|
end
|
|
|
|
return unless regex_match_group(patch, %r{^http://bugs\.debian\.org})
|
|
|
|
problem <<~EOS.chomp
|
|
Patches from Debian should be https://, not http:
|
|
#{patch_url}
|
|
EOS
|
|
end
|
|
|
|
def inline_patch_problems(patch)
|
|
return unless patch_data?(patch) && !patch_end?
|
|
|
|
offending_node(patch)
|
|
problem "patch is missing '__END__'"
|
|
end
|
|
|
|
def_node_search :patch_data?, <<~AST
|
|
(send nil? :patch (:sym :DATA))
|
|
AST
|
|
|
|
def patch_end?
|
|
/^__END__$/.match?(@full_source_content)
|
|
end
|
|
|
|
def offending_patch_end_node(node)
|
|
@offensive_node = node
|
|
@source_buf = source_buffer(node)
|
|
@line_no = node.loc.last_line + 1
|
|
@column = 0
|
|
@length = 7 # "__END__".size
|
|
@offense_source_range = source_range(@source_buf, @line_no, @column, @length)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|