Class: Puppet::ModuleTool::Applications::Installer

Inherits:
Application show all
Includes:
Forge::Errors, Errors, Shared
Defined in:
lib/puppet/module_tool/applications/installer.rb

Constant Summary

Constants inherited from Application

Application::DOCPATTERN

Constants included from Util

Util::AbsolutePathPosix, Util::AbsolutePathWindows, Util::DEFAULT_POSIX_MODE, Util::DEFAULT_WINDOWS_MODE, Util::RFC_3986_URI_REGEX

Constants included from Util::POSIX

Util::POSIX::LOCALE_ENV_VARS, Util::POSIX::USER_ENV_VARS

Constants included from Util::SymbolicFileMode

Util::SymbolicFileMode::SetGIDBit, Util::SymbolicFileMode::SetUIDBit, Util::SymbolicFileMode::StickyBit, Util::SymbolicFileMode::SymbolicMode, Util::SymbolicFileMode::SymbolicSpecialToBit

Instance Attribute Summary

Attributes inherited from Application

#command_line, #options

Instance Method Summary collapse

Methods included from Shared

#add_module_name_constraints_to_graph, #annotated_version, #download_tarballs, #forced?, #get_local_constraints, #get_remote_constraints, #implicit_version, #resolve_constraints

Methods inherited from Application

[], #app_defaults, available_application_names, banner, clear!, clear?, clear_everything_for_tests, #configure_indirector_routes, controlled_run, #deprecate, #deprecated?, environment_mode, exit, find, get_environment_mode, #handle_logdest_arg, #handlearg, #help, #initialize_app_defaults, interrupted?, #log_runtime_environment, #main, #name, option, option_parser_commands, #parse_options, #preinit, restart!, restart_requested?, #run_command, run_mode, #set_log_level, #setup, #setup_logs, stop!, stop_requested?, #summary, try_load_class

Methods included from Util

absolute_path?, benchmark, chuser, clear_environment, default_env, deterministic_rand, deterministic_rand_int, exit_on_fail, get_env, get_environment, logmethods, merge_environment, path_to_uri, pretty_backtrace, replace_file, safe_posix_fork, set_env, symbolizehash, thinmark, uri_encode, uri_query_encode, uri_to_path, which, withenv, withumask

Methods included from Util::POSIX

#get_posix_field, #gid, groups_of, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid

Methods included from Util::SymbolicFileMode

#normalize_symbolic_mode, #symbolic_mode_to_int, #valid_symbolic_mode?

Constructor Details

#initialize(name, install_dir, options = {}) ⇒ Installer

Returns a new instance of Installer.



20
21
22
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
# File 'lib/puppet/module_tool/applications/installer.rb', line 20

def initialize(name, install_dir, options = {})
  super(options)

  @action              = :install
  @environment         = options[:environment_instance]
  @ignore_dependencies = forced? || options[:ignore_dependencies]
  @name                = name
  @install_dir         = install_dir

  Puppet::Forge::Cache.clean

  @local_tarball = Puppet::FileSystem.exist?(name)

  if @local_tarball
    release = local_tarball_source.release
    @name = release.name
    options[:version] = release.version.to_s
    SemanticPuppet::Dependency.add_source(local_tarball_source)

    # If we're operating on a local tarball and ignoring dependencies, we
    # don't need to search any additional sources.  This will cut down on
    # unnecessary network traffic.
    unless @ignore_dependencies
      SemanticPuppet::Dependency.add_source(installed_modules_source)
      SemanticPuppet::Dependency.add_source(module_repository)
    end

  else
    SemanticPuppet::Dependency.add_source(installed_modules_source) unless forced?
    SemanticPuppet::Dependency.add_source(module_repository)
  end
end

Instance Method Details

#runObject



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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
109
110
111
112
113
114
115
116
117
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/puppet/module_tool/applications/installer.rb', line 53

def run
  # Disallow anything that invokes md5 to avoid un-friendly termination due to FIPS
  raise _("Module install is prohibited in FIPS mode.") if Facter.value(:fips_enabled)

  name = @name.tr('/', '-')
  version = options[:version] || '>= 0.0.0'

  results = { :action => :install, :module_name => name, :module_version => version }

  begin
    if installed_module = installed_modules[name]
      unless forced?
        if Puppet::Module.parse_range(version).include? installed_module.version
          results[:result] = :noop
          results[:version] = installed_module.version
          return results
        else
          changes = Checksummer.run(installed_modules[name].mod.path) rescue []
          raise AlreadyInstalledError,
            :module_name       => name,
            :installed_version => installed_modules[name].version,
            :requested_version => options[:version] || :latest,
            :local_changes     => changes
        end
      end
    end

    @install_dir.prepare(name, options[:version] || 'latest')
    results[:install_dir] = @install_dir.target

    unless @local_tarball && @ignore_dependencies
      Puppet.notice _("Downloading from %{host} ...") % { host: module_repository.host }
    end

    if @ignore_dependencies
      graph = build_single_module_graph(name, version)
    else
      graph = build_dependency_graph(name, version)
    end

    unless forced?
      add_module_name_constraints_to_graph(graph)
    end

    installed_modules.each do |mod, release|
      mod = mod.tr('/', '-')
      next if mod == name

      version = release.version

      unless forced?
        # Since upgrading already installed modules can be troublesome,
        # we'll place constraints on the graph for each installed module,
        # locking it to upgrades within the same major version.
        installed_range = ">=#{version} #{version.major}.x"
        graph.add_constraint('installed', mod, installed_range) do |node|
          Puppet::Module.parse_range(installed_range).include? node.version
        end

        release.mod.dependencies.each do |dep|
          dep_name = dep['name'].tr('/', '-')

          range = dep['version_requirement']
          graph.add_constraint("#{mod} constraint", dep_name, range) do |node|
            Puppet::Module.parse_range(range).include? node.version
          end
        end
      end
    end

    # Ensure that there is at least one candidate release available
    # for the target package.
    if graph.dependencies[name].empty?
      raise NoCandidateReleasesError, results.merge(:module_name => name, :source => module_repository.host, :requested_version => options[:version] || :latest)
    end

    begin
      Puppet.info _("Resolving dependencies ...")
      releases = SemanticPuppet::Dependency.resolve(graph)
    rescue SemanticPuppet::Dependency::UnsatisfiableGraph
      raise NoVersionsSatisfyError, results.merge(:requested_name => name)
    end

    unless forced?
      # Check for module name conflicts.
      releases.each do |rel|
        if installed_module = installed_modules_source.by_name[rel.name.split('-').last]
          next if installed_module.has_metadata? && installed_module.forge_name.tr('/', '-') == rel.name

          if rel.name != name
            dependency = {
              :name => rel.name,
              :version => rel.version
            }
          end

          raise InstallConflictError,
            :requested_module  => name,
            :requested_version => options[:version] || 'latest',
            :dependency        => dependency,
            :directory         => installed_module.path,
            :metadata          => installed_module.
        end
      end
    end

    Puppet.info _("Preparing to install ...")
    releases.each { |release| release.prepare }

    Puppet.notice _('Installing -- do not interrupt ...')
    releases.each do |release|
      installed = installed_modules[release.name]
      if forced? || installed.nil?
        release.install(Pathname.new(results[:install_dir]))
      else
        release.install(Pathname.new(installed.mod.modulepath))
      end
    end

    results[:result] = :success
    results[:installed_modules] = releases
    results[:graph] = [ build_install_graph(releases.first, releases) ]

  rescue ModuleToolError, ForgeError => err
    results[:error] = {
      :oneline   => err.message,
      :multiline => err.multiline,
    }
  ensure
    results[:result] ||= :failure
  end

  results
end