Class: DiscourseDev::Topic

Inherits:
Record
  • Object
show all
Defined in:
lib/discourse_dev/topic.rb

Constant Summary

Constants inherited from Record

Record::AUTO_POPULATED, Record::DEFAULT_COUNT

Instance Attribute Summary

Attributes inherited from Record

#model, #type

Instance Method Summary collapse

Methods inherited from Record

populate!, random

Constructor Details

#initialize(private_messages: false, recipient: nil, ignore_current_count: false) ⇒ Topic

Returns a new instance of Topic.



8
9
10
11
12
13
14
# File 'lib/discourse_dev/topic.rb', line 8

def initialize(private_messages: false, recipient: nil, ignore_current_count: false)
  @settings = DiscourseDev.config.topic
  @private_messages = private_messages
  @recipient = recipient
  @ignore_current_count = ignore_current_count
  super(::Topic, @settings[:count])
end

Instance Method Details

#create!Object



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/discourse_dev/topic.rb', line 78

def create!
  if @private_messages && !::User.find_by_username(@recipient)
    puts "Cannot create PMs for missing user with username: #{@recipient}"
    exit 1
  end

  @category = @private_messages ? nil : Category.random

  user = self.user
  topic_data = Faker::DiscourseMarkdown.with_user(user.id) { data }
  post = PostCreator.new(user, topic_data).create!

  if override = @settings.dig(:replies, :overrides).find { |o| o[:title] == topic_data[:title] }
    reply_count = override[:count]
  else
    reply_count =
      Faker::Number.between(
        from: @settings.dig(:replies, :min),
        to: @settings.dig(:replies, :max),
      )
  end

  topic = post.topic
  Post.new(topic, reply_count).populate!
  topic
end

#current_countObject



122
123
124
125
# File 'lib/discourse_dev/topic.rb', line 122

def current_count
  category_definition_topic_ids = ::Category.pluck(:topic_id)
  ::Topic.where(archetype: :regular).where.not(id: category_definition_topic_ids).count
end

#dataObject



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
48
49
50
51
52
53
# File 'lib/discourse_dev/topic.rb', line 16

def data
  max_views = 0

  case Faker::Number.between(from: 0, to: 5)
  when 0
    max_views = 10
  when 1
    max_views = 100
  when 2
    max_views = SiteSetting.topic_views_heat_low
  when 3
    max_views = SiteSetting.topic_views_heat_medium
  when 4
    max_views = SiteSetting.topic_views_heat_high
  when 5
    max_views = SiteSetting.topic_views_heat_high + SiteSetting.topic_views_heat_medium
  end

  if @category
    merge_attributes = { category: @category.id, tags: tags }
  else
    merge_attributes = { archetype: "private_message", target_usernames: [@recipient] }
  end

  {
    title: title[0, SiteSetting.max_topic_title_length],
    raw: Faker::DiscourseMarkdown.sandwich(sentences: 5),
    created_at: Faker::Time.between(from: DiscourseDev.config.start_date, to: DateTime.now),
    topic_opts: {
      import_mode: true,
      views: Faker::Number.between(from: 1, to: max_views),
      custom_fields: {
        dev_sample: true,
      },
    },
    skip_validations: true,
  }.merge(merge_attributes)
end

#delete_unwanted_sidekiq_jobsObject



127
128
129
# File 'lib/discourse_dev/topic.rb', line 127

def delete_unwanted_sidekiq_jobs
  Sidekiq::ScheduledSet.new.each { |job| job.delete if job.item["class"] == "Jobs::UserEmail" }
end

#populate!Object



105
106
107
108
109
# File 'lib/discourse_dev/topic.rb', line 105

def populate!
  topics = super(ignore_current_count: @ignore_current_count)
  delete_unwanted_sidekiq_jobs
  topics
end

#tagsObject



66
67
68
69
70
71
72
73
74
75
76
# File 'lib/discourse_dev/topic.rb', line 66

def tags
  return unless SiteSetting.tagging_enabled

  @tags = []

  Faker::Number
    .between(from: @settings.dig(:tags, :min), to: @settings.dig(:tags, :max))
    .times { @tags << Faker::Discourse.tag }

  @tags.uniq
end

#titleObject



55
56
57
58
59
60
61
62
63
64
# File 'lib/discourse_dev/topic.rb', line 55

def title
  if current_count < I18n.t("faker.discourse.topics").count
    Faker::Discourse.unique.topic
  else
    Faker::Lorem
      .unique
      .sentence(word_count: 5, supplemental: true, random_words_to_add: 4)
      .chomp(".")
  end
end

#userObject



111
112
113
114
115
116
117
118
119
120
# File 'lib/discourse_dev/topic.rb', line 111

def user
  return ::User.find_by_username(@recipient) if @private_messages
  return User.random if @category.groups.blank?

  group_ids = @category.groups.pluck(:id)
  user_ids = ::GroupUser.where(group_id: group_ids).pluck(:user_id)
  user_count = user_ids.count
  position = Faker::Number.between(from: 0, to: user_count - 1)
  ::User.find(user_ids[position] || Discourse::SYSTEM_USER_ID)
end