class Ajax::QuestionController < AjaxController def destroy params.require :question question = Question.find params[:question] if question.nil? @response[:status] = :not_found @response[:message] = I18n.t('messages.question.destroy.not_found') return end if not (current_user.mod? or question.user == current_user) @response[:status] = :not_authorized @response[:message] = I18n.t('messages.question.destroy.not_authorized') return end question.destroy! @response[:status] = :okay @response[:message] = I18n.t('messages.question.destroy.okay') @response[:success] = true end def create params.require :question params.require :anonymousQuestion params.require :rcpt is_never_anonymous = user_signed_in? && params[:rcpt] == 'followers' begin question = Question.create!(content: params[:question], author_is_anonymous: is_never_anonymous ? false : params[:anonymousQuestion], user: current_user, direct: params[:rcpt] != 'followers') rescue ActiveRecord::RecordInvalid => e Sentry.capture_exception(e) @response[:status] = :rec_inv @response[:message] = I18n.t('messages.question.create.rec_inv') return end if !user_signed_in? && !question.author_is_anonymous question.delete return end unless current_user.nil? current_user.increment! :asked_count unless params[:anonymousQuestion] == 'true' end if params[:rcpt] == 'followers' QuestionWorker.perform_async(current_user.id, question.id) unless current_user.nil? else u = User.find_by_id(params[:rcpt]) if u.nil? @response[:status] = :not_found @response[:message] = I18n.t('messages.question.create.not_found') question.delete return end if !u.privacy_allow_anonymous_questions && question.author_is_anonymous question.delete return end unless MuteRule.where(user: u).any? { |rule| rule.applies_to? question } Inbox.create!(user_id: u.id, question_id: question.id, new: true) end end @response[:status] = :okay @response[:message] = I18n.t('messages.question.create.okay') @response[:success] = true end end