Module: NHKore::CLI::SearchCmd
- Included in:
- App
- Defined in:
- lib/nhkore/cli/search_cmd.rb
Instance Method Summary collapse
- #build_search_cmd ⇒ Object
- #run_search_cmd(nhk_type, search_type) ⇒ Object
- #run_search_help ⇒ Object
- #show_search_urls(search_type) ⇒ Object
Instance Method Details
#build_search_cmd ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'lib/nhkore/cli/search_cmd.rb', line 21 def build_search_cmd app = self @search_cmd = @app_cmd.define_command do name 'search' usage 'search [OPTIONS] [COMMAND]...' aliases :se,:sea summary "Search for links to NHK News Web (Easy) (aliases: #{app.color_alias('se sea')})" description <<-DESC Search for links (using a Search Engine, etc.) to NHK News Web (Easy) & save to folder: #{SearchLinks::DEFAULT_DIR} DESC option :i,:in,<<-DESC,argument: :required,transform: lambda { |value| file to read instead of URL (for offline testing and/or slow internet; see '--show-*' options) DESC app.check_empty_opt(:in,value) } option :l,:loop,'number of times to repeat the search to ensure results',argument: :required, transform: lambda { |value| value = value.to_i value = 1 if value < 1 value } option :o,:out,<<-DESC,argument: :required,transform: lambda { |value| 'directory/file' to save links to; if you only specify a directory or a file, it will attach the appropriate default directory/file name (defaults: #{SearchLinks::DEFAULT_YASASHII_FILE}, #{SearchLinks::DEFAULT_FUTSUU_FILE}) DESC app.check_empty_opt(:out,value) } option :r,:results,'number of results per page to request from search',argument: :required, default: SearchScraper::DEFAULT_RESULT_COUNT,transform: lambda { |value| value = value.to_i value = 1 if value < 1 value } option nil,:'show-count',<<-DESC show the number of links scraped and exit; useful for manually writing/updating scripts (but not for use in a variable); implies '--dry-run' option DESC option nil,:'show-urls',<<-DESC show the URLs -- if any -- used when searching & scraping and exit; you can download these for offline testing and/or slow internet (see '--in' option) DESC run do |opts,args,cmd| opts.each do |key,value| key = key.to_s if key.include?('show') raise CLIError,"must specify a sub command for option[#{key}]" end end puts cmd.help end end @search_easy_cmd = @search_cmd.define_command do name 'easy' usage 'easy [OPTIONS] [COMMAND]...' aliases :e,:ez summary "Search for NHK News Web Easy (Yasashii) links (aliases: #{app.color_alias('e ez')})" description <<-DESC Search for NHK News Web Easy (Yasashii) links & save to file: #{SearchLinks::DEFAULT_YASASHII_FILE} DESC run do |opts,args,cmd| app.refresh_cmd(opts,args,cmd) app.run_search_help end end @search_regular_cmd = @search_cmd.define_command do name 'regular' usage 'regular [OPTIONS] [COMMAND]...' aliases :r,:reg summary "Search for NHK News Web Regular (Futsuu) links (aliases: #{app.color_alias('r reg')})" description <<-DESC Search for NHK News Web Regular (Futsuu) links & save to file: #{SearchLinks::DEFAULT_FUTSUU_FILE} DESC run do |opts,args,cmd| app.refresh_cmd(opts,args,cmd) app.run_search_help end end @search_bing_cmd = Cri::Command.define do name 'bing' usage 'bing [OPTIONS] [COMMAND]...' aliases :b summary "Search bing.com for links (aliases: #{app.color_alias('b')})" description <<-DESC Search bing.com for links & save to folder: #{SearchLinks::DEFAULT_DIR} DESC run do |opts,args,cmd| app.refresh_cmd(opts,args,cmd) app.run_search_cmd(cmd.supercommand.name.to_sym,:bing) end end # dup()/clone() must be called for `cmd.supercommand` to work appropriately. @search_easy_cmd.add_command @search_bing_cmd.dup @search_regular_cmd.add_command @search_bing_cmd.dup end |
#run_search_cmd(nhk_type, search_type) ⇒ Object
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
# File 'lib/nhkore/cli/search_cmd.rb', line 139 def run_search_cmd(nhk_type,search_type) case nhk_type when :easy nhk_type = :yasashii when :regular nhk_type = :futsuu end return if show_search_urls(search_type) @cmd_opts[:dry_run] = true if @cmd_opts[:show_count] build_in_file(:in) case nhk_type when :futsuu build_out_file(:out,default_dir: SearchLinks::DEFAULT_DIR, default_filename: SearchLinks::DEFAULT_FUTSUU_FILENAME) when :yasashii build_out_file(:out,default_dir: SearchLinks::DEFAULT_DIR, default_filename: SearchLinks::DEFAULT_YASASHII_FILENAME) else raise ArgumentError,"invalid nhk_type[#{nhk_type}]" end return unless check_in_file(:in,empty_ok: true) return unless check_out_file(:out) dry_run = @cmd_opts[:dry_run] in_file = @cmd_opts[:in] loop_times = @cmd_opts[:loop] loop_times = 1 if loop_times.nil? || loop_times < 1 out_file = @cmd_opts[:out] result_count = @cmd_opts[:results] result_count = SearchScraper::DEFAULT_RESULT_COUNT if result_count.nil? show_count = @cmd_opts[:show_count] start_spin("Scraping #{search_type}") unless show_count is_file = !in_file.nil? links = nil new_links = [] # For --dry-run url = in_file # nil will use default URL, else a file # Load previous links for 'scraped?' vars. if File.exist?(out_file) links = SearchLinks.load_file(out_file) else links = SearchLinks.new end links_count = links.length if show_count scraped_count = 0 links.links.each_value do |link| scraped_count += 1 if link.scraped? end puts "#{scraped_count} of #{links_count} links scraped." return end 1.upto(loop_times) do |loop_i| page_range = (0..10_000) # Do a range to prevent an infinite loop; ichiman! next_page = NextPage.new page_count = 0 page_num = 1 case search_type # Anything that extends SearchScraper. when :bing page_range.each do scraper = nil case search_type when :bing scraper = BingScraper.new( nhk_type,count: result_count,is_file: is_file,url: url,**@scraper_kargs ) else raise NHKore::Error,"internal code broken; add missing search_type[#{search_type}]" end next_page = scraper.scrape(links,next_page) new_links.concat(links.links.values[links_count..]) links_count = links.length page_count = next_page.count if next_page.count > 0 update_spin_detail( format(' (%d/%d, page=%d, count=%d, links=%d, new_links=%d)', loop_i,loop_times,page_num,page_count,links.length,new_links.length) ) break if next_page.empty? page_num += 1 url = next_page.url sleep_scraper end else raise ArgumentError,"invalid search_type[#{search_type}]" end end stop_spin puts puts 'Last URL scraped:' puts "> #{url}" puts if dry_run new_links.each do |link| puts link.to_s(mini: true) end else links.save_file(out_file) puts 'Saved scraped links to file:' puts "> #{out_file}" end end |
#run_search_help ⇒ Object
266 267 268 269 270 271 272 |
# File 'lib/nhkore/cli/search_cmd.rb', line 266 def run_search_help if @cmd_opts[:show_count] || @cmd_opts[:show_urls] run_search_cmd(@cmd.name.to_sym,nil) else puts @cmd.help end end |
#show_search_urls(search_type) ⇒ Object
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
# File 'lib/nhkore/cli/search_cmd.rb', line 274 def show_search_urls(search_type) return false unless @cmd_opts[:show_urls] count = @cmd_opts[:results] count = SearchScraper::DEFAULT_RESULT_COUNT if count.nil? case search_type when :bing puts 'Bing:' puts "> Easy: #{BingScraper.build_url(SearchScraper::YASASHII_SITE,count: count)}" puts "> Regular: #{BingScraper.build_url(SearchScraper::FUTSUU_SITE,count: count)}" else raise CLIError,'must specify a sub command for option[show-urls]' end return true end |