Sha256: 673b88a1ca3e0294b8014a312994f81daad49a8742cb4ad5480f293927896913

Contents?: true

Size: 1.68 KB

Versions: 7

Compression:

Stored size: 1.68 KB

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A command with all the business logic to promote a managed user.
    #
    # Managed users can be promoted to standard users. It means they
    # will be invited to the application and will lose the managed flag
    # so the user cannot be impersonated anymore.
    class PromoteManagedUser < Decidim::Command
      # Public: Initializes the command.
      #
      # form         - A form object with the params.
      # user         - The user to promote
      # promoted_by  - The user performing the operation
      def initialize(form, user, promoted_by)
        @form = form
        @user = user
        @promoted_by = promoted_by
      end

      # Executes the command. Broadcasts these events:
      #
      # - :ok when everything is valid.
      # - :invalid if the form was not valid and we could not proceed.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) if form.invalid? || !user.managed? || email_already_exists?

        promote_user
        invite_user
        create_action_log

        broadcast(:ok)
      end

      attr_reader :form, :user, :promoted_by

      private

      def promote_user
        user.email = form.email.downcase
        user.skip_reconfirmation!
        user.save(validate: false)
      end

      def invite_user
        user.invite!(promoted_by)
      end

      def email_already_exists?
        Decidim::User.where(email: form.email.downcase).any?
      end

      def create_action_log
        Decidim.traceability.perform_action!(
          "promote",
          user,
          form.current_user,
          visibility: "admin-only"
        )
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-admin-0.28.4 app/commands/decidim/admin/promote_managed_user.rb
decidim-admin-0.28.3 app/commands/decidim/admin/promote_managed_user.rb
decidim-admin-0.28.2 app/commands/decidim/admin/promote_managed_user.rb
decidim-admin-0.28.1 app/commands/decidim/admin/promote_managed_user.rb
decidim-admin-0.28.0 app/commands/decidim/admin/promote_managed_user.rb
decidim-admin-0.28.0.rc5 app/commands/decidim/admin/promote_managed_user.rb
decidim-admin-0.28.0.rc4 app/commands/decidim/admin/promote_managed_user.rb