class Faker::Code

Constants

EAN_CHECK_DIGIT13
EAN_CHECK_DIGIT8
RBI

Reporting body identifier

Public Class Methods

asin() click to toggle source

Retrieves a real Amazon ASIN code list taken from archive.org/details/asin_listing

# File lib/faker/default/code.rb, line 62
def asin
  fetch('code.asin')
end
ean(legacy_base = NOT_GIVEN, base: 13) click to toggle source

By default generates 13 sign ean code in format 1234567890123 You can pass 8 to generate ean8 code

# File lib/faker/default/code.rb, line 25
def ean(legacy_base = NOT_GIVEN, base: 13)
  warn_for_deprecated_arguments do |keywords|
    keywords << :base if legacy_base != NOT_GIVEN
  end

  base == 8 ? generate_base8_ean : generate_base13_ean
end
imei() click to toggle source

Generate GSM modem, device or mobile phone 15 digit IMEI number.

# File lib/faker/default/code.rb, line 56
def imei
  generate_imei
end
isbn(legacy_base = NOT_GIVEN, base: 10) click to toggle source

By default generates 10 sign isbn code in format 123456789-X You can pass 13 to generate new 13 sign code

# File lib/faker/default/code.rb, line 15
def isbn(legacy_base = NOT_GIVEN, base: 10)
  warn_for_deprecated_arguments do |keywords|
    keywords << :base if legacy_base != NOT_GIVEN
  end

  base == 13 ? generate_base13_isbn : generate_base10_isbn
end
npi() click to toggle source

Generates a 10 digit NPI (National Provider Identifier issued to health care providers in the United States)

# File lib/faker/default/code.rb, line 9
def npi
  rand(10**10).to_s.rjust(10, '0')
end
nric(legacy_min_age = NOT_GIVEN, legacy_max_age = NOT_GIVEN, min_age: 18, max_age: 65) click to toggle source

By default generates a Singaporean NRIC ID for someone who is born between the age of 18 and 65.

# File lib/faker/default/code.rb, line 41
def nric(legacy_min_age = NOT_GIVEN, legacy_max_age = NOT_GIVEN, min_age: 18, max_age: 65)
  warn_for_deprecated_arguments do |keywords|
    keywords << :min_age if legacy_min_age != NOT_GIVEN
    keywords << :max_age if legacy_max_age != NOT_GIVEN
  end

  birthyear = Date.birthday(min_age: min_age, max_age: max_age).year
  prefix = birthyear < 2000 ? 'S' : 'T'
  values = birthyear.to_s[-2..-1]
  values << regexify(/\d{5}/)
  check_alpha = generate_nric_check_alphabet(values, prefix)
  "#{prefix}#{values}#{check_alpha}"
end
rut() click to toggle source
# File lib/faker/default/code.rb, line 33
def rut
  value = Number.number(digits: 8).to_s
  vd = rut_verificator_digit(value)
  value << "-#{vd}"
end
sin() click to toggle source

Generates Social Insurance Number issued in Canada en.wikipedia.org/wiki/Social_Insurance_Number

# File lib/faker/default/code.rb, line 68
def sin
  # 1   - province or temporary resident
  # 2-8 - random numbers
  # 9   - checksum

  # 1st digit. 8,0 are not used
  registry = Faker::Base.sample([1, 2, 3, 4, 5, 6, 7, 9]).to_s

  # generate 2nd to 8th
  partial = Array.new(7) { Faker::Config.random.rand(0..9) }.join

  # Generate 9th digit
  check_digit = generate_sin_check_digit(registry + partial + '0').to_s

  registry + partial + check_digit
end

Private Class Methods

generate_base10_isbn() click to toggle source
# File lib/faker/default/code.rb, line 131
def generate_base10_isbn
  values = regexify(/\d{9}/)
  remainder = sum(values) { |value, index| (index + 1) * value.to_i } % 11
  values << "-#{remainder == 10 ? 'X' : remainder}"
end
generate_base13_ean() click to toggle source
# File lib/faker/default/code.rb, line 155
def generate_base13_ean
  values = regexify(/\d{12}/)
  check_digit = 10 - values.split(//).each_with_index.inject(0) { |s, (v, i)| s + v.to_i * EAN_CHECK_DIGIT13[i] } % 10
  values << (check_digit == 10 ? 0 : check_digit).to_s
end
generate_base13_isbn() click to toggle source
# File lib/faker/default/code.rb, line 137
def generate_base13_isbn
  values = regexify(/\d{12}/)
  remainder = sum(values) { |value, index| index.even? ? value.to_i : value.to_i * 3 } % 10
  values << "-#{((10 - remainder) % 10)}"
end
generate_base8_ean() click to toggle source
# File lib/faker/default/code.rb, line 149
def generate_base8_ean
  values = regexify(/\d{7}/)
  check_digit = 10 - values.split(//).each_with_index.inject(0) { |s, (v, i)| s + v.to_i * EAN_CHECK_DIGIT8[i] } % 10
  values << (check_digit == 10 ? 0 : check_digit).to_s
end
generate_imei() click to toggle source
# File lib/faker/default/code.rb, line 90
def generate_imei
  str = Array.new(15, 0)
  sum = 0
  t = 0
  len_offset = 0
  len = 15

  # Fill in the first two values of the string based with the specified prefix.
  # Reporting Body Identifier list: http://en.wikipedia.org/wiki/Reporting_Body_Identifier
  arr = sample(RBI)
  str[0] = arr[0].to_i
  str[1] = arr[1].to_i
  pos = 2

  # Fill all the remaining numbers except for the last one with random values.
  while pos < (len - 1)
    str[pos] = rand(0..9)
    pos += 1
  end

  # Calculate the Luhn checksum of the values thus far
  len_offset = (len + 1) % 2
  (0..(len - 1)).each do |position|
    if (position + len_offset).odd?
      t = str[position] * 2

      t -= 9 if t > 9

      sum += t
    else
      sum += str[position]
    end
  end

  # Choose the last digit so that it causes the entire string to pass the checksum.
  str[len - 1] = (10 - (sum % 10)) % 10

  # Output the IMEI value.
  str.join('')
end
generate_nric_check_alphabet(values, prefix) click to toggle source
# File lib/faker/default/code.rb, line 169
def generate_nric_check_alphabet(values, prefix)
  weight = %w[2 7 6 5 4 3 2]
  total = values.split(//).zip(weight).collect { |a, b| a.to_i * b.to_i }.inject(:+)
  total += 4 if prefix == 'T'
  %w[A B C D E F G H I Z J][10 - total % 11]
end
generate_sin_check_digit(digits) click to toggle source
# File lib/faker/default/code.rb, line 176
def generate_sin_check_digit(digits)
  # Fast Luhn checksum code from luhn.js:
  # https://gist.github.com/ShirtlessKirk/2134376

  len = 9
  mul = 0

  luhn_arr = [
    [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
    [0, 2, 4, 6, 8, 1, 3, 5, 7, 9]
  ]
  sum = 0

  while len.positive?
    len -= 1
    num = digits[len].to_i
    sum += luhn_arr[mul][num]
    mul ^= 1
  end

  checksum = sum % 10
  checksum.zero? ? checksum : (10 - checksum)
end
rut_verificator_digit(rut) click to toggle source
# File lib/faker/default/code.rb, line 164
def rut_verificator_digit(rut)
  total = rut.to_s.rjust(8, '0').split(//).zip(%w[3 2 7 6 5 4 3 2]).collect { |a, b| a.to_i * b.to_i }.inject(:+)
  (11 - total % 11).to_s.gsub(/10/, 'k').gsub(/11/, '0')
end
sum(values) { |value, index| ... } click to toggle source
# File lib/faker/default/code.rb, line 143
def sum(values)
  values.split(//).each_with_index.inject(0) do |sum, (value, index)|
    sum + yield(value, index)
  end
end