Class: Faker::Internet
- Inherits:
-
Base
- Object
- Base
- Faker::Internet
show all
- Defined in:
- lib/faker/default/internet.rb,
lib/faker/default/internet_http.rb
Defined Under Namespace
Classes: HTTP
Constant Summary
Constants inherited
from Base
Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters
Class Method Summary
collapse
-
.base64(length: 16, padding: false, urlsafe: true) ⇒ String
Produces a random string of alphabetic characters, (no digits).
-
.device_token ⇒ Object
-
.domain_name(legacy_subdomain = NOT_GIVEN, subdomain: false, domain: nil) ⇒ Object
-
.domain_suffix ⇒ Object
-
.domain_word ⇒ Object
-
.email(legacy_name = NOT_GIVEN, legacy_separators = NOT_GIVEN, name: nil, separators: nil, domain: nil) ⇒ Object
-
.fix_umlauts(legacy_string = NOT_GIVEN, string: '') ⇒ Object
-
.free_email(legacy_name = NOT_GIVEN, name: nil) ⇒ Object
-
.ip_v4_address ⇒ Object
-
.ip_v4_cidr ⇒ Object
-
.ip_v6_address ⇒ Object
-
.ip_v6_cidr ⇒ Object
-
.mac_address(legacy_prefix = NOT_GIVEN, prefix: '') ⇒ Object
-
.password(legacy_min_length = NOT_GIVEN, legacy_max_length = NOT_GIVEN, legacy_mix_case = NOT_GIVEN, legacy_special_characters = NOT_GIVEN, min_length: 8, max_length: 16, mix_case: true, special_characters: false) ⇒ String
Produces a randomized string of characters suitable for passwords.
-
.private_ip_v4_address ⇒ Object
-
.private_net_checker ⇒ Object
-
.private_nets_regex ⇒ Object
-
.public_ip_v4_address ⇒ Object
-
.reserved_net_checker ⇒ Object
-
.reserved_nets_regex ⇒ Object
-
.safe_email(legacy_name = NOT_GIVEN, name: nil) ⇒ Object
-
.slug(legacy_words = NOT_GIVEN, legacy_glue = NOT_GIVEN, words: nil, glue: nil) ⇒ Object
-
.url(legacy_host = NOT_GIVEN, legacy_path = NOT_GIVEN, legacy_scheme = NOT_GIVEN, host: domain_name, path: "/#{username}", scheme: 'http') ⇒ Object
rubocop:disable Metrics/ParameterLists.
-
.user_agent(legacy_vendor = NOT_GIVEN, vendor: nil) ⇒ Object
-
.username(legacy_specifier = NOT_GIVEN, legacy_separators = NOT_GIVEN, specifier: nil, separators: %w[. _]) ⇒ Object
(also: user_name)
-
.uuid ⇒ Object
Methods inherited from Base
bothify, disable_enforce_available_locales, fetch, fetch_all, flexible, letterify, method_missing, numerify, parse, rand, rand_in_range, regexify, resolve, respond_to_missing?, sample, shuffle, translate, unique, with_locale
Class Method Details
.base64(length: 16, padding: false, urlsafe: true) ⇒ String
Produces a random string of alphabetic characters, (no digits)
324
325
326
327
328
329
330
331
332
333
334
|
# File 'lib/faker/default/internet.rb', line 324
def base64(length: 16, padding: false, urlsafe: true)
char_range = [
Array('0'..'9'),
Array('A'..'Z'),
Array('a'..'z'),
urlsafe ? %w[- _] : %w[+ /]
].flatten
s = Array.new(length) { sample(char_range) }.join
s += '=' if padding
s
end
|
.device_token ⇒ Object
285
286
287
|
# File 'lib/faker/default/internet.rb', line 285
def device_token
shuffle(rand(16**64).to_s(16).rjust(64, '0').chars.to_a).join
end
|
.domain_name(legacy_subdomain = NOT_GIVEN, subdomain: false, domain: nil) ⇒ Object
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
# File 'lib/faker/default/internet.rb', line 147
def domain_name(legacy_subdomain = NOT_GIVEN, subdomain: false, domain: nil)
warn_for_deprecated_arguments do |keywords|
keywords << :subdomain if legacy_subdomain != NOT_GIVEN
end
with_locale(:en) do
if domain
domain
.split('.')
.map { |domain_part| Char.prepare(domain_part) }
.tap do |domain_elements|
domain_elements << domain_suffix if domain_elements.length < 2
domain_elements.unshift(Char.prepare(domain_word)) if subdomain && domain_elements.length < 3
end.join('.')
else
[domain_word, domain_suffix].tap do |domain_elements|
domain_elements.unshift(Char.prepare(domain_word)) if subdomain
end.join('.')
end
end
end
|
.domain_suffix ⇒ Object
181
182
183
|
# File 'lib/faker/default/internet.rb', line 181
def domain_suffix
fetch('internet.domain_suffix')
end
|
.domain_word ⇒ Object
177
178
179
|
# File 'lib/faker/default/internet.rb', line 177
def domain_word
with_locale(:en) { Char.prepare(Company.name.split(' ').first) }
end
|
.email(legacy_name = NOT_GIVEN, legacy_separators = NOT_GIVEN, name: nil, separators: nil, domain: nil) ⇒ Object
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/faker/default/internet.rb', line 6
def email(legacy_name = NOT_GIVEN, legacy_separators = NOT_GIVEN, name: nil, separators: nil, domain: nil)
warn_for_deprecated_arguments do |keywords|
keywords << :name if legacy_name != NOT_GIVEN
keywords << :separators if legacy_separators != NOT_GIVEN
end
local_part = if separators
username(specifier: name, separators: separators)
else
username(specifier: name)
end
sanitized_local_part = sanitize_email_local_part(local_part)
construct_email(sanitized_local_part, domain_name(domain: domain))
end
|
.fix_umlauts(legacy_string = NOT_GIVEN, string: '') ⇒ Object
169
170
171
172
173
174
175
|
# File 'lib/faker/default/internet.rb', line 169
def fix_umlauts(legacy_string = NOT_GIVEN, string: '')
warn_for_deprecated_arguments do |keywords|
keywords << :string if legacy_string != NOT_GIVEN
end
Char.fix_umlauts(string)
end
|
.free_email(legacy_name = NOT_GIVEN, name: nil) ⇒ Object
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/faker/default/internet.rb', line 22
def free_email(legacy_name = NOT_GIVEN, name: nil)
warn_for_deprecated_arguments do |keywords|
keywords << :name if legacy_name != NOT_GIVEN
end
construct_email(
sanitize_email_local_part(username(specifier: name)),
fetch('internet.free_email')
)
end
|
.ip_v4_address ⇒ Object
195
196
197
198
|
# File 'lib/faker/default/internet.rb', line 195
def ip_v4_address
[rand_in_range(0, 255), rand_in_range(0, 255),
rand_in_range(0, 255), rand_in_range(0, 255)].join('.')
end
|
.ip_v4_cidr ⇒ Object
251
252
253
|
# File 'lib/faker/default/internet.rb', line 251
def ip_v4_cidr
"#{ip_v4_address}/#{rand(1..31)}"
end
|
.ip_v6_address ⇒ Object
255
256
257
|
# File 'lib/faker/default/internet.rb', line 255
def ip_v6_address
(1..8).map { rand(65_536).to_s(16) }.join(':')
end
|
.ip_v6_cidr ⇒ Object
259
260
261
|
# File 'lib/faker/default/internet.rb', line 259
def ip_v6_cidr
"#{ip_v6_address}/#{rand(1..127)}"
end
|
.mac_address(legacy_prefix = NOT_GIVEN, prefix: '') ⇒ Object
185
186
187
188
189
190
191
192
193
|
# File 'lib/faker/default/internet.rb', line 185
def mac_address(legacy_prefix = NOT_GIVEN, prefix: '')
warn_for_deprecated_arguments do |keywords|
keywords << :prefix if legacy_prefix != NOT_GIVEN
end
prefix_digits = prefix.split(':').map { |d| d.to_i(16) }
address_digits = Array.new((6 - prefix_digits.size)) { rand(256) }
(prefix_digits + address_digits).map { |d| format('%02x', d) }.join(':')
end
|
.password(legacy_min_length = NOT_GIVEN, legacy_max_length = NOT_GIVEN, legacy_mix_case = NOT_GIVEN, legacy_special_characters = NOT_GIVEN, min_length: 8, max_length: 16, mix_case: true, special_characters: false) ⇒ String
Produces a randomized string of characters suitable for passwords
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# File 'lib/faker/default/internet.rb', line 109
def password(legacy_min_length = NOT_GIVEN, legacy_max_length = NOT_GIVEN, legacy_mix_case = NOT_GIVEN, legacy_special_characters = NOT_GIVEN, min_length: 8, max_length: 16, mix_case: true, special_characters: false)
warn_for_deprecated_arguments do |keywords|
keywords << :min_length if legacy_min_length != NOT_GIVEN
keywords << :max_length if legacy_max_length != NOT_GIVEN
keywords << :mix_case if legacy_mix_case != NOT_GIVEN
keywords << :special_characters if legacy_special_characters != NOT_GIVEN
end
min_alpha = mix_case ? 2 : 0
temp = Lorem.characters(number: min_length, min_alpha: min_alpha)
diff_length = max_length - min_length
if diff_length.positive?
diff_rand = rand(diff_length + 1)
temp += Lorem.characters(number: diff_rand)
end
if mix_case
alpha_count = 0
temp.chars.each_with_index do |char, index|
if char =~ /[[:alpha:]]/
temp[index] = char.upcase if alpha_count.even?
alpha_count += 1
end
end
end
if special_characters
chars = %w[! @ # $ % ^ & *]
rand(1..min_length).times do |i|
temp[i] = chars[rand(chars.length)]
end
end
temp
end
|
.private_ip_v4_address ⇒ Object
200
201
202
203
204
205
206
207
|
# File 'lib/faker/default/internet.rb', line 200
def private_ip_v4_address
addr = nil
loop do
addr = ip_v4_address
break if private_net_checker[addr]
end
addr
end
|
.private_net_checker ⇒ Object
231
232
233
|
# File 'lib/faker/default/internet.rb', line 231
def private_net_checker
->(addr) { private_nets_regex.any? { |net| net =~ addr } }
end
|
.private_nets_regex ⇒ Object
218
219
220
221
222
223
224
225
226
227
228
229
|
# File 'lib/faker/default/internet.rb', line 218
def private_nets_regex
[
/^10\./, /^100\.(6[4-9]|[7-9]\d|1[0-1]\d|12[0-7])\./, /^127\./, /^169\.254\./, /^172\.(1[6-9]|2\d|3[0-1])\./, /^192\.0\.0\./, /^192\.168\./, /^198\.(1[8-9])\./ ]
end
|
.public_ip_v4_address ⇒ Object
209
210
211
212
213
214
215
216
|
# File 'lib/faker/default/internet.rb', line 209
def public_ip_v4_address
addr = nil
loop do
addr = ip_v4_address
break unless reserved_net_checker[addr]
end
addr
end
|
.reserved_net_checker ⇒ Object
247
248
249
|
# File 'lib/faker/default/internet.rb', line 247
def reserved_net_checker
->(addr) { (private_nets_regex + reserved_nets_regex).any? { |net| net =~ addr } }
end
|
.reserved_nets_regex ⇒ Object
235
236
237
238
239
240
241
242
243
244
245
|
# File 'lib/faker/default/internet.rb', line 235
def reserved_nets_regex
[
/^0\./, /^192\.0\.2\./, /^192\.88\.99\./, /^198\.51\.100\./, /^203\.0\.113\./, /^(22[4-9]|23\d)\./, /^(24\d|25[0-5])\./ ]
end
|
.safe_email(legacy_name = NOT_GIVEN, name: nil) ⇒ Object
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/faker/default/internet.rb', line 33
def safe_email(legacy_name = NOT_GIVEN, name: nil)
warn_for_deprecated_arguments do |keywords|
keywords << :name if legacy_name != NOT_GIVEN
end
construct_email(
sanitize_email_local_part(username(specifier: name)),
'example.' + sample(%w[org com net])
)
end
|
.slug(legacy_words = NOT_GIVEN, legacy_glue = NOT_GIVEN, words: nil, glue: nil) ⇒ Object
275
276
277
278
279
280
281
282
283
|
# File 'lib/faker/default/internet.rb', line 275
def slug(legacy_words = NOT_GIVEN, legacy_glue = NOT_GIVEN, words: nil, glue: nil)
warn_for_deprecated_arguments do |keywords|
keywords << :words if legacy_words != NOT_GIVEN
keywords << :glue if legacy_glue != NOT_GIVEN
end
glue ||= sample(%w[- _])
(words || Faker::Lorem.words(number: 2).join(' ')).delete(',.').gsub(' ', glue).downcase
end
|
.url(legacy_host = NOT_GIVEN, legacy_path = NOT_GIVEN, legacy_scheme = NOT_GIVEN, host: domain_name, path: "/#{username}", scheme: 'http') ⇒ Object
rubocop:disable Metrics/ParameterLists
264
265
266
267
268
269
270
271
272
273
|
# File 'lib/faker/default/internet.rb', line 264
def url(legacy_host = NOT_GIVEN, legacy_path = NOT_GIVEN, legacy_scheme = NOT_GIVEN, host: domain_name, path: "/#{username}", scheme: 'http')
warn_for_deprecated_arguments do |keywords|
keywords << :host if legacy_host != NOT_GIVEN
keywords << :path if legacy_path != NOT_GIVEN
keywords << :scheme if legacy_scheme != NOT_GIVEN
end
"#{scheme}://#{host}#{path}"
end
|
.user_agent(legacy_vendor = NOT_GIVEN, vendor: nil) ⇒ Object
289
290
291
292
293
294
295
296
297
|
# File 'lib/faker/default/internet.rb', line 289
def user_agent(legacy_vendor = NOT_GIVEN, vendor: nil)
warn_for_deprecated_arguments do |keywords|
keywords << :vendor if legacy_vendor != NOT_GIVEN
end
agent_hash = translate('faker.internet.user_agent')
agents = vendor.respond_to?(:to_sym) && agent_hash[vendor.to_sym] || agent_hash[sample(agent_hash.keys)]
sample(agents)
end
|
.username(legacy_specifier = NOT_GIVEN, legacy_separators = NOT_GIVEN, specifier: nil, separators: %w[. _]) ⇒ Object
Also known as:
user_name
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# File 'lib/faker/default/internet.rb', line 44
def username(legacy_specifier = NOT_GIVEN, legacy_separators = NOT_GIVEN, specifier: nil, separators: %w[. _])
warn_for_deprecated_arguments do |keywords|
keywords << :specifier if legacy_specifier != NOT_GIVEN
keywords << :separators if legacy_separators != NOT_GIVEN
end
with_locale(:en) do
return shuffle(specifier.scan(/[[:word:]]+/)).join(sample(separators)).downcase if specifier.respond_to?(:scan)
if specifier.is_a?(Integer)
raise ArgumentError, 'Given argument is too large' if specifier > 10**6
tries = 0 result = nil
loop do
result = username(specifier: nil, separators: separators)
tries += 1
break unless result.length < specifier && tries < 7
end
return result * (specifier / result.length + 1) if specifier.positive?
elsif specifier.is_a?(Range)
tries = 0
result = nil
loop do
result = username(specifier: specifier.min, separators: separators)
tries += 1
break unless !specifier.include?(result.length) && tries < 7
end
return result[0...specifier.max]
end
sample([
Char.prepare(Name.first_name),
[Name.first_name, Name.last_name].map do |name|
Char.prepare(name)
end.join(sample(separators))
])
end
end
|
.uuid ⇒ Object
299
300
301
302
303
304
305
|
# File 'lib/faker/default/internet.rb', line 299
def uuid
ary = Faker::Config.random.bytes(16).unpack('NnnnnN')
ary[2] = (ary[2] & 0x0fff) | 0x4000
ary[3] = (ary[3] & 0x3fff) | 0x8000
'%08x-%04x-%04x-%04x-%04x%08x' % ary end
|