Sha256: 1de284d5b9353ab457d7458a8be128b4b5db7bfd0ee397b00e1014f9a3ae1d30

Contents?: true

Size: 784 Bytes

Versions: 1

Compression:

Stored size: 784 Bytes

Contents

require_dependency "my_forum/application_controller"

module MyForum
  class AttachmentsController < ApplicationController

    def create
      upload_path = File.join(Attachment::UPLOAD_PATH, current_user.id.to_s)

      # Create dir of not exists
      FileUtils::mkdir_p upload_path

      attachment_ids = []

      params[:files].each do |uploaded_io|
        file_name = "#{Time.now.to_i}_#{uploaded_io.original_filename}"
        File.open(File.join(upload_path, file_name), 'wb') do |file|
          file.write(uploaded_io.read)
        end

        attachment = Attachment.create(user_id: current_user.id, file_name: file_name)
        attachment_ids.push attachment.id
      end

      render json: { success: true, attachments: attachment_ids }.to_json
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
my_forum-0.0.1.beta26 app/controllers/my_forum/attachments_controller.rb