module FFaker::PhoneNumberRU

def build_phone_number(country_code, prefix)


Build phone number by country_code and prefix
def build_phone_number(country_code, prefix)
  "#{country_code} #{prefix} #{FFaker.numerify('###-##-##')}"
end

def country_code


8
Internal country code
def country_code
  COUNTRY_PREFIX
end

def home_work_phone_number


8 836 331 23 12
8 011 232 22 22
Generate home or work phone number with internal country code
def home_work_phone_number
  build_phone_number(country_code, home_work_phone_prefix)
end

def home_work_phone_prefix


301
081
Home or work phone prefix
def home_work_phone_prefix
  fetch_sample(HOME_PHONE_PREFIXES)
end

def international_country_code


+7
International country code
def international_country_code
  INTERNATIONAL_COUNTRY_PREFIX
end

def international_home_work_phone_number


+7 851 921 35 92
+7 842 933 24 99
Generate home or work phone number with international country code
def international_home_work_phone_number
  build_phone_number(international_country_code, home_work_phone_prefix)
end

def international_mobile_phone_number


+7 978 921 35 92
+7 929 933 24 99
Generate mobile phone number with international country code
def international_mobile_phone_number
  build_phone_number(international_country_code, mobile_phone_prefix)
end

def international_phone_number


+7 851 921 35 92
+7 929 933 24 99
Generate general phone number with international country code
def international_phone_number
  case rand(0..1)
  when 0 then international_mobile_phone_number
  when 1 then international_home_work_phone_number
  end
end

def international_toll_free_number


+7 800 153 55 22
+7 800 413 01 33
Generate toll free phone number with international country code
def international_toll_free_number
  build_phone_number(international_country_code, TOLL_FREE_PREFIX)
end

def mobile_phone_number


8 999 331 23 12
8 949 232 22 22
Generate mobile phone number with internal country code
def mobile_phone_number
  build_phone_number(country_code, mobile_phone_prefix)
end

def mobile_phone_prefix


978
929
Mobile phone prefix
def mobile_phone_prefix
  fetch_sample(MOBILE_PHONE_PREFIXES)
end

def phone_number


8 843 944 33 33
8 999 044 31 33
Generate general phone number with internal country code
def phone_number
  case rand(0..1)
  when 0 then mobile_phone_number
  when 1 then home_work_phone_number
  end
end

def toll_free_number


8 800 153 55 22
8 800 413 01 33
Generate toll free phone number with internal country code
def toll_free_number
  build_phone_number(country_code, TOLL_FREE_PREFIX)
end