Class: Dependabot::Maven::FileUpdater::PropertyValueUpdater

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/dependabot/maven/file_updater/property_value_updater.rb

Instance Method Summary collapse

Constructor Details

#initialize(dependency_files:) ⇒ PropertyValueUpdater

Returns a new instance of PropertyValueUpdater.



18
19
20
# File 'lib/dependabot/maven/file_updater/property_value_updater.rb', line 18

def initialize(dependency_files:)
  @dependency_files = dependency_files
end

Instance Method Details

#update_pomfiles_for_property_change(property_name:, callsite_pom:, updated_value:) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/dependabot/maven/file_updater/property_value_updater.rb', line 31

def update_pomfiles_for_property_change(property_name:, callsite_pom:,
                                        updated_value:)
  declaration_details = property_value_finder.property_details(
    property_name: property_name,
    callsite_pom: callsite_pom
  )
  node = declaration_details&.fetch(:node)
  filename = declaration_details&.fetch(:file)

  pom_to_update = dependency_files.find { |f| f.name == filename }
  property_re = %r{<#{Regexp.quote(node.name)}>
    \s*#{Regexp.quote(node.content)}\s*
    </#{Regexp.quote(node.name)}>}xm
  property_text = node.to_s
  if pom_to_update&.content&.match?(property_re)
    updated_content = pom_to_update&.content&.sub(
      property_re,
      "<#{node.name}>#{updated_value}</#{node.name}>"
    )
  elsif pom_to_update&.content&.include? property_text
    node.content = updated_value
    updated_content = pom_to_update&.content&.sub(
      property_text,
      node.to_s
    )
  end

  updated_pomfiles = dependency_files.dup
  updated_pomfiles[T.must(updated_pomfiles.index(pom_to_update))] =
    update_file(file: T.must(pom_to_update), content: T.must(updated_content))

  updated_pomfiles
end