Skip to content
Extraits de code Groupes Projets
messages_controller.rb 977 o
# frozen_string_literal: true

#   Copyright (c) 2010-2011, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.

class MessagesController < ApplicationController
  before_action :authenticate_user!

  respond_to :html, :mobile
  respond_to :json, :only => :show

  def create
    conversation = Conversation.find(params[:conversation_id])

    opts = params.require(:message).permit(:text)
    message = current_user.build_message(conversation, opts)

    if message.save
      logger.info "event=create type=message user=#{current_user.diaspora_handle} status=success " \
                  "message=#{message.id} chars=#{params[:message][:text].length}"
      Diaspora::Federation::Dispatcher.defer_dispatch(current_user, message)
    else
      flash[:error] = I18n.t('conversations.new_conversation.fail')
    end
    redirect_to conversations_path(:conversation_id => conversation.id)
  end
end