debian-mirror-gitlab/lib/sbom/package_url/normalizer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
745 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# frozen_string_literal: true
module Sbom
class PackageUrl
class Normalizer
def initialize(type:, text:)
@type = type
@text = text
end
def normalize_namespace
return if text.nil?
normalize
end
def normalize_name
raise ArgumentError, 'Name is required' if text.nil?
normalize
end
private
def normalize
case type
when 'bitbucket', 'github'
downcase
when 'pypi'
normalize_pypi
else
text
end
end
attr_reader :type, :text
def downcase
text.downcase
end
def normalize_pypi
downcase.tr('_', '-')
end
end
end
end