-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite-info.rb
45 lines (41 loc) · 1.16 KB
/
site-info.rb
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
module SiteInfoMehtods
def get_imgs(xdoc)
xdoc.xpath(imgs_xpath).map{ |e| e['src'] }
end
def get_tags(xdoc)
xdoc.xpath(tags_xpath).map{ |e| e.text }
end
def get_series(xdoc)
books = xdoc.xpath(series_xpath).map{ |e| e['href'] }
books.select{ |href| href =~ /http/ }
end
end
class SiteInfo_A
include SiteInfoMethods
def initialize(url)
fail if url !~ /oreno-erohon.com/
@url = url
@imgs_xpath = '//div[@id="main"]/article/div/section/img'
@tags_xpath = '//div[@class="article-tags"][1]/ul/li/a'
@series_xpath = '//div[@class="easy-series-toc"][1]/table/tbody/tr/td/a'
end
end
class SiteInfo_B
include SiteInfoMethods
def initialize(url)
fail if url !~ /eromanga-collector.com/
@url = url
@imgs_xpath = '//div[@id="main"]/article/div/section/img'
@tags_xpath = '//table[@class="article-all-taxs"][1]/tr[4]/td/ul/li/a'
@series_xpath = '//div[@class="easy-series-toc"][1]/table/tbody/tr/td/a'
end
end
def getSiteInfo(url)
if url =~ /oreno-erohon.com/
return SiteInfo_A.new(url)
elsif url =~ /eromanga-collector.com/
return SiteInfo_B.new(url)
else
fail "unsupported site: #{url}"
end
end