Coursemology/coursemology2

View on GitHub
app/controllers/course/assessment/submission_question/comments_controller.rb

Summary

Maintainability
A
1 hr
Test Coverage
# frozen_string_literal: true
class Course::Assessment::SubmissionQuestion::CommentsController < Course::Assessment::SubmissionQuestion::Controller
  include Course::Discussion::PostsConcern
  include Signals::EmissionConcern

  signals :comments, after: [:create]

  def create
    result = @submission_question.class.transaction do
      @post.title = @assessment.title
      # Set parent as the topologically last pre-existing post, if it exists.
      @post.parent = last_post_from(@submission_question) if @submission_question.posts.length > 1

      raise ActiveRecord::Rollback unless @post.save && create_topic_subscription && update_topic_pending_status
      raise ActiveRecord::Rollback unless @submission_question.save

      true
    end

    if result
      send_created_notification(@post) if @post.published?
      render_create_response
    else
      head :bad_request
    end
  end

  private

  def create_topic_subscription
    @discussion_topic.ensure_subscribed_by(current_user)
    # Ensure submission's creator gets a notification when someone comments on this
    # submission question.
    @discussion_topic.ensure_subscribed_by(@submission_question.submission.creator)

    # Ensure all group managers get a notification when someone comments on this submission question
    submission_question_course_user = @submission_question.submission.course_user
    submission_question_course_user.my_managers.each do |manager|
      @discussion_topic.ensure_subscribed_by(manager.user)
    end
  end

  def send_created_notification(post)
    return unless current_course_user

    topic_actable = post.topic.actable
    topic_actable.notify(post) if topic_actable.respond_to?(:notify)
  end

  def last_post_from(submission_question)
    # @post is in submission_question.posts, so we filter out @post, which has no id yet.
    submission_question.posts.ordered_topologically.flatten.select(&:id).last
  end

  def discussion_topic
    @submission_question.discussion_topic
  end

  def render_create_response
    respond_to do |format|
      format.json { render partial: @post }
    end
  end
end