Class: Decidim::Conferences::Seeds

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

Instance Method Summary collapse

Instance Method Details

#callObject



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
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
84
85
86
87
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/decidim/conferences/seeds.rb', line 8

def call
  organization = Decidim::Organization.first

  Decidim::ContentBlock.create(
    organization:,
    weight: 33,
    scope_name: :homepage,
    manifest_name: :highlighted_conferences,
    published_at: Time.current
  )

  2.times do |_n|
    params = {
      title: Decidim::Faker::Localized.sentence(word_count: 5),
      slogan: Decidim::Faker::Localized.sentence(word_count: 2),
      slug: Decidim::Faker::Internet.unique.slug(words: nil, glue: "-"),
      hashtag: "##{::Faker::Lorem.word}",
      short_description: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
        Decidim::Faker::Localized.sentence(word_count: 3)
      end,
      description: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
        Decidim::Faker::Localized.paragraph(sentence_count: 3)
      end,
      organization:,
      hero_image: ::Faker::Boolean.boolean(true_ratio: 0.5) ? hero_image : nil, # Keep after organization
      banner_image: ::Faker::Boolean.boolean(true_ratio: 0.5) ? banner_image : nil, # Keep after organization
      promoted: true,
      published_at: 2.weeks.ago,
      objectives: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
        Decidim::Faker::Localized.paragraph(sentence_count: 3)
      end,
      start_date: Time.current,
      end_date: 2.months.from_now.at_midnight,
      registrations_enabled: [true, false].sample,
      available_slots: (10..50).step(10).to_a.sample,
      registration_terms: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
        Decidim::Faker::Localized.paragraph(sentence_count: 3)
      end
    }

    conference = Decidim.traceability.perform_action!(
      "publish",
      Decidim::Conference,
      organization.users.first,
      visibility: "all"
    ) do
      Decidim::Conference.create!(params)
    end
    conference.add_to_index_as_search_resource

    # Create users with specific roles
    Decidim::ConferenceUserRole::ROLES.each do |role|
      email = "conference_#{conference.id}_#{role}@example.org"
      user = find_or_initialize_user_by(email:)

      Decidim::ConferenceUserRole.find_or_create_by!(
        user:,
        conference:,
        role:
      )
    end

    attachment_collection = create_attachment_collection(collection_for: conference)
    create_attachment(attached_to: conference, filename: "Exampledocument.pdf", attachment_collection:)
    create_attachment(attached_to: conference, filename: "city.jpeg")
    create_attachment(attached_to: conference, filename: "Exampledocument.pdf")

    2.times do
      Decidim::Category.create!(
        name: Decidim::Faker::Localized.sentence(word_count: 5),
        description: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
          Decidim::Faker::Localized.paragraph(sentence_count: 3)
        end,
        participatory_space: conference
      )
    end

    5.times do
      Decidim::ConferenceSpeaker.create!(
        user: conference.organization.users.sample,
        full_name: ::Faker::Name.name,
        position: Decidim::Faker::Localized.word,
        affiliation: Decidim::Faker::Localized.sentence(word_count: 3),
        short_bio: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
          Decidim::Faker::Localized.paragraph(sentence_count: 3)
        end,
        twitter_handle: ::Faker::Twitter.unique.screen_name,
        personal_url: ::Faker::Internet.url,
        published_at: Time.current,
        conference:
      )
    end

    Decidim::Conferences::Partner::TYPES.map do |type|
      4.times do
        Decidim::Conferences::Partner.create!(
          name: ::Faker::Name.name,
          weight: ::Faker::Number.between(from: 1, to: 10),
          link: ::Faker::Internet.url,
          partner_type: type,
          conference:,
          logo: create_blob!(seeds_file: "logo.png", filename: "logo.png", content_type: "image/png")
        )
      end
    end

    5.times do
      Decidim::Conferences::MediaLink.create!(
        title: Decidim::Faker::Localized.sentence(word_count: 2),
        link: ::Faker::Internet.url,
        date: Date.current,
        weight: ::Faker::Number.between(from: 1, to: 10),
        conference:
      )
    end

    5.times do
      Decidim::Conferences::RegistrationType.create!(
        title: Decidim::Faker::Localized.sentence(word_count: 2),
        description: Decidim::Faker::Localized.sentence(word_count: 5),
        weight: ::Faker::Number.between(from: 1, to: 10),
        price: ::Faker::Number.between(from: 1, to: 300),
        published_at: 2.weeks.ago,
        conference:
      )
    end

    Decidim.component_manifests.each do |manifest|
      manifest.seed!(conference.reload)
    end

    Decidim::ConferenceMeeting.where(component: conference.components).each do |conference_meeting|
      next unless ::Faker::Boolean.boolean(true_ratio: 0.5)

      conference.speakers.sample(3).each do |speaker|
        Decidim::ConferenceSpeakerConferenceMeeting.create!(
          conference_meeting:,
          conference_speaker: speaker
        )
      end
    end
  end
end