File: product.rb

package info (click to toggle)
ruby-ffaker 2.23.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,776 kB
  • sloc: ruby: 12,788; makefile: 8; sh: 1
file content (47 lines) | stat: -rw-r--r-- 1,251 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
# frozen_string_literal: true

module FFaker
  module Product
    extend ModuleUtils
    extend self

    B2 = %w[nix cell sync func balt sche pod].freeze
    VOWELS = %w[a e i o u ou ie y io].freeze
    START  = %w[tr br p ph].freeze
    SUFFIX = %w[ck ns nce nt st ne re ffe ph].freeze
    ADDON  = %w[wood forge func].freeze

    def brand
      case rand(0..11)
      when (0..4) then fetch_sample(B1) + fetch_sample(B2)
      when (5..10)
        [
          fetch_sample(START), fetch_sample(VOWELS), fetch_sample(SUFFIX),
          rand(0..1).zero? ? fetch_sample(ADDON) : nil
        ].join.capitalize
      when 11 then letters(2..3).to_s
      end
    end

    def product_name
      return "#{fetch_sample(ADJ)} #{fetch_sample(NOUN)}" if rand(0..1).zero?

      "#{[fetch_sample(ADJ), fetch_sample(ADJ)].uniq.join(' ')} #{fetch_sample(NOUN)}"
    end

    def product
      "#{brand} #{product_name}"
    end

    def letters(count)
      max = count.is_a?(Range) ? fetch_sample(count.to_a) : count
      (0...max).map { fetch_sample(LETTERS).upcase }.join
    end

    def model
      return "#{fetch_sample(LETTERS).upcase}#{rand(90)}" if rand(0..1).zero? # N90

      "#{letters(1..rand(1..2))}-#{rand(9900)}" # N-9400
    end
  end
end