-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
67 lines (51 loc) · 1.41 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
#!/usr/bin/env ruby
require './model'
require './spider'
namespace :spider do
task :crawl do
Spider.site('https://www.xiami.com', max_concurrency: 200, max_request: 1000) do |spider|
spider.keep_links_like(
/\/artist(\/\d+)./,
/\/album(\/\d+)./,
/\/song(\/\d+)./,
/\/music/,
/\/song\/tag/,
/\/collect/,
/\/song\/showcollect\/id/,
/\/zone\/index\/id/
)
spider.on_links_like(/song\/\d+/) do |url|
puts url
end
spider.on_links_like(/album\/\d+/) do |url|
puts url
end
end
end
task :fetch do
if ARGV[1] && File.exists?(path = File.expand_path("../#{ARGV[1]}", __FILE__))