Class: Decidim::Proposals::Seeds

Inherits:
Seeds
  • Object
show all
Defined in:
lib/decidim/proposals/seeds.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(participatory_space:) ⇒ Seeds

Returns a new instance of Seeds.



11
12
13
# File 'lib/decidim/proposals/seeds.rb', line 11

def initialize(participatory_space:)
  @participatory_space = participatory_space
end

Instance Attribute Details

#participatory_spaceObject (readonly)

Returns the value of attribute participatory_space.



9
10
11
# File 'lib/decidim/proposals/seeds.rb', line 9

def participatory_space
  @participatory_space
end

Instance Method Details

#callObject



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
# File 'lib/decidim/proposals/seeds.rb', line 15

def call
  component = create_component!

  Decidim::Proposals.create_default_states!(component, admin_user)

  number_of_records = slow_seeds? ? rand(25..50) : rand(5..10)

  (5..number_of_records).to_a.sample.times do |n|
    proposal = create_proposal!(component:)

    if proposal.state.nil? && component.settings.amendments_enabled?
      emendation = create_emendation!(proposal:)
      create_proposal_votes!(proposal: emendation)
    end

    (n % 3).times do |_m|
      create_proposal_votes!(proposal:)
    end

    (n % 3).times do
      create_proposal_notes!(proposal:)
    end

    Decidim::Comments::Seed.comments_for(proposal)
  end

  create_report!(reportable: Decidim::Proposals::Proposal.take, current_user: Decidim::User.take)
  hide_report!(reportable: Decidim::Proposals::Proposal.take)
end

#create_component!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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/decidim/proposals/seeds.rb', line 49

def create_component!
  step_settings = if participatory_space.allows_steps?
                    { participatory_space.active_step.id => {
                      votes_enabled: true,
                      votes_blocked: [false, true].sample,
                      votes_hidden: [false, true].sample,
                      creation_enabled: true
                    } }
                  else
                    {}
                  end

  params = {
    name: Decidim::Components::Namer.new(participatory_space.organization.available_locales, :proposals).i18n_name,
    manifest_name: :proposals,
    published_at: Time.current,
    participatory_space:,
    settings: {
      minimum_votes_per_user: (0..2).to_a.sample,
      vote_limit: (0..5).to_a.sample,
      threshold_per_proposal: [0, (10..100).to_a.sample].sample,
      can_accumulate_votes_beyond_threshold: [true, false].sample,
      attachments_allowed: [true, false].sample,
      amendments_enabled: participatory_space.id.odd?,
      geocoding_enabled: [true, false].sample
    },
    step_settings:
  }

  Decidim.traceability.perform_action!(
    "publish",
    Decidim::Component,
    admin_user,
    visibility: "all"
  ) do
    Decidim::Component.create!(params)
  end
end

#create_emendation!(proposal:) ⇒ Object



179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'lib/decidim/proposals/seeds.rb', line 179

def create_emendation!(proposal:)
  author = find_or_initialize_user_by(email: random_email(suffix: "amendment"))

  params = {
    component: proposal.component,
    title: Decidim::Faker::Localized.literal(proposal.title[I18n.locale]),
    body: Decidim::Faker::Localized.paragraph(sentence_count: 3),
    proposal_state: Decidim::Proposals::ProposalState.where(component: proposal.component, token: :evaluating).first,
    answer: nil,
    answered_at: Time.current,
    published_at: Time.current
  }

  emendation = Decidim.traceability.perform_action!(
    "create",
    Decidim::Proposals::Proposal,
    author,
    visibility: "public-only"
  ) do
    emendation = Decidim::Proposals::Proposal.new(params)
    emendation.add_coauthor(author)
    emendation.save!
    emendation
  end

  Decidim::Amendment.create!(
    amender: author,
    amendable: proposal,
    emendation:,
    state: "evaluating"
  )

  emendation
end

#create_proposal!(component:) ⇒ Object



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
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
# File 'lib/decidim/proposals/seeds.rb', line 88

def create_proposal!(component:)
  proposal_state, answer, state_published_at = random_state_answer
  proposal_state = Decidim::Proposals::ProposalState.where(component:, token: proposal_state).first

  params = {
    component:,
    title: Decidim::Faker::Localized.sentence(word_count: 2),
    body: Decidim::Faker::Localized.paragraph(sentence_count: 1),
    proposal_state:,
    answer:,
    answered_at: proposal_state.present? ? Time.current : nil,
    state_published_at:,
    published_at: Time.current
  }

  if component.settings.geocoding_enabled?
    params = params.merge({
                            address: "#{::Faker::Address.street_address} #{::Faker::Address.zip} #{::Faker::Address.city}",
                            latitude: ::Faker::Address.latitude,
                            longitude: ::Faker::Address.longitude
                          })
  end

  proposal = Decidim.traceability.perform_action!(
    "publish",
    Decidim::Proposals::Proposal,
    admin_user,
    visibility: "all"
  ) do
    proposal = Decidim::Proposals::Proposal.new(params)
    coauthor = random_coauthor
    proposal.add_coauthor(coauthor)
    proposal.save!

    Decidim::EventsManager.publish(
      event: "decidim.events.proposals.proposal_published_for_space",
      event_class: Decidim::Proposals::PublishProposalEvent,
      resource: proposal,
      followers: proposal.participatory_space.followers
    )

    proposal
  end

  create_attachment(attached_to: proposal, filename: "city.jpeg") if component.settings.attachments_allowed?

  proposal
end

#create_proposal_notes!(proposal:) ⇒ Object



220
221
222
223
224
225
226
227
228
# File 'lib/decidim/proposals/seeds.rb', line 220

def create_proposal_notes!(proposal:)
  author_admin = Decidim::User.where(organization:, admin: true).all.sample

  Decidim::Proposals::ProposalNote.create!(
    proposal:,
    author: author_admin,
    body: ::Faker::Lorem.paragraphs(number: 2).join("\n")
  )
end

#create_proposal_votes!(proposal:) ⇒ Object



214
215
216
217
218
# File 'lib/decidim/proposals/seeds.rb', line 214

def create_proposal_votes!(proposal:)
  author = find_or_initialize_user_by(email: random_email(suffix: "vote"))

  Decidim::Proposals::ProposalVote.create!(proposal:, author:) unless proposal.published_state? && proposal.rejected?
end

#organizationObject



45
46
47
# File 'lib/decidim/proposals/seeds.rb', line 45

def organization
  @organization ||= participatory_space.organization
end

#random_coauthorObject



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/decidim/proposals/seeds.rb', line 153

def random_coauthor
  n = rand(4)
  n = 2 if n == 1 && !Decidim.module_installed?(:meetings)

  case n
  when 0
    Decidim::User.where(organization:).sample
  when 1
    meeting_component = participatory_space.components.find_by(manifest_name: "meetings")

    Decidim::Meetings::Meeting.where(component: meeting_component).sample
  else
    organization
  end
end

#random_email(suffix:) ⇒ Object



173
174
175
176
177
# File 'lib/decidim/proposals/seeds.rb', line 173

def random_email(suffix:)
  r = SecureRandom.hex(4)

  "#{suffix}-author-#{participatory_space.underscored_name}-#{participatory_space.id}-#{r}@example.org"
end

#random_nicknameObject



169
170
171
# File 'lib/decidim/proposals/seeds.rb', line 169

def random_nickname
  "#{::Faker::X.unique.screen_name}-#{SecureRandom.hex(4)}"[0, 20]
end

#random_state_answerObject



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/decidim/proposals/seeds.rb', line 137

def random_state_answer
  n = rand(5)

  if n > 3
    [:accepted, Decidim::Faker::Localized.sentence(word_count: 10), Time.current]
  elsif n > 2
    [:rejected, nil, Time.current]
  elsif n > 1
    [:evaluating, nil, Time.current]
  elsif n.positive?
    [:accepted, Decidim::Faker::Localized.sentence(word_count: 10), nil]
  else
    [:not_answered, nil, nil]
  end
end