Class: Decidim::Proposals::RejectAccessToCollaborativeDraft

Inherits:
Command
  • Object
show all
Defined in:
decidim-proposals/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb

Overview

A command with all the business logic to reject a user request to contribute to a collaborative draft.

Instance Method Summary collapse

Methods inherited from Command

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

Constructor Details

#initialize(form, current_user) ⇒ RejectAccessToCollaborativeDraft

Public: Initializes the command.

form - A form object with the params. collaborative_draft - A Decidim::Proposals::CollaborativeDraft object. current_user - The current user. requester_user - The user that requested to collaborate.



14
15
16
17
18
19
# File 'decidim-proposals/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb', line 14

def initialize(form, current_user)
  @form = form
  @collaborative_draft = form.collaborative_draft
  @current_user = current_user
  @requester_user = form.requester_user
end

Dynamic Method Handling

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

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if it was not valid and we could not proceed.

Returns nothing.



27
28
29
30
31
32
33
34
35
36
# File 'decidim-proposals/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb', line 27

def call
  return broadcast(:invalid) if @form.invalid?
  return broadcast(:invalid) if @current_user.nil?

  @collaborative_draft.requesters.delete @requester_user

  notify_collaborative_draft_requester
  notify_collaborative_draft_authors
  broadcast(:ok, @requester_user)
end