Last active
December 20, 2015 00:59
-
-
Save rafaelp/6046165 to your computer and use it in GitHub Desktop.
DRAFT WORK! Wrapper for BankBillet model on Cobre Gratis API: https://github.com/BielSystems/cobregratis-api/blob/master/resources/bank_billets.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BankBillet | |
include HTTParty | |
include Virtus | |
base_uri 'https://app.cobregratis.com.br' | |
attribute :id, Integer | |
attribute :name, String | |
attribute :amount, Float | |
attribute :expire_at, Date | |
attribute :external_link, String | |
def self.create(attributes = {}) | |
@response = post('/bank_billets.json', { :body => {bank_billet: attributes}, :basic_auth => {:username => ENV['COBREGRATIS_TOKEN'], :password => 'X'} }) | |
return false unless @response.code == 201 | |
new(JSON.parse(@response.body)["bank_billet"]) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rafa,
Você precisa manter sincronizado os atributos que você recebe da API e os atributos do Virtus. Para fazer isso eu uso:
Eu uso o Active Model para fazer as validações e outras coisas como serialização e preparar o form para usar na view.
Esse é um exemplo simples de um modelo usando tudo isso.
Isso responde as suas perguntas? Se tiver alguma outra dúvida é só perguntar.