Sha256: 21dcb62845831a2cda78d192147369a9ba4b49af9512af250d821ae687079278

Contents?: true

Size: 1.35 KB

Versions: 3

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

module Decidim
  module Blogs
    module Admin
      # This command is executed when the user creates a Post from the admin
      # panel.
      class CreatePost < Rectify::Command
        def initialize(form, current_user)
          @form = form
          @current_user = current_user
        end

        # Creates the post if valid.
        #
        # Broadcasts :ok if successful, :invalid otherwise.
        def call
          return broadcast(:invalid) if @form.invalid?

          transaction do
            create_post!
            send_notification
          end

          broadcast(:ok, @post)
        end

        private

        def create_post!
          attributes = {
            title: @form.title,
            body: @form.body,
            component: @form.current_component,
            author: @current_user
          }

          @post = Decidim.traceability.create!(
            Post,
            @current_user,
            attributes,
            visibility: "all"
          )
        end

        def send_notification
          Decidim::EventsManager.publish(
            event: "decidim.events.blogs.post_created",
            event_class: Decidim::Blogs::CreatePostEvent,
            resource: @post,
            recipient_ids: @post.participatory_space.followers.pluck(:id)
          )
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
decidim-blogs-0.15.2 app/commands/decidim/blogs/admin/create_post.rb
decidim-blogs-0.15.1 app/commands/decidim/blogs/admin/create_post.rb
decidim-blogs-0.15.0 app/commands/decidim/blogs/admin/create_post.rb