| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  | module Hbc | 
					
						
							|  |  |  |   class CLI | 
					
						
							| 
									
										
										
										
											2017-05-20 19:08:03 +02:00
										 |  |  |     class Search < AbstractCommand | 
					
						
							| 
									
										
										
										
											2017-05-20 03:44:21 +02:00
										 |  |  |       def run | 
					
						
							| 
									
										
										
										
											2017-05-21 00:15:56 +02:00
										 |  |  |         results = self.class.search(*args) | 
					
						
							|  |  |  |         self.class.render_results(*results) | 
					
						
							| 
									
										
										
										
											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 self.extract_regexp(string) | 
					
						
							|  |  |  |         if string =~ %r{^/(.*)/$} | 
					
						
							|  |  |  |           Regexp.last_match[1] | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           false | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-24 19:31:36 +02:00
										 |  |  |       def self.search_remote(query) | 
					
						
							| 
									
										
										
										
											2017-08-13 13:10:38 -04:00
										 |  |  |         matches = GitHub.search_code(user: "caskroom", path: "Casks", | 
					
						
							|  |  |  |                                      filename: query, extension: "rb") | 
					
						
							| 
									
										
										
										
											2017-08-14 11:08:56 -04:00
										 |  |  |         matches.map do |match| | 
					
						
							| 
									
										
										
										
											2017-04-24 19:31:36 +02:00
										 |  |  |           tap = Tap.fetch(match["repository"]["full_name"]) | 
					
						
							|  |  |  |           next if tap.installed? | 
					
						
							|  |  |  |           "#{tap.name}/#{File.basename(match["path"], ".rb")}" | 
					
						
							|  |  |  |         end.compact | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |       def self.search(*arguments) | 
					
						
							|  |  |  |         exact_match = nil | 
					
						
							|  |  |  |         partial_matches = [] | 
					
						
							|  |  |  |         search_term = arguments.join(" ") | 
					
						
							|  |  |  |         search_regexp = extract_regexp arguments.first | 
					
						
							|  |  |  |         all_tokens = CLI.nice_listing(Hbc.all_tokens) | 
					
						
							|  |  |  |         if search_regexp | 
					
						
							|  |  |  |           search_term = arguments.first | 
					
						
							| 
									
										
										
										
											2016-10-14 20:03:34 +02:00
										 |  |  |           partial_matches = all_tokens.grep(/#{search_regexp}/i) | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2016-10-14 20:03:34 +02:00
										 |  |  |           simplified_tokens = all_tokens.map { |t| t.sub(%r{^.*\/}, "").gsub(/[^a-z0-9]+/i, "") } | 
					
						
							|  |  |  |           simplified_search_term = search_term.sub(/\.rb$/i, "").gsub(/[^a-z0-9]+/i, "") | 
					
						
							|  |  |  |           exact_match = simplified_tokens.grep(/^#{simplified_search_term}$/i) { |t| all_tokens[simplified_tokens.index(t)] }.first | 
					
						
							|  |  |  |           partial_matches = simplified_tokens.grep(/#{simplified_search_term}/i) { |t| all_tokens[simplified_tokens.index(t)] } | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |           partial_matches.delete(exact_match) | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-04-24 19:31:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         remote_matches = search_remote(search_term) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         [exact_match, partial_matches, remote_matches, search_term] | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-24 19:31:36 +02:00
										 |  |  |       def self.render_results(exact_match, partial_matches, remote_matches, search_term) | 
					
						
							| 
									
										
										
										
											2017-07-06 01:08:59 +02:00
										 |  |  |         unless $stdout.tty? | 
					
						
							|  |  |  |           puts [*exact_match, *partial_matches, *remote_matches] | 
					
						
							|  |  |  |           return | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |         if !exact_match && partial_matches.empty? | 
					
						
							|  |  |  |           puts "No Cask found for \"#{search_term}\"." | 
					
						
							|  |  |  |           return | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         if exact_match | 
					
						
							| 
									
										
										
										
											2017-04-24 19:31:36 +02:00
										 |  |  |           ohai "Exact Match" | 
					
						
							| 
									
										
										
										
											2017-03-10 22:46:28 -08:00
										 |  |  |           puts highlight_installed exact_match | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2016-10-24 17:07:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-24 19:31:36 +02:00
										 |  |  |         unless partial_matches.empty? | 
					
						
							|  |  |  |           if extract_regexp search_term | 
					
						
							|  |  |  |             ohai "Regexp Matches" | 
					
						
							|  |  |  |           else | 
					
						
							|  |  |  |             ohai "Partial Matches" | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           puts Formatter.columns(partial_matches.map(&method(:highlight_installed))) | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-04-24 19:31:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return if remote_matches.empty? | 
					
						
							|  |  |  |         ohai "Remote Matches" | 
					
						
							|  |  |  |         puts Formatter.columns(remote_matches.map(&method(:highlight_installed))) | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-11 16:25:02 -08:00
										 |  |  |       def self.highlight_installed(token) | 
					
						
							| 
									
										
										
										
											2017-03-13 17:52:32 -05:00
										 |  |  |         return token unless Cask.new(token).installed? | 
					
						
							|  |  |  |         pretty_installed token | 
					
						
							| 
									
										
										
										
											2017-03-11 16:25:02 -08:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 13:52:43 +02:00
										 |  |  |       def self.help | 
					
						
							|  |  |  |         "searches all known Casks" | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  |   end | 
					
						
							|  |  |  | end |