169 lines
5.0 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
2019-09-13 19:52:21 +02:00
require "cask/macos"
2018-09-06 08:29:14 +02:00
module Cask
2020-08-24 23:43:40 +02:00
# Helper class for uninstalling `.pkg` installers.
#
# @api private
2016-09-24 13:52:43 +02:00
class Pkg
2020-11-17 03:39:48 +01:00
extend T::Sig
sig { params(regexp: String, command: T.class_of(SystemCommand)).returns(T::Array[Pkg]) }
2016-09-24 13:52:43 +02:00
def self.all_matching(regexp, command)
2016-10-23 14:44:14 +02:00
command.run("/usr/sbin/pkgutil", args: ["--pkgs=#{regexp}"]).stdout.split("\n").map do |package_id|
2016-09-24 13:52:43 +02:00
new(package_id.chomp, command)
2016-10-23 14:44:14 +02:00
end
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { returns(String) }
2016-09-24 13:52:43 +02:00
attr_reader :package_id
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { params(package_id: String, command: T.class_of(SystemCommand)).void }
2016-09-24 13:52:43 +02:00
def initialize(package_id, command = SystemCommand)
@package_id = package_id
@command = command
end
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { void }
2016-09-24 13:52:43 +02:00
def uninstall
2017-03-08 03:03:49 +01:00
unless pkgutil_bom_files.empty?
odebug "Deleting pkg files"
@command.run!(
"/usr/bin/xargs",
2021-03-16 02:07:06 +01:00
args: ["-0", "--", "/bin/rm", "--"],
input: pkgutil_bom_files.join("\0"),
2018-11-02 17:18:07 +00:00
sudo: true,
)
2016-09-24 13:52:43 +02:00
end
2017-03-08 03:03:49 +01:00
unless pkgutil_bom_specials.empty?
odebug "Deleting pkg symlinks and special files"
@command.run!(
"/usr/bin/xargs",
2021-03-16 02:07:06 +01:00
args: ["-0", "--", "/bin/rm", "--"],
input: pkgutil_bom_specials.join("\0"),
2018-11-02 17:18:07 +00:00
sudo: true,
)
2016-08-18 22:11:42 +03:00
end
2017-03-08 03:03:49 +01:00
unless pkgutil_bom_dirs.empty?
odebug "Deleting pkg directories"
2021-03-16 02:07:06 +01:00
rmdir(deepest_path_first(pkgutil_bom_dirs))
2016-09-24 13:52:43 +02:00
end
2017-03-08 03:03:49 +01:00
2021-03-16 02:07:06 +01:00
rmdir(root) unless MacOS.undeletable?(root)
2016-09-24 13:52:43 +02:00
forget
2016-08-18 22:11:42 +03:00
end
2020-11-17 03:39:48 +01:00
sig { void }
2016-09-24 13:52:43 +02:00
def forget
odebug "Unregistering pkg receipt (aka forgetting)"
@command.run!("/usr/sbin/pkgutil", args: ["--forget", package_id], sudo: true)
end
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { returns(T::Array[Pathname]) }
def pkgutil_bom_files
@pkgutil_bom_files ||= pkgutil_bom_all.select(&:file?) - pkgutil_bom_specials
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { returns(T::Array[Pathname]) }
def pkgutil_bom_specials
@pkgutil_bom_specials ||= pkgutil_bom_all.select(&method(:special?))
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { returns(T::Array[Pathname]) }
2016-09-24 13:52:43 +02:00
def pkgutil_bom_dirs
@pkgutil_bom_dirs ||= pkgutil_bom_all.select(&:directory?) - pkgutil_bom_specials
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { returns(T::Array[Pathname]) }
2016-09-24 13:52:43 +02:00
def pkgutil_bom_all
@pkgutil_bom_all ||= @command.run!("/usr/sbin/pkgutil", args: ["--files", package_id])
.stdout
.split("\n")
.map { |path| root.join(path) }
.reject(&MacOS.public_method(:undeletable?))
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
2020-11-17 03:39:48 +01:00
sig { returns(Pathname) }
2016-09-24 13:52:43 +02:00
def root
@root ||= Pathname.new(info.fetch("volume")).join(info.fetch("install-location"))
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
def info
@info ||= @command.run!("/usr/sbin/pkgutil", args: ["--pkg-info-plist", package_id])
.plist
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
private
2020-11-17 03:39:48 +01:00
sig { params(path: Pathname).returns(T::Boolean) }
def special?(path)
path.symlink? || path.chardev? || path.blockdev?
end
2021-03-16 02:07:06 +01:00
# Helper script to delete empty directories after deleting `.DS_Store` files and broken symlinks.
# Needed in order to execute all file operations with `sudo`.
RMDIR_SH = <<~'BASH'
set -euo pipefail
# Try removing as many empty directories as possible with a single
# `rmdir` call to avoid or at least speed up the loop below.
if /bin/rmdir -- "${@}" &>/dev/null; then
exit
fi
2021-03-16 02:07:06 +01:00
for path in "${@}"; do
2021-03-28 01:50:15 +01:00
symlink=true
[[ -L "${path}" ]] || symlink=false
directory=false
if [[ -d "${path}" ]]; then
directory=true
if [[ -e "${path}/.DS_Store" ]]; then
/bin/rm -- "${path}/.DS_Store"
fi
# Some packages leave broken symlinks around; we clean them out before
# attempting to `rmdir` to prevent extra cruft from accumulating.
/usr/bin/find -f "${path}" -- -mindepth 1 -maxdepth 1 -type l ! -exec /bin/test -e {} \; -delete
elif ! ${symlink} && [[ ! -e "${path}" ]]; then
# Skip paths that don't exists and aren't a broken symlink.
continue
fi
2021-03-28 01:50:15 +01:00
if ${symlink}; then
2021-03-16 02:07:06 +01:00
# Delete directory symlink.
2021-03-28 01:50:15 +01:00
/bin/rm -- "${path}"
elif ${directory}; then
2021-03-16 02:07:06 +01:00
# Delete directory if empty.
2021-03-28 01:50:15 +01:00
/usr/bin/find -f "${path}" -- -maxdepth 0 -type d -empty -exec /bin/rmdir -- {} \;
2021-03-16 02:07:06 +01:00
else
# Try `rmdir` anyways to show a proper error.
2021-03-28 01:50:15 +01:00
/bin/rmdir -- "${path}"
2021-03-16 02:07:06 +01:00
fi
done
BASH
private_constant :RMDIR_SH
sig { params(path: T.any(Pathname, T::Array[Pathname])).void }
def rmdir(path)
2021-03-16 02:07:06 +01:00
@command.run!(
"/usr/bin/xargs",
args: ["-0", "--", "/bin/bash", "-c", RMDIR_SH, "--"],
input: Array(path).join("\0"),
sudo: true,
)
2016-08-18 22:11:42 +03:00
end
2020-11-17 03:39:48 +01:00
sig { params(paths: T::Array[Pathname]).returns(T::Array[Pathname]) }
def deepest_path_first(paths)
paths.sort_by { |path| -path.to_s.split(File::SEPARATOR).count }
2016-08-18 22:11:42 +03:00
end
end
end