2020-08-04 10:07:57 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "utils/github"
|
|
|
|
|
|
|
|
module SPDX
|
|
|
|
module_function
|
|
|
|
|
2020-08-18 10:56:54 -04:00
|
|
|
DATA_PATH = (HOMEBREW_DATA_PATH/"spdx").freeze
|
2020-08-04 10:07:57 -07:00
|
|
|
API_URL = "https://api.github.com/repos/spdx/license-list-data/releases/latest"
|
|
|
|
|
2020-08-18 10:56:54 -04:00
|
|
|
def license_data
|
|
|
|
@license_data ||= JSON.parse (DATA_PATH/"spdx_licenses.json").read
|
|
|
|
end
|
|
|
|
|
|
|
|
def exception_data
|
|
|
|
@exception_data ||= JSON.parse (DATA_PATH/"spdx_exceptions.json").read
|
2020-08-04 10:07:57 -07:00
|
|
|
end
|
|
|
|
|
2020-08-10 11:32:05 -07:00
|
|
|
def latest_tag
|
|
|
|
@latest_tag ||= GitHub.open_api(API_URL)["tag_name"]
|
|
|
|
end
|
|
|
|
|
2020-08-18 10:56:54 -04:00
|
|
|
def download_latest_license_data!(to: DATA_PATH)
|
|
|
|
data_url = "https://raw.githubusercontent.com/spdx/license-list-data/#{latest_tag}/json/"
|
|
|
|
curl_download("#{data_url}licenses.json", to: to/"spdx_licenses.json", partial: false)
|
|
|
|
curl_download("#{data_url}exceptions.json", to: to/"spdx_exceptions.json", partial: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def parse_license_expression(license_expression)
|
|
|
|
licenses = []
|
|
|
|
exceptions = []
|
|
|
|
|
|
|
|
case license_expression
|
|
|
|
when String, Symbol
|
|
|
|
licenses.push license_expression
|
2020-08-19 10:25:02 -04:00
|
|
|
when Hash, Array
|
|
|
|
if license_expression.is_a? Hash
|
|
|
|
license_expression = license_expression.map do |key, value|
|
|
|
|
if key.is_a? String
|
|
|
|
licenses.push key
|
|
|
|
exceptions.push value[:with]
|
|
|
|
next
|
|
|
|
end
|
|
|
|
value
|
|
|
|
end.compact
|
2020-08-18 10:56:54 -04:00
|
|
|
end
|
2020-08-19 10:25:02 -04:00
|
|
|
|
2020-08-18 10:56:54 -04:00
|
|
|
license_expression.each do |license|
|
|
|
|
sub_license, sub_exception = parse_license_expression license
|
|
|
|
licenses += sub_license
|
|
|
|
exceptions += sub_exception
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
[licenses, exceptions]
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_license?(license)
|
|
|
|
return true if license == :public_domain
|
|
|
|
|
|
|
|
license = license.delete_suffix "+"
|
|
|
|
license_data["licenses"].any? { |spdx_license| spdx_license["licenseId"] == license }
|
|
|
|
end
|
|
|
|
|
|
|
|
def deprecated_license?(license)
|
|
|
|
return false if license == :public_domain
|
|
|
|
return false unless valid_license?(license)
|
|
|
|
|
|
|
|
license_data["licenses"].none? do |spdx_license|
|
|
|
|
spdx_license["licenseId"] == license && !spdx_license["isDeprecatedLicenseId"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_license_exception?(exception)
|
|
|
|
exception_data["exceptions"].any? do |spdx_exception|
|
|
|
|
spdx_exception["licenseExceptionId"] == exception && !spdx_exception["isDeprecatedLicenseId"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def license_expression_to_string(license_expression, bracket: false, hash_type: nil)
|
|
|
|
case license_expression
|
|
|
|
when String
|
|
|
|
license_expression
|
|
|
|
when :public_domain
|
|
|
|
"Public Domain"
|
2020-08-19 10:25:02 -04:00
|
|
|
when Hash, Array
|
|
|
|
license_expression = { any_of: license_expression } if license_expression.is_a? Array
|
2020-08-18 10:56:54 -04:00
|
|
|
expressions = []
|
|
|
|
|
|
|
|
if license_expression.keys.length == 1
|
|
|
|
hash_type = license_expression.keys.first
|
|
|
|
if hash_type.is_a? String
|
|
|
|
expressions.push "#{hash_type} with #{license_expression[hash_type][:with]}"
|
|
|
|
else
|
|
|
|
expressions += license_expression[hash_type].map do |license|
|
|
|
|
license_expression_to_string license, bracket: true, hash_type: hash_type
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
bracket = false
|
|
|
|
license_expression.each do |expression|
|
|
|
|
expressions.push license_expression_to_string(Hash[*expression], bracket: true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
operator = if hash_type == :any_of
|
|
|
|
" or "
|
|
|
|
else
|
|
|
|
" and "
|
|
|
|
end
|
|
|
|
|
|
|
|
if bracket
|
|
|
|
"(#{expressions.join operator})"
|
|
|
|
else
|
|
|
|
expressions.join operator
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def license_version_info(license)
|
|
|
|
return [license] if license == :public_domain
|
|
|
|
|
|
|
|
match = license.match(/-(?<version>[0-9.]+)(?:-.*?)??(?<or_later>\+|-only|-or-later)?$/)
|
|
|
|
return [license] if match.blank?
|
|
|
|
|
|
|
|
license_name = license.split(match[0]).first
|
|
|
|
or_later = match["or_later"].present? && %w[+ -or-later].include?(match["or_later"])
|
|
|
|
|
|
|
|
# [name, version, later versions allowed?]
|
|
|
|
# e.g. GPL-2.0-or-later --> ["GPL", "2.0", true]
|
|
|
|
[license_name, match["version"], or_later]
|
|
|
|
end
|
|
|
|
|
|
|
|
def licenses_forbid_installation?(license_expression, forbidden_licenses)
|
|
|
|
case license_expression
|
|
|
|
when String, Symbol
|
|
|
|
forbidden_licenses_include? license_expression.to_s, forbidden_licenses
|
2020-08-19 10:25:02 -04:00
|
|
|
when Hash, Array
|
|
|
|
license_expression = { any_of: license_expression } if license_expression.is_a? Array
|
2020-08-18 10:56:54 -04:00
|
|
|
key = license_expression.keys.first
|
|
|
|
case key
|
|
|
|
when :any_of
|
|
|
|
license_expression[key].all? { |license| licenses_forbid_installation? license, forbidden_licenses }
|
|
|
|
when :all_of
|
|
|
|
license_expression[key].any? { |license| licenses_forbid_installation? license, forbidden_licenses }
|
|
|
|
else
|
|
|
|
forbidden_licenses_include? key, forbidden_licenses
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def forbidden_licenses_include?(license, forbidden_licenses)
|
|
|
|
return true if forbidden_licenses.key? license
|
|
|
|
|
|
|
|
name, version, = license_version_info license
|
|
|
|
|
|
|
|
forbidden_licenses.each do |_, license_info|
|
|
|
|
forbidden_name, forbidden_version, forbidden_or_later = *license_info
|
|
|
|
next unless forbidden_name == name
|
|
|
|
|
|
|
|
return true if forbidden_or_later && forbidden_version <= version
|
|
|
|
|
|
|
|
return true if forbidden_version == version
|
|
|
|
end
|
|
|
|
false
|
2020-08-04 10:07:57 -07:00
|
|
|
end
|
|
|
|
end
|