Class: Amazon::Element
- Inherits:
-
Object
- Object
- Amazon::Element
- Defined in:
- lib/amazon/awis.rb
Overview
Internal wrapper class to provide convenient method to access Hpricot element value.
Class Method Summary collapse
-
.get(element, path = '') ⇒ Object
Similar to #get, except an element object must be passed-in.
-
.get_array(element, path = '') ⇒ Object
Similar to #get_array, except an element object must be passed-in.
-
.get_hash(element, path = '') ⇒ Object
Similar to #get_hash, except an element object must be passed-in.
-
.get_unescaped(element, path = '') ⇒ Object
Similar to #get_unescaped, except an element object must be passed-in.
Instance Method Summary collapse
-
#/(path) ⇒ Object
Find Hpricot::Elements matching the given path.
-
#elem ⇒ Object
Returns Hpricot::Elments object.
-
#get(path = '') ⇒ Object
Get the text value of the given path, leave empty to retrieve current element value.
-
#get_array(path = '') ⇒ Object
Get the array values of the given path.
-
#get_hash(path = '') ⇒ Object
Get the children element text values in hash format with the element names as the hash keys.
-
#get_unescaped(path = '') ⇒ Object
Get the unescaped HTML text of the given path.
-
#initialize(element) ⇒ Element
constructor
Pass Hpricot::Elements object.
-
#search_and_convert(path) ⇒ Object
Find Hpricot::Elements matching the given path, and convert to Amazon::Element.
- #to_s ⇒ Object
Constructor Details
#initialize(element) ⇒ Element
Pass Hpricot::Elements object
177 178 179 |
# File 'lib/amazon/awis.rb', line 177 def initialize(element) @element = element end |
Class Method Details
.get(element, path = '') ⇒ Object
Similar to #get, except an element object must be passed-in.
226 227 228 229 230 231 |
# File 'lib/amazon/awis.rb', line 226 def self.get(element, path='') return unless element result = element.at(path) result = result.inner_html if result result end |
.get_array(element, path = '') ⇒ Object
Similar to #get_array, except an element object must be passed-in.
240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
# File 'lib/amazon/awis.rb', line 240 def self.get_array(element, path='') return unless element result = element/path if (result.is_a? Hpricot::Elements) || (result.is_a? Array) parsed_result = [] result.each {|item| parsed_result << Element.get(item) } parsed_result else [Element.get(result)] end end |
.get_hash(element, path = '') ⇒ Object
Similar to #get_hash, except an element object must be passed-in.
256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/amazon/awis.rb', line 256 def self.get_hash(element, path='') return unless element result = element.at(path) if result hash = {} result = result.children result.each do |item| hash[item.name.to_sym] = item.inner_html end hash end end |
.get_unescaped(element, path = '') ⇒ Object
Similar to #get_unescaped, except an element object must be passed-in.
234 235 236 237 |
# File 'lib/amazon/awis.rb', line 234 def self.get_unescaped(element, path='') result = get(element, path) CGI::unescapeHTML(result) if result end |
Instance Method Details
#/(path) ⇒ Object
Find Hpricot::Elements matching the given path. Example: element/“author”.
187 188 189 190 191 |
# File 'lib/amazon/awis.rb', line 187 def /(path) elements = @element/path return nil if elements.size == 0 elements end |
#elem ⇒ Object
Returns Hpricot::Elments object
182 183 184 |
# File 'lib/amazon/awis.rb', line 182 def elem @element end |
#get(path = '') ⇒ Object
Get the text value of the given path, leave empty to retrieve current element value.
206 207 208 |
# File 'lib/amazon/awis.rb', line 206 def get(path='') Element.get(@element, path) end |
#get_array(path = '') ⇒ Object
Get the array values of the given path.
216 217 218 |
# File 'lib/amazon/awis.rb', line 216 def get_array(path='') Element.get_array(@element, path) end |
#get_hash(path = '') ⇒ Object
Get the children element text values in hash format with the element names as the hash keys.
221 222 223 |
# File 'lib/amazon/awis.rb', line 221 def get_hash(path='') Element.get_hash(@element, path) end |
#get_unescaped(path = '') ⇒ Object
Get the unescaped HTML text of the given path.
211 212 213 |
# File 'lib/amazon/awis.rb', line 211 def get_unescaped(path='') Element.get_unescaped(@element, path) end |
#search_and_convert(path) ⇒ Object
Find Hpricot::Elements matching the given path, and convert to Amazon::Element. Returns an array Amazon::Elements if more than Hpricot::Elements size is greater than 1.
195 196 197 198 199 200 201 202 203 |
# File 'lib/amazon/awis.rb', line 195 def search_and_convert(path) elements = self./(path) return unless elements elements = elements.map{|element| Element.new(element)} return elements.first if elements.size == 1 elements end |
#to_s ⇒ Object
270 271 272 |
# File 'lib/amazon/awis.rb', line 270 def to_s elem.to_s if elem end |