Sha256: 3c58be95e9205451c1e475a739950a7f9a18045874c1dc7efa327cef7ac9562f
Contents?: true
Size: 924 Bytes
Versions: 1
Compression:
Stored size: 924 Bytes
Contents
module Egn class Validator attr_reader :egn # Convenience method def self.validate(egn) Validator.new(egn).validate end def initialize(egn) @egn = egn @year, @month, @day = explode_date(egn) end # Checks if a given EGN is valid def validate return false unless @egn.length == 10 return false unless Date.valid_date?(@year, @month, @day) # Gregorian calendar adoption in 1916 in Bulgaria # 31/03/1916 > +13 days > 14/04/1916 return false if @year == 1916 && @month == 4 && @day <= 13 # Calculate the checksum and check if the given one is correct checksum = Util.egn_checksum(@egn[0, 9]) checksum == @egn[9].to_i end private def explode_date(egn) year, month, day = egn.scan(/.{1,2}/).map(&:to_i) year, month = Util.determine_date(year, month) [year, month, day] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
egn-1.3.4 | lib/egn/validator.rb |