Class: Fletcher::Model::Ebay

Inherits:
Base
  • Object
show all
Defined in:
lib/fletcher/models/ebay.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#parse_price

Class Method Details

.regexpObject

A regular expression for determining if a url comes from a specific service/website



5
6
7
# File 'lib/fletcher/models/ebay.rb', line 5

def self.regexp
  /ebay\.com/
end

Instance Method Details

#parse(data) ⇒ Object

Parse data and look for object attributes to give to object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/fletcher/models/ebay.rb', line 10

def parse(data)
  super(data)

  case doc
  when Nokogiri::HTML::Document
    # Get Name
    self.name = doc.xpath("//h1[@itemprop='name']").first_string
    
    # Get Description
    # OMITTED: This is tough to get because ebay item descriptions are custom html/content created by sellers

    # Get Price
    raw_price = doc.xpath("//span[@itemprop='price']").first_string
    parse_price(raw_price.gsub(/US/, "")) if raw_price
    
    # Get Image
    self.images = [{:src => doc.xpath("//span[@itemprop='image']/img").first_string}]
    self.image = images.first
  end            
end