103 lines
3.7 KiB
Ruby
103 lines
3.7 KiB
Ruby
#
|
|
# Author:: Joshua Timberman (<jtimberman@chef.io>)
|
|
# Author:: Graeme Mathieson (<mathie@woss.name>)
|
|
# Cookbook Name:: homebrew
|
|
# Libraries:: homebrew_package
|
|
#
|
|
# Copyright 2011-2013, Chef Software, Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
# cookbook libraries are unconditionally included if the cookbook is
|
|
# present on a node. This approach should avoid creating this class if
|
|
# the node already has Chef::Provider::Package::Homebrew, such as with
|
|
# Chef 12.
|
|
# https://github.com/chef/chef-rfc/blob/master/rfc016-homebrew-osx-package-provider.md
|
|
unless defined?(Chef::Provider::Package::Homebrew) && Chef::Platform.find('mac_os_x', nil)[:package] == Chef::Provider::Package::Homebrew
|
|
require 'chef/provider/package'
|
|
require 'chef/resource/package'
|
|
require 'chef/platform'
|
|
require 'chef/mixin/shell_out'
|
|
|
|
class Chef
|
|
class Provider
|
|
class Package
|
|
# Package
|
|
class Homebrew < Package
|
|
# Homebrew packagex
|
|
include Chef::Mixin::ShellOut
|
|
include ::Homebrew::Mixin
|
|
|
|
def load_current_resource
|
|
@current_resource = Chef::Resource::Package.new(@new_resource.name)
|
|
@current_resource.package_name(@new_resource.package_name)
|
|
@current_resource.version(current_installed_version)
|
|
|
|
@current_resource
|
|
end
|
|
|
|
def install_package(name, _version)
|
|
brew('install', @new_resource.options, name)
|
|
end
|
|
|
|
def upgrade_package(name, _version)
|
|
brew('upgrade', name)
|
|
end
|
|
|
|
def remove_package(name, _version)
|
|
brew('uninstall', @new_resource.options, name)
|
|
end
|
|
|
|
# Homebrew doesn't really have a notion of purging, so just remove.
|
|
def purge_package(name, version)
|
|
@new_resource.options = ((@new_resource.options || '') << ' --force').strip
|
|
remove_package(name, version)
|
|
end
|
|
|
|
protected
|
|
|
|
def brew(*args)
|
|
get_response_from_command("brew #{args.join(' ')}")
|
|
end
|
|
|
|
def current_installed_version
|
|
versions = package_info['installed'].map { |v| v['version'] }
|
|
versions.join(' ') unless versions.empty?
|
|
end
|
|
|
|
def candidate_version
|
|
package_info['versions']['stable'] ? package_info['versions']['stable'].to_s : package_info['versions'].find { |_k, v| v if v.is_a?(String) }
|
|
end
|
|
|
|
def package_info
|
|
require 'json'
|
|
JSON.parse(brew('info', @new_resource.package_name, '--json=v1'))[0]
|
|
end
|
|
|
|
def get_response_from_command(command)
|
|
require 'etc'
|
|
home_dir = Etc.getpwnam(homebrew_owner).dir
|
|
|
|
Chef::Log.debug "Executing '#{command}' as #{homebrew_owner}"
|
|
output = shell_out!(command, user: homebrew_owner, environment: { 'USER' => homebrew_owner, 'HOME' => home_dir, 'RUBYOPT' => nil })
|
|
output.stdout
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Chef::Platform.set platform: :mac_os_x_server, resource: :package, provider: Chef::Provider::Package::Homebrew
|
|
Chef::Platform.set platform: :mac_os_x, resource: :package, provider: Chef::Provider::Package::Homebrew
|
|
end
|