lib/omnibus/manifest_entry.rb (35 lines of code) (raw):
#
# Copyright 2014-2018 Chef Software, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
module Omnibus
class ManifestEntry
attr_reader :locked_version, :locked_source, :source_type, :described_version, :name, :license, :display_version, :vendor
def initialize(name, manifest_data)
@name = name
@locked_version = manifest_data[:locked_version]
@locked_source = manifest_data[:locked_source]
@source_type = manifest_data[:source_type]
@described_version = manifest_data[:described_version]
@license = manifest_data[:license]
@display_version = manifest_data[:display_version]
@vendor = manifest_data[:vendor]
end
def to_hash
# Strip tokens/passwords
safe_locked_source = @locked_source.dup
if %i{git url}.include?(@source_type)
safe_locked_source[@source_type] = @locked_source[@source_type].sub(%r{:[^//]*@}, "@")
end
{
locked_version: @locked_version,
locked_source: safe_locked_source,
source_type: @source_type,
described_version: @described_version,
display_version: @display_version,
vendor: @vendor,
license: @license,
}
end
def ==(other)
if other.is_a?(ManifestEntry)
(to_hash == other.to_hash) && (name == other.name)
end
end
end
end