class Faker::Company

def abn_checksum(abn)

def abn_checksum(abn)
  abn_weights = [10, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
  sum = 0
  abn_weights.each_with_index do |weight, i|
    sum += weight * abn[i].to_i
  end
  sum
end

def australian_business_number

Returns:
  • (String) -
def australian_business_number
  base = format('%09d', rand(10**9))
  abn = "00#{base}"
  (99 - (abn_checksum(abn) % 89)).to_s + base
end

def brazilian_company_number(formatted: false)

Returns:
  • (String) -
def brazilian_company_number(formatted: false)
  digits = Array.new(8) { Faker::Number.digit.to_i } + [0, 0, 0, Faker::Number.non_zero_digit.to_i]
  factors = [5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2, 6].cycle
  2.times do
    checksum = digits.inject(0) { |acc, digit| acc + digit * factors.next } % 11
    digits << (checksum < 2 ? 0 : 11 - checksum)
  end
  number = digits.join
  formatted ? format('%s.%s.%s/%s-%s', *number.scan(/(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})/).flatten) : number
end

def bs

Returns:
  • (String) -
def bs
  translate('faker.company.bs').collect { |list| sample(list) }.join(' ')
end

def buzzword

Returns:
  • (String) -
def buzzword
  sample(translate('faker.company.buzzwords').flatten)
end

def catch_phrase

Returns:
  • (String) -
def catch_phrase
  translate('faker.company.buzzwords').collect { |list| sample(list) }.join(' ')
end

def collect_regon_sum(array)

def collect_regon_sum(array)
  weights = if array.size == 9
              [8, 9, 2, 3, 4, 5, 6, 7]
            else
              [2, 4, 8, 5, 0, 9, 7, 3, 6, 1, 2, 4, 8]
            end
  sum = weight_sum(array, weights) % 11
  sum == 10 ? 0 : sum
end

def czech_organisation_number

Returns:
  • (String) -
def czech_organisation_number
  sum = 0
  base = []
  [8, 7, 6, 5, 4, 3, 2].each do |weight|
    base << sample((0..9).to_a)
    sum += (weight * base.last)
  end
  base << (11 - (sum % 11)) % 10
  base.join
end

def department

Returns:
  • (String) -
def department
  fetch('company.department')
end

def duns_number

Returns:
  • (String) -
def duns_number
  format('%09d', rand(10**9)).gsub(/(\d{2})(\d{3})(\d{4})/, '\\1-\\2-\\3')
end

def ein

Returns:
  • (String) -
def ein
  format('%09d', rand(10**9)).gsub(/(\d{2})(\d{7})/, '\\1-\\2')
end

def french_siren_number

Returns:
  • (String) -
def french_siren_number
  base = (1..8).map { rand(10) }.join
  base + luhn_algorithm(base).to_s
end

def french_siret_number

Returns:
  • (String) -
def french_siret_number
  location = rand(100).to_s.rjust(4, '0')
  org_no = french_siren_number + location
  org_no + luhn_algorithm(org_no).to_s
end

def industry

Returns:
  • (String) -
def industry
  fetch('company.industry')
end

def inn_checksum(factor, number)

def inn_checksum(factor, number)
  (
    factor.map.with_index.reduce(0) do |v, i|
      v + i[0] * number[i[1]].to_i
    end % 11 % 10
  ).to_s
end

def inn_number(region, type)

Returns:
  • (String) -

Parameters:
  • type (Symbol) -- Legeal or not, defaults to :legal
def inn_number(region, type)
  n10 = [2, 4, 10, 3, 5, 9, 4, 6, 8]
  n11 = [7, 2, 4, 10, 3, 5, 9, 4, 6, 8]
  n12 = [3, 7, 2, 4, 10, 3, 5, 9, 4, 6, 8]
  region = format('%.2d', rand(0o1..92)) if region.nil?
  checksum = if type == :legal
               number = region.to_s + rand(1_000_000..9_999_999).to_s
               inn_checksum(n10, number)
             else
               number = region.to_s + rand(10_000_000..99_999_999).to_s
               inn_checksum(n11, number) + inn_checksum(n12, number + inn_checksum(n11, number))
             end
  number + checksum
end

def logo

Returns:
  • (String) -
def logo
  rand_num = rand(1..13)
  "https://pigment.github.io/fake-logos/logos/medium/color/#{rand_num}.png"
end

def luhn_algorithm(number)

def luhn_algorithm(number)
  multiplications = []
  number.to_s.reverse.chars.each_with_index do |digit, i|
    multiplications << if i.even?
                         digit.to_i * 2
                       else
                         digit.to_i
                       end
  end
  sum = 0
  multiplications.each do |num|
    num.to_s.each_byte do |character|
      sum += character.chr.to_i
    end
  end
  if (sum % 10).zero?
    0
  else
    (sum / 10 + 1) * 10 - sum
  end
end

def mod11(number)

Mod11 functionality from https://github.com/badmanski/mod11/blob/master/lib/mod11.rb
def mod11(number)
  weight = [2, 3, 4, 5, 6, 7,
            2, 3, 4, 5, 6, 7,
            2, 3, 4, 5, 6, 7]
  sum = 0
  number.to_s.reverse.chars.each_with_index do |char, i|
    sum += char.to_i * weight[i]
  end
  remainder = sum % 11
  case remainder
  when 0 then remainder
  when 1 then nil
  else 11 - remainder
  end
end

def name

Returns:
  • (String) -
def name
  parse('company.name')
end

def norwegian_organisation_number

Returns:
  • (String) -
def norwegian_organisation_number
  # Valid leading digit: 8, 9
  mod11_check = nil
  while mod11_check.nil?
    base = [sample([8, 9]), format('%07d', rand(10**7))].join
    mod11_check = mod11(base)
  end
  base + mod11_check.to_s
end

def polish_register_of_national_economy(length: 9)

Returns:
  • (String) -
def polish_register_of_national_economy(length: 9)
  raise ArgumentError, 'Length should be 9 or 14' unless [9, 14].include? length
  random_digits = []
  loop do
    random_digits = Array.new(length) { rand(10) }
    break if collect_regon_sum(random_digits) == random_digits.last
  end
  random_digits.join
end

def polish_taxpayer_identification_number

Returns:
  • (String) -
def polish_taxpayer_identification_number
  result = []
  weights = [6, 5, 7, 2, 3, 4, 5, 6, 7]
  loop do
    result = Array.new(3) { rand(1..9) } + Array.new(7) { rand(10) }
    break if (weight_sum(result, weights) % 11) == result[9]
  end
  result.join
end

def profession

Returns:
  • (String) -
def profession
  fetch('company.profession')
end

def russian_tax_number(region: nil, type: :legal)

Returns:
  • (String) -

Parameters:
  • type (Symbol) -- Legeal or not, defaults to :legal
  • region (String) -- Any region string
def russian_tax_number(region: nil, type: :legal)
  inn_number(region, type)
end

def sic_code

Returns:
  • (String) -
def sic_code
  fetch('company.sic_code')
end

def south_african_close_corporation_registration_number

Returns:
  • (String) -
def south_african_close_corporation_registration_number
  regexify(%r{(CK\d{2}|\d{4})/\d{4,10}/23})
end

def south_african_listed_company_registration_number

Returns:
  • (String) -
def south_african_listed_company_registration_number
  regexify(%r{\d{4}/\d{4,10}/06})
end

def south_african_pty_ltd_registration_number

Returns:
  • (String) -
def south_african_pty_ltd_registration_number
  regexify(%r{\d{4}/\d{4,10}/07})
end

def south_african_trust_registration_number

Returns:
  • (String) -
def south_african_trust_registration_number
  regexify(%r{IT\d{2,4}/\d{2,10}})
end

def spanish_b_algorithm(value)

def spanish_b_algorithm(value)
  result = value.to_i * 2
  return result if result < 10
  result.to_s[0].to_i + result.to_s[1].to_i
end

def spanish_cif_control_digit(organization_type, code)

def spanish_cif_control_digit(organization_type, code)
  letters = %w[J A B C D E F G H I]
  control = code.chars.each_with_index.inject(0) do |sum, (value, index)|
    if (index + 1).even?
      sum + value.to_i
    else
      sum + spanish_b_algorithm(value.to_i)
    end
  end
  control = control.to_s[-1].to_i
  control = control.zero? ? control : 10 - control
  %w[A B C D E F G H J U V].include?(organization_type) ? control : letters[control]
end

def spanish_organisation_number(organization_type: nil)

Returns:
  • (String) -
def spanish_organisation_number(organization_type: nil)
  # Valid leading character: A, B, C, D, E, F, G, H, J, N, P, Q, R, S, U, V, W
  # format: 1 digit letter (organization type) + 7 digit numbers + 1 digit control (letter or number based on
  # organization type)
  letters = %w[A B C D E F G H J N P Q R S U V W]
  organization_type = sample(letters) unless letters.include?(organization_type)
  code = format('%07d', rand(10**7))
  control = spanish_cif_control_digit(organization_type, code)
  [organization_type, code, control].join
end

def suffix

Returns:
  • (String) -
def suffix
  fetch('company.suffix')
end

def swedish_organisation_number

Returns:
  • (String) -
def swedish_organisation_number
  # Valid leading digit: 1, 2, 3, 5, 6, 7, 8, 9
  # Valid third digit: >= 2
  # Last digit is a control digit
  base = [sample([1, 2, 3, 5, 6, 7, 8, 9]), sample((0..9).to_a), sample((2..9).to_a), format('%06d', rand(10**6))].join
  base + luhn_algorithm(base).to_s
end

def type

Returns:
  • (String) -
def type
  fetch('company.type')
end

def weight_sum(array, weights)

def weight_sum(array, weights)
  sum = 0
  (0..weights.size - 1).each do |index|
    sum += (array[index] * weights[index])
  end
  sum
end