Class: Faker::Internet

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/internet.rb

Constant Summary

Constants inherited from Base

Base::Letters, Base::Numbers, Base::ULetters

Class Method Summary collapse

Methods inherited from Base

bothify, fetch, flexible, letterify, method_missing, numerify, parse, rand_in_range, regexify, translate

Class Method Details

.device_tokenObject



147
148
149
# File 'lib/faker/internet.rb', line 147

def device_token
  rand(16 ** 64).to_s(16).rjust(64, '0').chars.to_a.shuffle.join
end

.domain_nameObject



74
75
76
# File 'lib/faker/internet.rb', line 74

def domain_name
  I18n.with_locale(:en) { [Char.prepare(domain_word), domain_suffix].join('.') }
end

.domain_suffixObject



89
90
91
# File 'lib/faker/internet.rb', line 89

def domain_suffix
  fetch('internet.domain_suffix')
end

.domain_wordObject



82
83
84
85
86
87
# File 'lib/faker/internet.rb', line 82

def domain_word
  if %w(uk).include? Config.locale
    return Char.prepare Company.name.split(' ')[1]
  end
  Char.prepare Company.name.split(' ').first
end

.email(name = nil) ⇒ Object



5
6
7
# File 'lib/faker/internet.rb', line 5

def email(name = nil)
  [user_name(name), domain_name].join('@')
end

.fix_umlauts(string) ⇒ Object



78
79
80
# File 'lib/faker/internet.rb', line 78

def fix_umlauts(string)
  Char.fix_umlauts string
end

.free_email(name = nil) ⇒ Object



9
10
11
# File 'lib/faker/internet.rb', line 9

def free_email(name = nil)
  [user_name(name), fetch('internet.free_email')].join('@')
end

.ip_v4_addressObject



99
100
101
102
103
104
105
# File 'lib/faker/internet.rb', line 99

def ip_v4_address
  ary = (2..254).to_a
  [ary.sample,
  ary.sample,
  ary.sample,
  ary.sample].join('.')
end

.ip_v4_cidrObject



124
125
126
# File 'lib/faker/internet.rb', line 124

def ip_v4_cidr
  "#{ip_v4_address}/#{[1..32].sample}"
end

.ip_v6_addressObject



128
129
130
131
132
# File 'lib/faker/internet.rb', line 128

def ip_v6_address
  @@ip_v6_space ||= (0..65535).to_a
  container = (1..8).map{ |_| @@ip_v6_space.sample }
  container.map{ |n| n.to_s(16) }.join(':')
end

.ip_v6_cidrObject



134
135
136
# File 'lib/faker/internet.rb', line 134

def ip_v6_cidr
  "#{ip_v6_address}/#{[1..128].sample}"
end

.mac_address(prefix = '') ⇒ Object



93
94
95
96
97
# File 'lib/faker/internet.rb', line 93

def mac_address(prefix='')
  prefix_digits = prefix.split(':').map{ |d| d.to_i(16) }
  address_digits = (6 - prefix_digits.size).times.map{ rand(256) }
  (prefix_digits + address_digits).map{ |d| '%02x' % d }.join(':')
end

.password(min_length = 8, max_length = 16, mix_case = true, special_chars = false) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/faker/internet.rb', line 49

def password(min_length = 8, max_length = 16, mix_case = true, special_chars = false)
  temp = Lorem.characters(min_length)
  diff_length = max_length - min_length
  if diff_length > 0
    diff_rand = rand(diff_length + 1)
    temp += Lorem.characters(diff_rand)
  end
  temp = temp[0..min_length] if min_length > 0

  if mix_case
    temp.chars.each_with_index do |char, index|
      temp[index] = char.upcase if index % 2 == 0
    end
  end

  if special_chars
    chars = %w(! @ # $ % ^ & *)
    Random.rand(min_length).times do |i|
      temp[i] = chars[Random.rand(chars.length)]
    end
  end

  return temp
end

.public_ip_v4_addressObject



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/faker/internet.rb', line 107

def public_ip_v4_address
  private_nets = [
    /^10\./,
    /^127\./,
    /^169\.254\./,
    /^172\.(16|17|18|19|2\d|30|31)\./,
    /^192\.168\./
  ]

  is_private = lambda {|addr| private_nets.any?{|net| net =~ addr}}
  addr = nil
  begin
    addr = ip_v4_address
  end while is_private[addr]
  addr
end

.safe_email(name = nil) ⇒ Object



13
14
15
# File 'lib/faker/internet.rb', line 13

def safe_email(name = nil)
  [user_name(name), 'example.'+ %w[org com net].shuffle.first].join('@')
end

.slug(words = nil, glue = nil) ⇒ Object



142
143
144
145
# File 'lib/faker/internet.rb', line 142

def slug(words = nil, glue = nil)
  glue ||= %w[- _ .].sample
  (words || Faker::Lorem::words(2).join(' ')).gsub(' ', glue).downcase
end

.url(host = domain_name, path = "/#{user_name}") ⇒ Object



138
139
140
# File 'lib/faker/internet.rb', line 138

def url(host = domain_name, path = "/#{user_name}")
  "http://#{host}#{path}"
end

.user_name(specifier = nil, separators = %w(. _)) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/faker/internet.rb', line 17

def user_name(specifier = nil, separators = %w(. _))
  I18n.with_locale(:en) do
    if specifier.kind_of? String
      return specifier.scan(/\w+/).shuffle.join(separators.sample).downcase
    elsif specifier.kind_of? Integer
      tries = 0 # Don't try forever in case we get something like 1_000_000.
      begin
        result = user_name nil, separators
        tries += 1
      end while result.length < specifier and tries < 7
      until result.length >= specifier
        result = result * 2
      end
      return result
    elsif specifier.kind_of? Range
      tries = 0
      begin
        result = user_name specifier.min, separators
        tries += 1
      end while not specifier.include? result.length and tries < 7
      return result[0...specifier.max]
    end

    [
      Char.prepare(Name.first_name),
      [Name.first_name, Name.last_name].map{ |name|
        Char.prepare name
      }.join(separators.sample)
    ].sample
  end
end