| 
									
										
										
										
											2020-11-25 17:03:23 +01:00
										 |  |  | # typed: true | 
					
						
							| 
									
										
										
										
											2019-04-19 15:38:03 +09:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-03 13:09:07 +01:00
										 |  |  | require "formula" | 
					
						
							| 
									
										
										
										
											2019-01-23 08:37:28 +00:00
										 |  |  | require "install" | 
					
						
							| 
									
										
										
										
											2016-05-08 20:38:17 +01:00
										 |  |  | require "system_config" | 
					
						
							| 
									
										
										
										
											2015-08-03 13:09:07 +01:00
										 |  |  | require "stringio" | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  | require "socket" | 
					
						
							| 
									
										
										
										
											2019-04-17 18:25:08 +09:00
										 |  |  | require "cli/parser" | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | module Homebrew | 
					
						
							| 
									
										
										
										
											2020-10-20 12:03:48 +02:00
										 |  |  |   extend T::Sig | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-25 21:33:48 +02:00
										 |  |  |   extend Install | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-26 01:44:51 +02:00
										 |  |  |   module_function | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 12:03:48 +02:00
										 |  |  |   sig { returns(CLI::Parser) } | 
					
						
							| 
									
										
										
										
											2019-01-23 09:20:49 +05:30
										 |  |  |   def gist_logs_args | 
					
						
							|  |  |  |     Homebrew::CLI::Parser.new do | 
					
						
							| 
									
										
										
										
											2021-01-15 15:04:02 -05:00
										 |  |  |       description <<~EOS | 
					
						
							| 
									
										
										
										
											2019-08-20 00:04:14 -04:00
										 |  |  |         Upload logs for a failed build of <formula> to a new Gist. Presents an | 
					
						
							|  |  |  |         error message if no logs are found. | 
					
						
							| 
									
										
										
										
											2019-01-23 09:20:49 +05:30
										 |  |  |       EOS | 
					
						
							|  |  |  |       switch "--with-hostname", | 
					
						
							| 
									
										
										
										
											2019-04-30 08:44:35 +01:00
										 |  |  |              description: "Include the hostname in the Gist." | 
					
						
							| 
									
										
										
										
											2019-01-23 09:20:49 +05:30
										 |  |  |       switch "-n", "--new-issue", | 
					
						
							| 
									
										
										
										
											2022-06-28 10:09:59 +01:00
										 |  |  |              description: "Automatically create a new issue in the appropriate GitHub repository " \ | 
					
						
							| 
									
										
										
										
											2019-08-20 00:04:14 -04:00
										 |  |  |                           "after creating the Gist." | 
					
						
							| 
									
										
										
										
											2019-01-23 09:20:49 +05:30
										 |  |  |       switch "-p", "--private", | 
					
						
							| 
									
										
										
										
											2022-06-28 10:09:59 +01:00
										 |  |  |              description: "The Gist will be marked private and will not appear in listings but will " \ | 
					
						
							| 
									
										
										
										
											2019-08-20 00:04:14 -04:00
										 |  |  |                           "be accessible with its link." | 
					
						
							| 
									
										
										
										
											2020-07-30 18:40:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-10 14:26:40 -05:00
										 |  |  |       named_args :formula, number: 1
 | 
					
						
							| 
									
										
										
										
											2019-01-23 09:20:49 +05:30
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 19:19:37 +02:00
										 |  |  |   def gistify_logs(f, args:) | 
					
						
							| 
									
										
										
										
											2015-04-25 22:07:06 -04:00
										 |  |  |     files = load_logs(f.logs) | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |     build_time = f.logs.ctime | 
					
						
							|  |  |  |     timestamp = build_time.strftime("%Y-%m-%d_%H-%M-%S") | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s = StringIO.new | 
					
						
							| 
									
										
										
										
											2016-05-08 20:38:17 +01:00
										 |  |  |     SystemConfig.dump_verbose_config s | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |     # Dummy summary file, asciibetically first, to control display title of gist | 
					
						
							| 
									
										
										
										
											2020-07-31 19:19:37 +02:00
										 |  |  |     files["# #{f.name} - #{timestamp}.txt"] = { content: brief_build_info(f, with_hostname: args.with_hostname?) } | 
					
						
							| 
									
										
										
										
											2016-09-17 15:32:44 +01:00
										 |  |  |     files["00.config.out"] = { content: s.string } | 
					
						
							| 
									
										
										
										
											2017-12-14 15:06:10 +00:00
										 |  |  |     files["00.doctor.out"] = { content: Utils.popen_read("#{HOMEBREW_PREFIX}/bin/brew", "doctor", err: :out) } | 
					
						
							| 
									
										
										
										
											2015-02-11 17:29:56 +08:00
										 |  |  |     unless f.core_formula? | 
					
						
							| 
									
										
										
										
											2017-10-15 02:28:32 +02:00
										 |  |  |       tap = <<~EOS | 
					
						
							| 
									
										
										
										
											2015-02-11 17:29:56 +08:00
										 |  |  |         Formula: #{f.name} | 
					
						
							| 
									
										
										
										
											2019-04-01 16:02:13 -04:00
										 |  |  |             Tap: #{f.tap} | 
					
						
							|  |  |  |            Path: #{f.path} | 
					
						
							| 
									
										
										
										
											2015-02-11 17:29:56 +08:00
										 |  |  |       EOS | 
					
						
							| 
									
										
										
										
											2016-09-17 15:32:44 +01:00
										 |  |  |       files["00.tap.out"] = { content: tap } | 
					
						
							| 
									
										
										
										
											2015-02-11 17:29:56 +08:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 23:22:26 +05:30
										 |  |  |     odie "`brew gist-logs` requires HOMEBREW_GITHUB_API_TOKEN to be set!" if GitHub::API.credentials_type == :none | 
					
						
							| 
									
										
										
										
											2018-02-19 16:14:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |     # Description formatted to work well as page title when viewing gist | 
					
						
							| 
									
										
										
										
											2020-03-13 21:15:06 +00:00
										 |  |  |     descr = if f.core_formula? | 
					
						
							|  |  |  |       "#{f.name} on #{OS_VERSION} - Homebrew build logs" | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2020-03-13 21:15:06 +00:00
										 |  |  |       "#{f.name} (#{f.full_name}) on #{OS_VERSION} - Homebrew build logs" | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2023-02-06 15:24:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     begin | 
					
						
							|  |  |  |       url = GitHub.create_gist(files, descr, private: args.private?) | 
					
						
							|  |  |  |     rescue GitHub::API::HTTPNotFoundError | 
					
						
							|  |  |  |       odie <<~EOS | 
					
						
							|  |  |  |         Your GitHub API token likely doesn't have the `gist` scope. | 
					
						
							|  |  |  |         #{GitHub.pat_blurb(GitHub::CREATE_GIST_SCOPES)} | 
					
						
							|  |  |  |       EOS | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-15 21:48:21 +05:30
										 |  |  |     url = GitHub.create_issue(f.tap, "#{f.name} failed to build on #{MacOS.full_version}", url) if args.new_issue? | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-10 23:32:02 +01:00
										 |  |  |     puts url if url | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 19:19:37 +02:00
										 |  |  |   def brief_build_info(f, with_hostname:) | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |     build_time_str = f.logs.ctime.strftime("%Y-%m-%d %H:%M:%S") | 
					
						
							| 
									
										
										
										
											2019-04-28 15:22:47 +02:00
										 |  |  |     s = +<<~EOS | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |       Homebrew build logs for #{f.full_name} on #{OS_VERSION} | 
					
						
							|  |  |  |     EOS | 
					
						
							| 
									
										
										
										
											2020-07-31 19:19:37 +02:00
										 |  |  |     if with_hostname | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |       hostname = Socket.gethostname | 
					
						
							|  |  |  |       s << "Host: #{hostname}\n" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     s << "Build date: #{build_time_str}\n" | 
					
						
							| 
									
										
										
										
											2019-04-29 13:02:15 +01:00
										 |  |  |     s.freeze | 
					
						
							| 
									
										
										
										
											2015-10-16 05:41:50 -04:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |   # Causes some terminals to display secure password entry indicators. | 
					
						
							| 
									
										
										
										
											2014-11-10 23:32:02 +01:00
										 |  |  |   def noecho_gets | 
					
						
							| 
									
										
										
										
											2021-03-17 15:34:20 +00:00
										 |  |  |     system "stty", "-echo" | 
					
						
							| 
									
										
										
										
											2014-11-10 23:32:02 +01:00
										 |  |  |     result = $stdin.gets | 
					
						
							| 
									
										
										
										
											2021-03-17 15:34:20 +00:00
										 |  |  |     system "stty", "echo" | 
					
						
							| 
									
										
										
										
											2014-11-10 23:32:02 +01:00
										 |  |  |     puts | 
					
						
							|  |  |  |     result | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-02 13:54:33 +08:00
										 |  |  |   def load_logs(dir, basedir = dir) | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  |     logs = {} | 
					
						
							| 
									
										
										
										
											2016-11-13 23:37:40 +01:00
										 |  |  |     if dir.exist? | 
					
						
							|  |  |  |       dir.children.sort.each do |file| | 
					
						
							| 
									
										
										
										
											2021-08-02 13:54:33 +08:00
										 |  |  |         if file.directory? | 
					
						
							|  |  |  |           logs.merge! load_logs(file, basedir) | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           contents = file.size? ? file.read : "empty log" | 
					
						
							|  |  |  |           # small enough to avoid GitHub "unicorn" page-load-timeout errors | 
					
						
							|  |  |  |           max_file_size = 1_000_000
 | 
					
						
							|  |  |  |           contents = truncate_text_to_approximate_size(contents, max_file_size, front_weight: 0.2) | 
					
						
							|  |  |  |           logs[file.relative_path_from(basedir).to_s.tr("/", ":")] = { content: contents } | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2016-11-13 23:37:40 +01:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2020-12-03 00:02:22 -05:00
										 |  |  |     odie "No logs." if logs.empty? | 
					
						
							| 
									
										
										
										
											2018-09-17 02:45:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  |     logs | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def gist_logs | 
					
						
							| 
									
										
										
										
											2020-07-30 18:40:10 +02:00
										 |  |  |     args = gist_logs_args.parse | 
					
						
							| 
									
										
										
										
											2020-01-14 22:04:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 11:37:07 +02:00
										 |  |  |     Install.perform_preinstall_checks(all_fatal: true) | 
					
						
							|  |  |  |     Install.perform_build_from_source_checks(all_fatal: true) | 
					
						
							| 
									
										
										
										
											2020-08-19 10:34:48 -04:00
										 |  |  |     gistify_logs(args.named.to_resolved_formulae.first, args: args) | 
					
						
							| 
									
										
										
										
											2014-09-20 14:25:09 +01:00
										 |  |  |   end | 
					
						
							|  |  |  | end |