lib/vindetta/decoder.rb in vindetta-0.19.0 vs lib/vindetta/decoder.rb in vindetta-0.20.0
- old
+ new
@@ -1,46 +1,12 @@
-require "vindetta/decoder/result"
-require "net/http"
-require "json"
-
module Vindetta
class Decoder
- CHECK_DIGIT_INDEX = 8
-
def self.vin(vin)
- Result.new(Api.decode(vin)["Results"])
- end
-
- def self.plant_code(vin)
- vin[10]
- end
-
- def self.check_digit(vin)
- vin[CHECK_DIGIT_INDEX]
- end
-
- def self.wmi(vin)
- vin[0..2]
- end
-
- def self.vds(vin, options = {})
- defaults = { check_digit: true }
- options = defaults.merge(options)
-
- vin[3..CHECK_DIGIT_INDEX].tap do |vds|
- vds.chop! unless options[:check_digit]
- end
- end
-
- def self.year(vin)
- vin(vin).year
- end
-
- def self.vis(vin)
- vin[9..16]
- end
-
- def self.production_number(vin)
- vin[11..16]
+ {
+ :plant_code => vin[PLANT_CODE_INDEX],
+ :wmi => vin[WMI_RANGE],
+ :check_digit => vin[CHECK_DIGIT_INDEX],
+ :production_number => vin[PRODUCTION_NUMBER_RANGE]
+ }
end
end
end