![Immoscout](doc/assets/project.png) [![Build Status](https://travis-ci.org/hausgold/immoscout.svg?branch=master)](https://travis-ci.org/hausgold/immoscout) [![Gem Version](https://badge.fury.io/rb/immoscout.svg)](https://badge.fury.io/rb/immoscout) [![Maintainability](https://api.codeclimate.com/v1/badges/bfd4a5c188d5f1aebd60/maintainability)](https://codeclimate.com/github/hausgold/immoscout/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/bfd4a5c188d5f1aebd60/test_coverage)](https://codeclimate.com/github/hausgold/immoscout/test_coverage) [![API docs](https://img.shields.io/badge/docs-API-blue.svg)](https://www.rubydoc.info/gems/immoscout) This gem provides an API wrapper for the [Immobilienscout24 REST API](https://api.immobilienscout24.de/our-apis/import-export.html). It provides the well known _ActiveRecord-like_ model methods. - [Installation](#installation) - [Usage](#usage) - [Configuration](#configuration) - [Models](#models) - [Real Estates](#real-estates) - [Overview supported actions](#overview-supported-actions) - [Initialize](#initialize) - [Find](#find) - [Create & Update & Destroy](#create--update--destroy) - [Publish & Unpublish](#publish--unpublish) - [Ontop-Placement](#ontop-placement) - [Contact](#contact) - [Overview supported actions](#overview-supported-actions-1) - [Publish](#publish) - [Overview supported actions](#overview-supported-actions-2) - [Attachment (Picture & Document)](#attachment-picture--document) - [Overview supported actions](#overview-supported-actions-3) - [Development](#development) - [Contributing](#contributing) - [License](#license) - [Code of Conduct](#code-of-conduct) ## Installation Add this line to your application's Gemfile: ```ruby gem 'immoscout' ``` And then execute: ```bash $ bundle ``` Or install it yourself as: ```bash $ gem install immoscout ``` ## Usage ### Configuration ```ruby Immoscout.configure do |config| config.consumer_key = "key" config.consumer_secret = "secret" config.oauth_token = "token" config.oauth_token_secret = "token_secret" config.use_sandbox = true # default: false config.user_name = "immoscout-user-name" # default: 'me' end ``` ### Models #### Real Estates Currently supported: `ApartmentBuy`, `HouseBuy` ##### Overview supported actions * .find(id) * .all * .first * .last * .new(hash) * .from_raw(remote_hash_or_json) * .create(hash) * #save * #destroy * #publish * #unpublish * #place(placement_type) * #unplace(placement_type) ##### Initialize ```ruby # initialize with hash house = Immoscout::Models::HouseBuy.new(title: "test", address: {street: "thestreet"}) # => #, @title="test"> # initialize with attribute writers house = Immoscout::Models::HouseBuy.new # => # house.title = "another title" # => "another title" # access nested attributes house.build_address # => # house.address.street = "another street" # lookup all allowed first-level attributes house.attributes # => [:address, :api_search_data, :building_energy_rating_type, ...] house.address.attributes # => [:city, :house_number, :postcode, :street, ...] ``` ##### Find ```ruby apartment = Immoscout::Models::ApartmentBuy.find('ID') # => # apartment.address.street # => 'Orig street name' ``` ##### Create & Update & Destroy ```ruby apartment = Immoscout::Models::ApartmentBuy.find('ID') apartment.address.street = "Changed street" apartment.save # => # house = Immoscout::Models::HouseBuy.find('9473634') house.destroy # => # ``` ##### Publish & Unpublish ```ruby apartment = Immoscout::Models::ApartmentBuy.find('ID') # => # apartment.publish # => # apartment.unpublish # => # ``` ##### Ontop-Placement ```ruby # allowed placement types: showcaseplacement, premiumplacement, topplacement apartment = Immoscout::Models::ApartmentBuy.find('ID') # add premiumplacement apartment.place(:premiumplacement) # => # # remove premiumplacement apartment.unplace(:premiumplacement) # => # ``` #### Contact ##### Overview supported actions * .find(id) * .all * .first * .last * .new(hash) * .from_raw(remote_hash_or_json) * .create(hash) * #save * #destroy ```ruby contact = Immoscout::Models::Contact.new firstname: "John", lastname: "Doe" # => # contact.email = "john.doe@example.com" contact.salutation = "MALE" contact.save # => # ``` #### Publish If you don't like or can't use the `#publish` and `#unpublish` methods defined for realestate models, you can create the `Publish` instance yourself. ##### Overview supported actions * .new(hash) * .from_raw(remote_hash_or_json) * #save * #destroy ```ruby # NOTE: publish_channel#id = 10000 => publish on immobilienscout24 publish = Immoscout::Models::Publish.new real_estate: { id: "ID" }, publish_channel: {id: 10_000} publish.save # published! # => # publish.destroy # unpublished! # => # ``` #### Attachment (Picture & Document) ##### Overview supported actions * .new(hash) * .from_raw(remote_hash_or_json) * #save * #destroy ```ruby picture = Immoscout::Models::Picture.new title: "Badezimmer", title_picture: true, floor_plan: false picture.file = File.open("the/path/to/the/file.jpg") # picture.attachable = Immoscout::Models::HouseBuy.last # you can also pass the ID picture.save # attachment upload! # => # picture.destroy # attachment destroy! # => # ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To run specs against the immobilienscout24 sandbox api, you need to create some keys and tokens. Copy the `spec/test_config.yml.example` to `spec/test_config.yml` and fill in your generated values. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/hausgold/immoscout. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). ## Code of Conduct Everyone interacting in the Immoscout project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hausgold/immoscout/blob/master/CODE_OF_CONDUCT.md).