2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2019-01-20 20:04:19 +05:30
|
|
|
|
2016-05-01 22:04:46 +08:00
|
|
|
module Homebrew
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2019-01-20 20:04:19 +05:30
|
|
|
def analytics_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2019-08-06 14:17:17 -04:00
|
|
|
`analytics` [<subcommand>]
|
2019-01-20 20:04:19 +05:30
|
|
|
|
2019-03-09 13:00:15 -05:00
|
|
|
If `on` or `off` is passed, turn Homebrew's analytics on or off respectively.
|
2019-01-20 20:04:19 +05:30
|
|
|
|
2019-08-20 00:04:14 -04:00
|
|
|
If `state` is passed, display the current anonymous user behaviour analytics state.
|
2019-01-20 20:04:19 +05:30
|
|
|
Read more at <https://docs.brew.sh/Analytics>.
|
|
|
|
|
2019-08-06 14:22:24 -04:00
|
|
|
If `regenerate-uuid` is passed, regenerate the UUID used in Homebrew's analytics.
|
2019-01-20 20:04:19 +05:30
|
|
|
EOS
|
|
|
|
switch :verbose
|
|
|
|
switch :debug
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-01 22:04:46 +08:00
|
|
|
def analytics
|
2019-01-20 20:04:19 +05:30
|
|
|
analytics_args.parse
|
2016-05-01 22:04:46 +08:00
|
|
|
config_file = HOMEBREW_REPOSITORY/".git/config"
|
|
|
|
|
2019-01-20 20:04:19 +05:30
|
|
|
raise UsageError if args.remaining.size > 1
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2019-01-20 20:04:19 +05:30
|
|
|
case args.remaining.first
|
2016-05-01 22:04:46 +08:00
|
|
|
when nil, "state"
|
2018-09-17 22:02:00 +02:00
|
|
|
analyticsdisabled =
|
|
|
|
Utils.popen_read("git config --file=#{config_file} --get homebrew.analyticsdisabled").chomp
|
|
|
|
uuid =
|
|
|
|
Utils.popen_read("git config --file=#{config_file} --get homebrew.analyticsuuid").chomp
|
2016-05-01 22:04:46 +08:00
|
|
|
if ENV["HOMEBREW_NO_ANALYTICS"]
|
|
|
|
puts "Analytics is disabled (by HOMEBREW_NO_ANALYTICS)."
|
|
|
|
elsif analyticsdisabled == "true"
|
|
|
|
puts "Analytics is disabled."
|
|
|
|
else
|
|
|
|
puts "Analytics is enabled."
|
2018-09-17 22:02:00 +02:00
|
|
|
puts "UUID: #{uuid}" if uuid.present?
|
2016-05-01 22:04:46 +08:00
|
|
|
end
|
|
|
|
when "on"
|
|
|
|
safe_system "git", "config", "--file=#{config_file}",
|
2019-04-30 08:44:35 +01:00
|
|
|
"--replace-all", "homebrew.analyticsdisabled", "false"
|
2016-05-01 22:04:46 +08:00
|
|
|
safe_system "git", "config", "--file=#{config_file}",
|
2019-04-30 08:44:35 +01:00
|
|
|
"--replace-all", "homebrew.analyticsmessage", "true"
|
2016-05-01 22:04:46 +08:00
|
|
|
when "off"
|
|
|
|
safe_system "git", "config", "--file=#{config_file}",
|
2019-04-30 08:44:35 +01:00
|
|
|
"--replace-all", "homebrew.analyticsdisabled", "true"
|
2016-05-01 22:04:46 +08:00
|
|
|
system "git", "config", "--file=#{config_file}", "--unset-all", "homebrew.analyticsuuid"
|
|
|
|
when "regenerate-uuid"
|
|
|
|
# it will be regenerated in next run.
|
|
|
|
system "git", "config", "--file=#{config_file}", "--unset-all", "homebrew.analyticsuuid"
|
|
|
|
else
|
|
|
|
raise UsageError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|