Class: Decidim::Admin::HideResource

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

Overview

A command with all the business logic when a user hides a resource.

Instance Method Summary collapse

Methods inherited from Command

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

Constructor Details

#initialize(reportable, current_user) ⇒ HideResource

Public: Initializes the command.

reportable - A Decidim::Reportable current_user - the user that performs the action



11
12
13
14
# File 'decidim-admin/app/commands/decidim/admin/hide_resource.rb', line 11

def initialize(reportable, current_user)
  @reportable = reportable
  @current_user = current_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, together with the resource.

  • :invalid if the resource is already hidden

Returns nothing.



22
23
24
25
26
27
28
29
30
31
32
# File 'decidim-admin/app/commands/decidim/admin/hide_resource.rb', line 22

def call
  return broadcast(:invalid) unless hideable?

  with_events do
    tool = Decidim::ModerationTools.new(@reportable, @current_user)
    tool.hide!
    tool.send_notification_to_author
  end

  broadcast(:ok, @reportable)
end