-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rb
66 lines (47 loc) · 1.68 KB
/
main.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require 'open-uri'
require 'nokogiri'
require './classes/post'
require './classes/comment'
if ARGV[0][/news.ycombinator.com/]
url = ARGV[0]
html_file = open(url)
#method will not work if it's outside scope of if statement, can I extrapolate somehow?
def extract_id(dom)
href_with_id = dom.search('.subtext .age a').map { |link| link['href']}.join
href_with_id[/\d+/].to_i
end
#Parsing Post instance parameters
dom = Nokogiri::HTML(html_file)
title = dom.css('title').text
points = dom.search('.subtext > span:first-child').map do |span|
span.inner_text
end
item_id = extract_id(dom)
#Create new instance of Post
post = Post.new(title, url, points, item_id)
#Parsing Comments instance parameters
array_of_usernames = dom.search('.comhead > a:first-child').map do |username|
username.inner_text
end
array_of_dates_or_times = dom.search('.comhead .age > a:first-child').map do |dateortime|
dateortime.inner_text
end
array_of_ids = dom.search('.comhead .age a:first-child').map do |link|
link['href'][/\d+/].to_i
end
array_of_comments = dom.search('.comment > span:first-child').map do |comment|
comment.inner_text
end
num_for_loop = array_of_comments.length
(0..num_for_loop).each do |n|
comment_object = Comment.new(array_of_ids[n], array_of_comments[n], array_of_usernames[n], array_of_dates_or_times[n])
post.add_comment(comment_object)
end
# Shows various stats of post
puts "Title: #{post.title}"
puts "ID: #{post.item_id}"
puts post.points
puts "Number of comments: #{num_for_loop}"
puts "Latest comment: #{post.comments[0].comment}"
puts "Time posted: #{post.comments[0].time_or_date_posted}"
end