1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
52
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
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
217
218
219
220
221
222
223
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
#
# Copyright:: Copyright 2015-2016, Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# 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.
#
require "chef/provider/package"
require "chef/resource/chocolatey_package"
require "chef/mixin/powershell_out"
class Chef
class Provider
class Package
class Chocolatey < Chef::Provider::Package
include Chef::Mixin::PowershellOut
provides :chocolatey_package, os: "windows"
# Declare that our arguments should be arrays
use_multipackage_api
PATHFINDING_POWERSHELL_COMMAND = "[System.Environment]::GetEnvironmentVariable('ChocolateyInstall', 'MACHINE')".freeze
CHOCO_MISSING_MSG = <<-EOS.freeze
Could not locate your Chocolatey install. To install chocolatey, we recommend
the 'chocolatey' cookbook (https://github.com/chocolatey/chocolatey-cookbook).
If Chocolatey is installed, ensure that the 'ChocolateyInstall' environment
variable is correctly set. You can verify this with the PowerShell command
'#{PATHFINDING_POWERSHELL_COMMAND}'.
EOS
# Responsible for building the current_resource.
#
# @return [Chef::Resource::ChocolateyPackage] the current_resource
def load_current_resource
@current_resource = Chef::Resource::ChocolateyPackage.new(new_resource.name)
current_resource.package_name(new_resource.package_name)
current_resource.version(build_current_versions)
current_resource
end
def define_resource_requirements
super
# The check that Chocolatey is installed is in #choco_exe.
# Chocolatey source attribute points to an alternate feed
# and not a package specific alternate source like other providers
# so we want to assert candidates exist for the alternate source
requirements.assert(:upgrade, :install) do |a|
a.assertion { candidates_exist_for_all_uninstalled? }
a.failure_message(Chef::Exceptions::Package, "No candidate version available for #{packages_missing_candidates.join(', ')}")
a.whyrun("Assuming a repository that offers #{packages_missing_candidates.join(', ')} would have been configured")
end
end
# Lazy initializer for candidate_version. A nil value means that there is no candidate
# version and the package is not installable (generally an error).
#
# @return [Array] list of candidate_versions indexed same as new_resource.package_name/version
def candidate_version
@candidate_version ||= build_candidate_versions
end
# Install multiple packages via choco.exe
#
# @param names [Array<String>] array of package names to install
# @param versions [Array<String>] array of versions to install
def install_package(names, versions)
name_versions_to_install = desired_name_versions.select { |n, v| lowercase_names(names).include?(n) }
name_nil_versions = name_versions_to_install.select { |n, v| v.nil? }
name_has_versions = name_versions_to_install.reject { |n, v| v.nil? }
# choco does not support installing multiple packages with version pins
name_has_versions.each do |name, version|
choco_command("install -y --version", version, cmd_args, name)
end
# but we can do all the ones without version pins at once
unless name_nil_versions.empty?
cmd_names = name_nil_versions.keys
choco_command("install -y", cmd_args, *cmd_names)
end
end
# Upgrade multiple packages via choco.exe
#
# @param names [Array<String>] array of package names to install
# @param versions [Array<String>] array of versions to install
def upgrade_package(names, versions)
name_versions_to_install = desired_name_versions.select { |n, v| lowercase_names(names).include?(n) }
name_nil_versions = name_versions_to_install.select { |n, v| v.nil? }
name_has_versions = name_versions_to_install.reject { |n, v| v.nil? }
# choco does not support installing multiple packages with version pins
name_has_versions.each do |name, version|
choco_command("upgrade -y --version", version, cmd_args, name)
end
# but we can do all the ones without version pins at once
unless name_nil_versions.empty?
cmd_names = name_nil_versions.keys
choco_command("upgrade -y", cmd_args, *cmd_names)
end
end
# Remove multiple packages via choco.exe
#
# @param names [Array<String>] array of package names to install
# @param versions [Array<String>] array of versions to install
def remove_package(names, versions)
choco_command("uninstall -y", cmd_args(include_source: false), *names)
end
# Support :uninstall as an action in order for users to easily convert
# from the `chocolatey` provider in the cookbook. It is, however,
# already deprecated.
def action_uninstall
Chef::Log.deprecation "The use of action :uninstall on the chocolatey_package provider is deprecated, please use :remove"
action_remove
end
# Choco does not have dpkg's distinction between purge and remove
alias purge_package remove_package
# Override the superclass check. The semantics for our new_resource.source is not files to
# install from, but like the rubygem provider's sources which are more like repos.
def check_resource_semantics!; end
private
# Magic to find where chocolatey is installed in the system, and to
# return the full path of choco.exe
#
# @return [String] full path of choco.exe
def choco_exe
@choco_exe ||= begin
# if this check is in #define_resource_requirements, it won't get
# run before choco.exe gets called from #load_current_resource.
exe_path = ::File.join(choco_install_path.to_s, "bin", "choco.exe")
raise Chef::Exceptions::MissingLibrary, CHOCO_MISSING_MSG unless ::File.exist?(exe_path)
exe_path
end
end
# lets us mock out an incorrect value for testing.
def choco_install_path
@choco_install_path ||= powershell_out!(
PATHFINDING_POWERSHELL_COMMAND
).stdout.chomp
end
# Helper to dispatch a choco command through shell_out using the timeout
# set on the new resource, with nice command formatting.
#
# @param args [String] variable number of string arguments
# @return [Mixlib::ShellOut] object returned from shell_out!
def choco_command(*args)
shell_out_with_timeout!(args_to_string(choco_exe, *args), returns: new_resource.returns)
end
# Use the available_packages Hash helper to create an array suitable for
# using in candidate_version
#
# @return [Array] list of candidate_version, same index as new_resource.package_name/version
def build_candidate_versions
new_resource.package_name.map do |package_name|
available_packages[package_name.downcase]
end
end
# Use the installed_packages Hash helper to create an array suitable for
# using in current_resource.version
#
# @return [Array] list of candidate_version, same index as new_resource.package_name/version
def build_current_versions
new_resource.package_name.map do |package_name|
installed_packages[package_name.downcase]
end
end
# Helper to construct Hash of names-to-versions, requested on the new_resource.
# If new_resource.version is nil, then all values will be nil.
#
# @return [Hash] Mapping of requested names to versions
def desired_name_versions
desired_versions = new_resource.version || new_resource.package_name.map { nil }
Hash[*lowercase_names(new_resource.package_name).zip(desired_versions).flatten]
end
# Helper to construct optional args out of new_resource
#
# @param include_source [Boolean] should the source parameter be added
# @return [String] options from new_resource or empty string
def cmd_args(include_source: true)
cmd_args = [ new_resource.options ]
cmd_args.push( "-source #{new_resource.source}" ) if new_resource.source && include_source
args_to_string(*cmd_args)
end
# Helper to nicely convert variable string args into a single command line. It
# will compact nulls or empty strings and join arguments with single spaces, without
# introducing any double-spaces for missing args.
#
# @param args [String] variable number of string arguments
# @return [String] nicely concatenated string or empty string
def args_to_string(*args)
args.reject { |i| i.nil? || i == "" }.join(" ")
end
# Available packages in chocolatey as a Hash of names mapped to versions
# If pinning a package to a specific version, filter out all non matching versions
# (names are downcased for case-insensitive matching)
#
# @return [Hash] name-to-version mapping of available packages
def available_packages
@available_packages ||=
begin
cmd = [ "list -r #{package_name_array.join ' '}" ]
cmd.push( "-source #{new_resource.source}" ) if new_resource.source
raw = parse_list_output(*cmd)
raw.keys.each_with_object({}) do |name, available|
available[name] = desired_name_versions[name] || raw[name]
end
end
@available_packages
end
# Installed packages in chocolatey as a Hash of names mapped to versions
# (names are downcased for case-insensitive matching)
#
# @return [Hash] name-to-version mapping of installed packages
def installed_packages
@installed_packages ||= Hash[*parse_list_output("list -l -r").flatten]
@installed_packages
end
# Helper to convert choco.exe list output to a Hash
# (names are downcased for case-insenstive matching)
#
# @param cmd [String] command to run
# @return [Hash] list output converted to ruby Hash
def parse_list_output(*args)
hash = {}
choco_command(*args).stdout.each_line do |line|
next if line.start_with?("Chocolatey v")
name, version = line.split("|")
hash[name.downcase] = version&.chomp
end
hash
end
# Helper to downcase all names in an array
#
# @param names [Array] original mixed case names
# @return [Array] same names in lower case
def lowercase_names(names)
names.map(&:downcase)
end
end
end
end
end
|