Class: PDK::Module::Convert

Inherits:
Object
  • Object
show all
Defined in:
lib/pdk/module/convert.rb

Direct Known Subclasses

Update

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Convert

Returns a new instance of Convert.



15
16
17
# File 'lib/pdk/module/convert.rb', line 15

def initialize(options = {})
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



13
14
15
# File 'lib/pdk/module/convert.rb', line 13

def options
  @options
end

Class Method Details

.invoke(options) ⇒ Object



9
10
11
# File 'lib/pdk/module/convert.rb', line 9

def self.invoke(options)
  new(options).run
end

Instance Method Details

#convert?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/pdk/module/convert.rb', line 19

def convert?
  instance_of?(PDK::Module::Convert)
end

#force?Boolean

Returns:

  • (Boolean)


64
65
66
# File 'lib/pdk/module/convert.rb', line 64

def force?
  options[:force]
end

#full_report(path) ⇒ Object



194
195
196
197
198
199
200
201
202
203
# File 'lib/pdk/module/convert.rb', line 194

def full_report(path)
  File.open(path, 'w') do |f|
    f.write("/* Report generated by PDK at #{Time.now} */")
    update_manager.changes[:modified].each do |_, diff|
      f.write("\n\n\n" + diff)
    end
    f.write("\n")
  end
  PDK::Report.default_target.puts(_("\nYou can find a report of differences in %{path}.\n\n") % { path: path })
end

#generate_banner(text, width = 80) ⇒ Object



205
206
207
208
209
210
211
212
213
214
215
# File 'lib/pdk/module/convert.rb', line 205

def generate_banner(text, width = 80)
  padding = width - text.length
  banner = ''
  padding_char = '-'

  (padding / 2.0).ceil.times { banner << padding_char }
  banner << text
  (padding / 2.0).floor.times { banner << padding_char }

  banner
end

#needs_bundle_update?Boolean

Returns:

  • (Boolean)


68
69
70
# File 'lib/pdk/module/convert.rb', line 68

def needs_bundle_update?
  update_manager.changed?('Gemfile')
end

#noop?Boolean

Returns:

  • (Boolean)


60
61
62
# File 'lib/pdk/module/convert.rb', line 60

def noop?
  options[:noop]
end


188
189
190
191
192
# File 'lib/pdk/module/convert.rb', line 188

def print_result(banner_text)
  PDK::Report.default_target.puts(_("\n%{banner}") % { banner: generate_banner(banner_text, 40) })
  summary_to_print = summary.map { |k, v| "#{v.length} files #{k}" unless v.empty? }.compact
  PDK::Report.default_target.puts(_("\n%{summary}\n\n") % { summary: "#{summary_to_print.join(', ')}." })
end


174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/pdk/module/convert.rb', line 174

def print_summary
  footer = false

  summary.keys.each do |category|
    next if summary[category].empty?

    PDK::Report.default_target.puts(_("\n%{banner}") % { banner: generate_banner("Files to be #{category}", 40) })
    PDK::Report.default_target.puts(summary[category])
    footer = true
  end

  PDK::Report.default_target.puts(_("\n%{banner}") % { banner: generate_banner('', 40) }) if footer
end

#runObject



23
24
25
26
27
28
29
30
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
# File 'lib/pdk/module/convert.rb', line 23

def run
  stage_changes!

  unless update_manager.changes?
    PDK::Report.default_target.puts(_('No changes required.'))
    return
  end

  print_summary

  full_report('convert_report.txt') unless update_manager.changes[:modified].empty?

  return if noop?

  unless force?
    PDK.logger.info _(
      'Module conversion is a potentially destructive action. ' \
      'Ensure that you have committed your module to a version control ' \
      'system or have a backup, and review the changes above before continuing.',
    )
    continue = PDK::CLI::Util.prompt_for_yes(_('Do you want to continue and make these changes to your module?'))
    return unless continue
  end

  # Remove these files straight away as these changes are not something that the user needs to review.
  if needs_bundle_update?
    update_manager.unlink_file('Gemfile.lock')
    update_manager.unlink_file(File.join('.bundle', 'config'))
  end

  update_manager.sync_changes!

  PDK::Util::Bundler.ensure_bundle! if needs_bundle_update?

  print_result 'Convert completed'
end

#stage_changes!Object



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/pdk/module/convert.rb', line 72

def stage_changes!
   = 'metadata.json'

  PDK::Module::TemplateDir.new(template_uri, nil, true) do |templates|
     = (, templates.)
    templates. = .data unless .nil?

    if options[:noop] && .nil?
      update_manager.add_file(, '')
    elsif PDK::Util::Filesystem.file?()
      update_manager.modify_file(, .to_json)
    else
      update_manager.add_file(, .to_json)
    end

    templates.render do |file_path, file_content, file_status|
      case file_status
      when :unmanage
        PDK.logger.debug(_("skipping '%{path}'") % { path: file_path })
      when :delete
        update_manager.remove_file(file_path)
      when :init
        if convert? && !PDK::Util::Filesystem.exist?(file_path)
          update_manager.add_file(file_path, file_content)
        end
      when :manage
        if PDK::Util::Filesystem.exist?(file_path)
          update_manager.modify_file(file_path, file_content)
        else
          update_manager.add_file(file_path, file_content)
        end
      end
    end
  end
rescue ArgumentError => e
  raise PDK::CLI::ExitWithError, e
end

#summaryObject



155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/pdk/module/convert.rb', line 155

def summary
  summary = {}
  update_manager.changes.each do |category, update_category|
    if update_category.respond_to?(:keys)
      updated_files = update_category.keys
    else
      begin
        updated_files = update_category.map { |file| file[:path] }
      rescue TypeError
        updated_files = update_category.to_a
      end
    end

    summary[category] = updated_files
  end

  summary
end

#template_uriObject



114
115
116
# File 'lib/pdk/module/convert.rb', line 114

def template_uri
  @template_uri ||= PDK::Util::TemplateURI.new(options)
end

#update_managerObject



110
111
112
# File 'lib/pdk/module/convert.rb', line 110

def update_manager
  @update_manager ||= PDK::Module::UpdateManager.new
end

#update_metadata(metadata_path, template_metadata) ⇒ Object



118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'lib/pdk/module/convert.rb', line 118

def (, )
  if PDK::Util::Filesystem.file?()
    unless PDK::Util::Filesystem.readable?()
      raise PDK::CLI::ExitWithError, _('Unable to update module metadata; %{path} exists but it is not readable.') % {
        path: ,
      }
    end

    begin
       = PDK::Module::Metadata.from_file()
      new_values = PDK::Module::Metadata::DEFAULTS.select do |key, _|
        !.data.key?(key) || .data[key].nil? ||
          (key == 'requirements' && .data[key].empty?)
      end
      .update!(new_values)
    rescue ArgumentError
       = PDK::Generate::Module.(options) unless options[:noop]
    end
  elsif PDK::Util::Filesystem.exist?()
    raise PDK::CLI::ExitWithError, _('Unable to update module metadata; %{path} exists but it is not a file.') % {
      path: ,
    }
  else
    return if options[:noop]

    project_dir = File.basename(Dir.pwd)
    options[:module_name] = project_dir.split('-', 2).compact[-1]
    options[:prompt] = false
    options[:'skip-interview'] = true if options[:force]

     = PDK::Generate::Module.(options)
  end

  .update!()
  
end