Sha256: 4bac021905a209053b977701286d75f26078c4c228dacb39cc22d1fa32fd3c3f
Contents?: true
Size: 1.21 KB
Versions: 8
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module Decidim # A command with all the business logic for when a user starts following a resource. class CreateFollow < Decidim::Command # Public: Initializes the command. # # form - A form object with the params. # current_user - The current user. def initialize(form, current_user) @form = form @current_user = current_user end # Executes the command. Broadcasts these events: # # - :ok when everything is valid, together with the follow. # - :invalid if the form was not valid and we could not proceed. # # Returns nothing. def call return broadcast(:invalid) if form.invalid? create_follow! increment_score broadcast(:ok, follow) end private attr_reader :follow, :form, :current_user def create_follow! @follow = Follow.find_by( followable: form.followable, user: current_user ) || Follow.create!( followable: form.followable, user: current_user ) end def increment_score return unless form.followable.is_a? Decidim::User Decidim::Gamification.increment_score(form.followable, :followers) end end end
Version data entries
8 entries across 8 versions & 1 rubygems