Class: PDK::Module::Build

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Build

Returns a new instance of Build.



11
12
13
14
# File 'lib/pdk/module/build.rb', line 11

def initialize(options = {})
  @module_dir = File.expand_path(options[:module_dir] || Dir.pwd)
  @target_dir = File.expand_path(options[:'target-dir'] || File.join(module_dir, 'pkg'))
end

Instance Attribute Details

#module_dirObject (readonly)

Returns the value of attribute module_dir.



8
9
10
# File 'lib/pdk/module/build.rb', line 8

def module_dir
  @module_dir
end

#target_dirObject (readonly)

Returns the value of attribute target_dir.



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

def target_dir
  @target_dir
end

Class Method Details

.invoke(options = {}) ⇒ Object



4
5
6
# File 'lib/pdk/module/build.rb', line 4

def self.invoke(options = {})
  new(options).build
end

Instance Method Details

#buildString

Build a module package from a module directory.

Returns:

  • (String)

    The path to the built package file.



34
35
36
37
38
39
40
41
42
43
# File 'lib/pdk/module/build.rb', line 34

def build
  create_build_dir

  stage_module_in_build_dir
  build_package

  package_file
ensure
  cleanup_build_dir
end

#build_dirObject

Return the path to the temporary build directory, which will be placed inside the target directory and match the release name (see #release_name).



59
60
61
# File 'lib/pdk/module/build.rb', line 59

def build_dir
  @build_dir ||= File.join(target_dir, release_name)
end

#build_packageObject

Creates a gzip compressed tarball of the build directory.

If the destination package already exists, it will be removed before creating the new tarball.

Returns:

  • nil.



224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/pdk/module/build.rb', line 224

def build_package
  require 'fileutils'
  require 'zlib'
  require 'minitar'
  require 'find'

  FileUtils.rm_f(package_file)

  Dir.chdir(target_dir) do
    begin
      gz = Zlib::GzipWriter.new(File.open(package_file, 'wb'))
      tar = Minitar::Output.new(gz)
      Find.find(release_name) do |entry|
         = {
          name: entry,
        }

        orig_mode = File.stat(entry).mode
        min_mode = Minitar.dir?(entry) ? 0o755 : 0o644

        [:mode] = orig_mode | min_mode

        if [:mode] != orig_mode
          PDK.logger.debug(_('Updated permissions of packaged \'%{entry}\' to %{new_mode}') % {
            entry: entry,
            new_mode: ([:mode] & 0o7777).to_s(8),
          })
        end

        Minitar.pack_file(, tar)
      end
    ensure
      tar.close
    end
  end
end

#cleanup_build_dirObject

Remove the temporary build directory and all its contents from disk.

Returns:

  • nil.



78
79
80
81
82
# File 'lib/pdk/module/build.rb', line 78

def cleanup_build_dir
  require 'fileutils'

  FileUtils.rm_rf(build_dir, secure: true)
end

#create_build_dirObject

Create a temporary build directory where the files to be included in the package will be staged before building the tarball.

If the directory already exists, remove it first.



67
68
69
70
71
72
73
# File 'lib/pdk/module/build.rb', line 67

def create_build_dir
  require 'fileutils'

  cleanup_build_dir

  FileUtils.mkdir_p(build_dir)
end

#ignore_fileString

Select the most appropriate ignore file in the module directory.

In order of preference, we first try ‘.pdkignore`, then `.pmtignore` and finally `.gitignore`.

Returns:

  • (String)

    The path to the file containing the patterns of file paths to ignore.



268
269
270
271
272
273
274
# File 'lib/pdk/module/build.rb', line 268

def ignore_file
  @ignore_file ||= [
    File.join(module_dir, '.pdkignore'),
    File.join(module_dir, '.pmtignore'),
    File.join(module_dir, '.gitignore'),
  ].find { |file| File.file?(file) && File.readable?(file) }
end

#ignored_filesPathSpec

Instantiate a new PathSpec class and populate it with the pattern(s) of files to be ignored.

Returns:

  • (PathSpec)

    The populated ignore path matcher.



280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# File 'lib/pdk/module/build.rb', line 280

def ignored_files
  require 'pdk/module'
  require 'pathspec'

  @ignored_files ||=
    begin
      ignored = if ignore_file.nil?
                  PathSpec.new
                else
                  fd = File.open(ignore_file, 'rb:UTF-8')
                  data = fd.read
                  fd.close

                  PathSpec.new(data)
                end

      if File.realdirpath(target_dir).start_with?(File.realdirpath(module_dir))
        ignored = ignored.add("\/#{File.basename(target_dir)}\/")
      end

      PDK::Module::DEFAULT_IGNORED.each { |r| ignored.add(r) }

      ignored
    end
end

#ignored_path?(path) ⇒ Boolean

Check if the given path matches one of the patterns listed in the ignore file.

Parameters:

  • path (String)

    The path to be checked.

Returns:

  • (Boolean)

    true if the path matches and should be ignored.



142
143
144
145
146
# File 'lib/pdk/module/build.rb', line 142

def ignored_path?(path)
  path = path.to_s + '/' if File.directory?(path)

  !ignored_files.match_paths([path], module_dir).empty?
end

#metadataHash{String => Object}

Read and parse the values from metadata.json for the module that is being built.

Returns:

  • (Hash{String => Object})

    The hash of metadata values.



20
21
22
23
24
# File 'lib/pdk/module/build.rb', line 20

def 
  require 'pdk/module/metadata'

  @metadata ||= PDK::Module::Metadata.from_file(File.join(module_dir, 'metadata.json')).data
end

#module_pdk_compatible?Boolean

Check if the module is PDK Compatible. If not, then prompt the user if they want to run PDK Convert.

Returns:

  • (Boolean)


53
54
55
# File 'lib/pdk/module/build.rb', line 53

def module_pdk_compatible?
  ['pdk-version', 'template-url'].any? { |key| .key?(key) }
end

#package_already_exists?Boolean

Verify if there is an existing package in the target directory and prompts the user if they want to overwrite it.

Returns:

  • (Boolean)


47
48
49
# File 'lib/pdk/module/build.rb', line 47

def package_already_exists?
  File.exist? package_file
end

#package_fileObject

Return the path where the built package file will be written to.



27
28
29
# File 'lib/pdk/module/build.rb', line 27

def package_file
  @package_file ||= File.join(target_dir, "#{release_name}.tar.gz")
end

#release_nameString

Combine the module name and version into a Forge-compatible dash separated string.

Returns:

  • (String)

    The module name and version, joined by a dash.



88
89
90
91
92
93
# File 'lib/pdk/module/build.rb', line 88

def release_name
  @release_name ||= [
    ['name'],
    ['version'],
  ].join('-')
end

#stage_module_in_build_dirObject

Iterate through all the files and directories in the module and stage them into the temporary build directory (unless ignored).

Returns:

  • nil



99
100
101
102
103
104
105
106
107
# File 'lib/pdk/module/build.rb', line 99

def stage_module_in_build_dir
  require 'find'

  Find.find(module_dir) do |path|
    next if path == module_dir

    ignored_path?(path) ? Find.prune : stage_path(path)
  end
end

#stage_path(path) ⇒ Object

Stage a file or directory from the module into the build directory.

Parameters:

  • path (String)

    The path to the file or directory.

Returns:

  • nil.



114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/pdk/module/build.rb', line 114

def stage_path(path)
  require 'pathname'
  require 'fileutils'

  relative_path = Pathname.new(path).relative_path_from(Pathname.new(module_dir))
  dest_path = File.join(build_dir, relative_path)

  if File.directory?(path)
    FileUtils.mkdir_p(dest_path, mode: File.stat(path).mode)
  elsif File.symlink?(path)
    warn_symlink(path)
  else
    validate_ustar_path!(relative_path.to_path)
    FileUtils.cp(path, dest_path, preserve: true)
  end
rescue ArgumentError => e
  raise PDK::CLI::ExitWithError, _(
    '%{message} Rename the file or exclude it from the package ' \
    'by adding it to the .pdkignore file in your module.',
  ) % { message: e.message }
end

#validate_ustar_path!(path) ⇒ nil

Checks if the path length will fit into the POSIX.1-1998 (ustar) tar header format.

POSIX.1-2001 (which allows paths of infinite length) was adopted by GNU tar in 2004 and is supported by minitar 0.7 and above. Unfortunately much of the Puppet ecosystem still uses minitar 0.6.1.

POSIX.1-1998 tar format does not allow for paths greater than 256 bytes, or paths that can’t be split into a prefix of 155 bytes (max) and a suffix of 100 bytes (max).

This logic was pretty much copied from the private method Archive::Tar::Minitar::Writer#split_name.

Parameters:

  • path (String)

    the relative path to be added to the tar file.

Returns:

  • (nil)

Raises:

  • (ArgumentError)

    if the path is too long or could not be split.



185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# File 'lib/pdk/module/build.rb', line 185

def validate_ustar_path!(path)
  if path.bytesize > 256
    raise ArgumentError, _("The path '%{path}' is longer than 256 bytes.") % {
      path: path,
    }
  end

  if path.bytesize <= 100
    prefix = ''
  else
    parts = path.split(File::SEPARATOR)
    newpath = parts.pop
    nxt = ''

    loop do
      nxt = parts.pop || ''
      break if newpath.bytesize + 1 + nxt.bytesize >= 100
      newpath = File.join(nxt, newpath)
    end

    prefix = File.join(*parts, nxt)
    path = newpath
  end

  return unless path.bytesize > 100 || prefix.bytesize > 155

  raise ArgumentError, _(
    "'%{path}' could not be split at a directory separator into two " \
    'parts, the first having a maximum length of 155 bytes and the ' \
    'second having a maximum length of 100 bytes.',
  ) % { path: path }
end

Warn the user about a symlink that would have been included in the built package.

Parameters:

  • path (String)

    The relative or absolute path to the symlink.

Returns:

  • nil.



154
155
156
157
158
159
160
161
162
163
164
# File 'lib/pdk/module/build.rb', line 154

def warn_symlink(path)
  require 'pathname'

  symlink_path = Pathname.new(path)
  module_path = Pathname.new(module_dir)

  PDK.logger.warn _('Symlinks in modules are not supported and will not be included in the package. Please investigate symlink %{from} -> %{to}.') % {
    from: symlink_path.relative_path_from(module_path),
    to:   symlink_path.realpath.relative_path_from(module_path),
  }
end