require "currency_converter/currencies" require "currency_converter/version" require "net/http" module CurrencyConverter class << self # Returns the Symbol of 'from' currency attr_reader :from_currency # Returns the Symbol of 'to' currency attr_reader :to_currency # Receive the amount of you desire currency. # # @param [String, String, Numeric] other currency to exchange to. # # @return [amount] # # @example # CurrencyConverter.exchange("USD", "EUR", 100) # CurrencyConverter.exchange("USD", "INR", 100) def exchange(from, to, fixnum) @from_currency = from.upcase.to_sym @to_currency = to.upcase.to_sym raise StandardError, "Currency #{from_currency} or #{to_currency} is invalid" unless valid_currency? ex_rate = exchange_rate raise StandardError, "Can't find any exchange rate" if ex_rate.nil? value = "%.2f" % (ex_rate.to_f * fixnum).to_s value.to_f end private # Returns the Float value of rate or nil def exchange_rate http = Net::HTTP.new("www.google.com", 80) url = "/finance/converter?a=1&from=#{from_currency.to_s.upcase}&to=#{to_currency.to_s.upcase}" response = http.get(url) result = response.body regexp = Regexp.new("(\\d+\\.{0,1}\\d*)\\s+#{to_currency}") regexp.match result return $1 rescue Timeout::Error raise StandardError, "Please check your internet connection" end # Check if currency is valid # # Returns true if currency is valid def valid_currency? CurrencyConverter::CURRENCIES.has_key?(from_currency) && CurrencyConverter::CURRENCIES.has_key?(to_currency) end end end