mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
74 lines
2.2 KiB
Ruby
74 lines
2.2 KiB
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
require "rubocops/extend/formula"
|
|
|
|
module RuboCop
|
|
module Cop
|
|
module FormulaAudit
|
|
# This cop makes sure that deprecated checksums are not used.
|
|
#
|
|
# @api private
|
|
class Checksum < FormulaCop
|
|
def audit_formula(_node, _class_node, _parent_class_node, body_node)
|
|
return if body_node.nil?
|
|
|
|
problem "MD5 checksums are deprecated, please use SHA-256" if method_called_ever?(body_node, :md5)
|
|
|
|
problem "SHA1 checksums are deprecated, please use SHA-256" if method_called_ever?(body_node, :sha1)
|
|
|
|
sha256_calls = find_every_method_call_by_name(body_node, :sha256)
|
|
sha256_calls.each do |sha256_call|
|
|
sha256_node = get_checksum_node(sha256_call)
|
|
audit_sha256(sha256_node)
|
|
end
|
|
end
|
|
|
|
def audit_sha256(checksum)
|
|
return if checksum.nil?
|
|
|
|
if regex_match_group(checksum, /^$/)
|
|
@offense_source_range = @offensive_node.source_range
|
|
problem "sha256 is empty"
|
|
return
|
|
end
|
|
|
|
if string_content(checksum).size != 64 && regex_match_group(checksum, /^\w*$/)
|
|
problem "sha256 should be 64 characters"
|
|
end
|
|
|
|
return unless regex_match_group(checksum, /[^a-f0-9]+/i)
|
|
|
|
problem "sha256 contains invalid characters"
|
|
end
|
|
end
|
|
|
|
# This cop makes sure that checksum strings are lowercase.
|
|
#
|
|
# @api private
|
|
class ChecksumCase < FormulaCop
|
|
def audit_formula(_node, _class_node, _parent_class_node, body_node)
|
|
return if body_node.nil?
|
|
|
|
sha256_calls = find_every_method_call_by_name(body_node, :sha256)
|
|
sha256_calls.each do |sha256_call|
|
|
checksum = get_checksum_node(sha256_call)
|
|
next if checksum.nil?
|
|
next unless regex_match_group(checksum, /[A-F]+/)
|
|
|
|
problem "sha256 should be lowercase"
|
|
end
|
|
end
|
|
|
|
def autocorrect(node)
|
|
lambda do |corrector|
|
|
correction = node.source.downcase
|
|
corrector.insert_before(node.source_range, correction)
|
|
corrector.remove(node.source_range)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|