2016-09-14 18:17:27 +00:00
|
|
|
//
|
|
|
|
// Reset.swift
|
|
|
|
// mas-cli
|
|
|
|
//
|
|
|
|
// Created by Andrew Naylor on 14/09/2016.
|
|
|
|
// Copyright © 2016 Andrew Naylor. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2018-07-04 20:56:10 +00:00
|
|
|
import Commandant
|
|
|
|
import Result
|
|
|
|
|
2016-09-24 14:53:50 +00:00
|
|
|
struct ResetCommand: CommandProtocol {
|
2016-09-14 18:17:27 +00:00
|
|
|
typealias Options = ResetOptions
|
|
|
|
let verb = "reset"
|
|
|
|
let function = "Resets the Mac App Store"
|
|
|
|
|
2016-09-17 12:58:38 +00:00
|
|
|
func run(_ options: Options) -> Result<(), MASError> {
|
2016-09-14 18:17:27 +00:00
|
|
|
/*
|
|
|
|
The "Reset Application" command in the Mac App Store debug menu performs
|
|
|
|
the following steps
|
|
|
|
|
|
|
|
- killall Dock
|
|
|
|
- killall storeagent (storeagent no longer exists)
|
|
|
|
- rm com.apple.appstore download directory
|
|
|
|
- clear cookies (appears to be a no-op)
|
|
|
|
|
|
|
|
As storeagent no longer exists we will implement a slight variant and kill all
|
|
|
|
App Store-associated processes
|
|
|
|
- storeaccountd
|
|
|
|
- storeassetd
|
|
|
|
- storedownloadd
|
|
|
|
- storeinstalld
|
|
|
|
- storelegacy
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Kill processes
|
|
|
|
let killProcs = [
|
|
|
|
"Dock",
|
|
|
|
"storeaccountd",
|
|
|
|
"storeassetd",
|
|
|
|
"storedownloadd",
|
|
|
|
"storeinstalld",
|
|
|
|
"storelegacy",
|
|
|
|
]
|
|
|
|
|
2016-09-17 12:58:38 +00:00
|
|
|
let kill = Process()
|
|
|
|
let stdout = Pipe()
|
|
|
|
let stderr = Pipe()
|
2016-09-14 18:17:27 +00:00
|
|
|
|
|
|
|
kill.launchPath = "/usr/bin/killall"
|
|
|
|
kill.arguments = killProcs
|
|
|
|
kill.standardOutput = stdout
|
|
|
|
kill.standardError = stderr
|
|
|
|
|
|
|
|
kill.launch()
|
|
|
|
kill.waitUntilExit()
|
|
|
|
|
|
|
|
if kill.terminationStatus != 0 && options.debug {
|
|
|
|
let output = stderr.fileHandleForReading.readDataToEndOfFile()
|
2016-09-25 21:57:11 +00:00
|
|
|
printInfo("killall failed:\r\n\(String(data: output, encoding: String.Encoding.utf8)!)")
|
2016-09-14 18:17:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wipe Download Directory
|
2018-01-26 23:32:28 +00:00
|
|
|
if let directory = CKDownloadDirectory(nil) {
|
|
|
|
do {
|
|
|
|
try FileManager.default.removeItem(atPath: directory)
|
|
|
|
} catch {
|
|
|
|
if options.debug {
|
|
|
|
printError("removeItemAtPath:\"\(directory)\" failed, \(error)")
|
|
|
|
}
|
2016-09-14 18:17:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-17 12:58:38 +00:00
|
|
|
return .success(())
|
2016-09-14 18:17:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-24 14:53:50 +00:00
|
|
|
struct ResetOptions: OptionsProtocol {
|
2016-09-14 18:17:27 +00:00
|
|
|
let debug: Bool
|
|
|
|
|
2016-09-17 12:58:38 +00:00
|
|
|
static func create(debug: Bool) -> ResetOptions {
|
|
|
|
return ResetOptions(debug: debug)
|
|
|
|
}
|
|
|
|
|
|
|
|
static func evaluate(_ m: CommandMode) -> Result<ResetOptions, CommandantError<MASError>> {
|
|
|
|
return create
|
2016-09-14 18:17:27 +00:00
|
|
|
<*> m <| Switch(flag: nil, key: "debug", usage: "Enable debug mode")
|
|
|
|
}
|
|
|
|
}
|