6fdd4a2996
- Devise auth tokens are reset on password update - Avatar attachment file type is limited to jpeg,gif and png - Avatar attachment file size is limited to 15 mb - Widget Message attachments are limited to types ['image/png', 'image/jpeg', 'image/gif', 'image/bmp', 'image/tiff', 'application/pdf', 'audio/mpeg', 'video/mp4', 'audio/ogg', 'text/csv'] - Widget Message attachments are limited to 40Mb size limit.
67 lines
1.6 KiB
Ruby
67 lines
1.6 KiB
Ruby
class Public::Api::V1::Inboxes::MessagesController < Public::Api::V1::InboxesController
|
|
before_action :set_message, only: [:update]
|
|
|
|
def index
|
|
@messages = @conversation.nil? ? [] : message_finder.perform
|
|
end
|
|
|
|
def create
|
|
@message = @conversation.messages.new(message_params)
|
|
build_attachment
|
|
@message.save!
|
|
end
|
|
|
|
def update
|
|
@message.update!(message_update_params)
|
|
rescue StandardError => e
|
|
render json: { error: @contact.errors, message: e.message }.to_json, status: :internal_server_error
|
|
end
|
|
|
|
private
|
|
|
|
def build_attachment
|
|
return if params[:attachments].blank?
|
|
|
|
params[:attachments].each do |uploaded_attachment|
|
|
@message.attachments.new(
|
|
account_id: @message.account_id,
|
|
file_type: helpers.file_type(uploaded_attachment&.content_type),
|
|
file: uploaded_attachment
|
|
)
|
|
end
|
|
end
|
|
|
|
def message_finder_params
|
|
{
|
|
filter_internal_messages: true,
|
|
before: params[:before]
|
|
}
|
|
end
|
|
|
|
def message_finder
|
|
@message_finder ||= MessageFinder.new(@conversation, message_finder_params)
|
|
end
|
|
|
|
def message_update_params
|
|
params.permit(submitted_values: [:name, :title, :value])
|
|
end
|
|
|
|
def permitted_params
|
|
params.permit(:content, :echo_id)
|
|
end
|
|
|
|
def set_message
|
|
@message = @conversation.messages.find(params[:id])
|
|
end
|
|
|
|
def message_params
|
|
{
|
|
account_id: @conversation.account_id,
|
|
sender: @contact_inbox.contact,
|
|
content: permitted_params[:content],
|
|
inbox_id: @conversation.inbox_id,
|
|
echo_id: permitted_params[:echo_id],
|
|
message_type: :incoming
|
|
}
|
|
end
|
|
end
|