Sha256: 184585faf39ab352f71f1ce13ff385b5041b53cffcb291099d839a70715fad85
Contents?: true
Size: 1.62 KB
Versions: 10
Compression:
Stored size: 1.62 KB
Contents
# frozen_string_literal: true module Decidim # A command with all the business logic when a user creates a report. class CreateUserReport < Decidim::Command delegate :current_user, to: :form # Public: Initializes the command. # # form - A form object with the params. # reportable - The resource being reported def initialize(form, reportable) @form = form @reportable = reportable end # Executes the command. Broadcasts these events: # # - :ok when everything is valid, together with the report. # - :invalid if the form was not valid and we could not proceed. # # Returns nothing. def call return broadcast(:invalid) if form.invalid? transaction do find_or_create_moderation! create_report! update_report_count! send_notification_to_admins! end broadcast(:ok, report) end private attr_reader :form, :report def find_or_create_moderation! @moderation = UserModeration.find_or_create_by!(user: @reportable) end def create_report! @report = UserReport.create!( moderation: @moderation, user: current_user, reason: form.reason, details: form.details ) end def update_report_count! @moderation.update!(report_count: @moderation.report_count + 1) end def send_notification_to_admins! current_user.organization.admins.each do |admin| next unless admin.email_on_moderations Decidim::UserReportJob.perform_later(admin, report) end end def hideable? false end end end
Version data entries
10 entries across 10 versions & 1 rubygems