module Egn class Validator # Checks if a given EGN is valid def self.validate(egn) return false unless egn.length == 10 # Extract the correct year and month year, month, day = egn.scan(/.{1,2}/).map(&:to_i) year, month = Util.determine_date(year, month) return false unless Date.valid_date? year, month, day # Calculate the checksum and check if the given one is correct checksum = Util.egn_checksum egn[0,9] checksum == egn[9].to_i end end end