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, regexify, translate

Class Method Details

.domain_nameObject



52
53
54
# File 'lib/faker/internet.rb', line 52

def domain_name
  [ fix_umlauts(domain_word), domain_suffix ].join('.')
end

.domain_suffixObject



71
72
73
# File 'lib/faker/internet.rb', line 71

def domain_suffix
  fetch('internet.domain_suffix')
end

.domain_wordObject



67
68
69
# File 'lib/faker/internet.rb', line 67

def domain_word
  Company.name.split(' ').first.gsub(/\W/, '').downcase
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



56
57
58
59
60
61
62
63
64
65
# File 'lib/faker/internet.rb', line 56

def fix_umlauts(string)
  string.gsub(/[äöüß]/i) do |match|
      case match.downcase
          when "ä" 'ae'
          when "ö" 'oe'
          when "ü" 'ue'
          when "ß" 'ss'
      end
  end
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



75
76
77
78
79
80
81
# File 'lib/faker/internet.rb', line 75

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

.ip_v6_addressObject



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

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

.passwordObject



48
49
50
# File 'lib/faker/internet.rb', line 48

def password
  Lorem.words.join
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



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

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

.urlObject



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

def url
  "http://#{domain_name}/#{user_name}"
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
# File 'lib/faker/internet.rb', line 17

def user_name(specifier = nil, separators = %w(. _))
  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
      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
      tries += 1
    end while not specifier.include? result.length and tries < 7
    return result[0...specifier.max]
  end

  fix_umlauts([
    Proc.new { Name.first_name.gsub(/\W/, '').downcase },
    Proc.new {
      [ Name.first_name, Name.last_name ].map {|n|
        n.gsub(/\W/, '')
      }.join(separators.sample).downcase }
  ].sample.call)
end