Class: Decidim::Conferences::JoinConference

Inherits:
Decidim::Command show all
Defined in:
decidim-conferences/app/commands/decidim/conferences/join_conference.rb

Overview

This command is executed when the user joins a conference.

Instance Method Summary collapse

Methods inherited from Decidim::Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(conference, registration_type, user) ⇒ JoinConference

Initializes a JoinConference Command.

conference - The current instance of the conference to be joined. registration_type - The registration type selected to attend the conference user - The user joining the conference.



12
13
14
15
16
# File 'decidim-conferences/app/commands/decidim/conferences/join_conference.rb', line 12

def initialize(conference, registration_type, user)
  @conference = conference
  @registration_type = registration_type
  @user = user
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Creates a conference registration if the conference has registrations enabled and there are available slots.

Broadcasts :ok if successful, :invalid otherwise.



22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'decidim-conferences/app/commands/decidim/conferences/join_conference.rb', line 22

def call
  return broadcast(:invalid) unless can_join_conference?
  return broadcast(:ok) if already_joined_conference?

  conference.with_lock do
    create_registration
    create_meetings_registrations
    accept_invitation
    send_email_pending_validation
    send_notification_pending_validation
    notify_admin_over_percentage
  end
  broadcast(:ok)
end