Class: ExtraSpace::Facility
- Inherits:
-
Object
- Object
- ExtraSpace::Facility
- Defined in:
- lib/extraspace/facility.rb
Overview
A facility (address + geocode + prices) on extraspace.com.
e.g. www.extraspace.com/storage/facilities/us/alabama/auburn/3264/
Constant Summary collapse
- DEFAULT_EMAIL =
'info@extraspace.com'
- DEFAULT_PHONE =
'1-855-518-1443'
- SITEMAP_URL =
'https://www.extraspace.com/facility-sitemap.xml'
Instance Attribute Summary collapse
- #address ⇒ Address
- #email ⇒ String
- #geocode ⇒ Geocode
- #id ⇒ String
- #name ⇒ String
- #phone ⇒ String
- #prices ⇒ Array<Price>
- #url ⇒ String
Class Method Summary collapse
- .crawl ⇒ Object
- .fetch(url:) ⇒ Facility
- .parse(url:, document:) ⇒ Facility
- .parse_address(data:) ⇒ Address
- .parse_geocode(data:) ⇒ Geocode
- .parse_next_data(document:) ⇒ Hash
- .parse_prices(data:) ⇒ Array<Price>
- .sitemap ⇒ Sitemap
Instance Method Summary collapse
-
#initialize(id:, url:, name:, address:, geocode:, phone: DEFAULT_PHONE, email: DEFAULT_EMAIL, prices: []) ⇒ Facility
constructor
A new instance of Facility.
- #inspect ⇒ String
- #text ⇒ String
Constructor Details
#initialize(id:, url:, name:, address:, geocode:, phone: DEFAULT_PHONE, email: DEFAULT_EMAIL, prices: []) ⇒ Facility
Returns a new instance of Facility.
131 132 133 134 135 136 137 138 139 140 |
# File 'lib/extraspace/facility.rb', line 131 def initialize(id:, url:, name:, address:, geocode:, phone: DEFAULT_PHONE, email: DEFAULT_EMAIL, prices: []) @id = id @url = url @name = name @address = address @geocode = geocode @phone = phone @email = email @prices = prices end |
Instance Attribute Details
#email ⇒ String
31 32 33 |
# File 'lib/extraspace/facility.rb', line 31 def email @email end |
#id ⇒ String
15 16 17 |
# File 'lib/extraspace/facility.rb', line 15 def id @id end |
#name ⇒ String
23 24 25 |
# File 'lib/extraspace/facility.rb', line 23 def name @name end |
#phone ⇒ String
27 28 29 |
# File 'lib/extraspace/facility.rb', line 27 def phone @phone end |
#url ⇒ String
19 20 21 |
# File 'lib/extraspace/facility.rb', line 19 def url @url end |
Class Method Details
.crawl ⇒ Object
108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/extraspace/facility.rb', line 108 def self.crawl sitemap.links.each do |link| url = link.loc facility = fetch(url:) puts facility.text facility.prices.each do |price| puts price.text end puts end end |
.fetch(url:) ⇒ Facility
53 54 55 56 |
# File 'lib/extraspace/facility.rb', line 53 def self.fetch(url:) document = Crawler.html(url:) parse(url:, document:) end |
.parse(url:, document:) ⇒ Facility
62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/extraspace/facility.rb', line 62 def self.parse(url:, document:) data = parse_next_data(document: document) page_data = data.dig('props', 'pageProps', 'pageData', 'data') store_data = page_data.dig('facilityData', 'data', 'store') id = store_data['number'] name = store_data['name'] address = parse_address(data: store_data) geocode = parse_geocode(data: store_data) prices = parse_prices(data: page_data) new(id:, url:, name:, address:, geocode:, prices:) end |
.parse_address(data:) ⇒ Address
78 79 80 |
# File 'lib/extraspace/facility.rb', line 78 def self.parse_address(data:) Address.parse(data: data['address']) end |
.parse_geocode(data:) ⇒ Geocode
84 85 86 |
# File 'lib/extraspace/facility.rb', line 84 def self.parse_geocode(data:) Geocode.parse(data: data['geocode']) end |
.parse_next_data(document:) ⇒ Hash
104 105 106 |
# File 'lib/extraspace/facility.rb', line 104 def self.parse_next_data(document:) JSON.parse(document.at('#__NEXT_DATA__').text) end |
.parse_prices(data:) ⇒ Array<Price>
91 92 93 94 95 96 97 |
# File 'lib/extraspace/facility.rb', line 91 def self.parse_prices(data:) unit_classes = data.dig('unitClasses', 'data', 'unitClasses') unit_classes .reject { |price_data| price_data.dig('availability', 'available')&.zero? } .map { |price_data| Price.parse(data: price_data) } end |
.sitemap ⇒ Sitemap
46 47 48 |
# File 'lib/extraspace/facility.rb', line 46 def self.sitemap Sitemap.fetch(url: SITEMAP_URL) end |
Instance Method Details
#inspect ⇒ String
143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/extraspace/facility.rb', line 143 def inspect props = [ "id=#{@id.inspect}", "url=#{@url.inspect}", "address=#{@address.inspect}", "geocode=#{@geocode.inspect}", "phone=#{@phone.inspect}", "email=#{@email.inspect}", "prices=#{@prices.inspect}" ] "#<#{self.class.name} #{props.join(' ')}>" end |
#text ⇒ String
157 158 159 |
# File 'lib/extraspace/facility.rb', line 157 def text "#{@id} | #{@name} | #{@phone} | #{@email} | #{@address.text} | #{@geocode.text}" end |