Skip to content

Instantly share code, notes, and snippets.

@lucashungaro
Created June 27, 2012 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucashungaro/3001505 to your computer and use it in GitHub Desktop.
Save lucashungaro/3001505 to your computer and use it in GitHub Desktop.
DIP snippet 2
class Game < ActiveRecord::Base
belongs_to :category
validates_presence_of :title, :category_id, :description,
:price, :platform, :year
end
 
class GamePriceService
attr_accessor :game, :json_parser
 
# we could use a config file
BASE_URL = "http://thegamedatabase.com/api/game"
API_KEY = "ek2o1je"
 
def initialize(game, json_parser = JsonParserLib)
self.game = game
self.json_parser = json_parser
end
 
def get_price
data = open("#{BASE_URL}/#{game.name}/price?api_key=#{API_KEY}")
json_parser.parse(data)
end
end
 
class GamePrinter
attr_accessor :game, :game_webservice
 
def initialize(game, game_webservice = GamePriceService)
self.game = game
self.game_webservice = game_webservice
end
 
def print
price_service = game_webservice.new(game)
<<-EOF
#{game.name}, #{game.platform}, #{game.year}

current value is #{price_service.get_price[:value]}
EOF
end
end
 
# Usage example:
game = Game.new(some_game_data)
webservice = GamePriceService.new(game)
game.price = webservice.get_price
 
GamePrinter.new(game).print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment