2013-02-05 14:16:51 -05:00
|
|
|
class UploadsController < ApplicationController
|
2013-04-02 19:17:17 -04:00
|
|
|
before_filter :ensure_logged_in
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def create
|
2013-06-05 03:55:55 -04:00
|
|
|
params.require(:topic_id)
|
2013-02-05 14:16:51 -05:00
|
|
|
file = params[:file] || params[:files].first
|
2013-06-04 18:34:53 -04:00
|
|
|
|
2013-04-07 11:52:46 -04:00
|
|
|
# only supports images for now
|
|
|
|
return render status: 415, json: failed_json unless file.content_type =~ /^image\/.+/
|
2013-06-04 18:34:53 -04:00
|
|
|
|
2013-04-07 11:52:46 -04:00
|
|
|
upload = Upload.create_for(current_user.id, file, params[:topic_id])
|
2013-06-04 18:34:53 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
render_serialized(upload, UploadSerializer, root: false)
|
2013-06-04 18:34:53 -04:00
|
|
|
|
2013-04-27 14:26:17 -04:00
|
|
|
rescue FastImage::ImageFetchFailure
|
|
|
|
render status: 422, text: I18n.t("upload.image.fetch_failure")
|
|
|
|
rescue FastImage::UnknownImageType
|
|
|
|
render status: 422, text: I18n.t("upload.image.unknown_image_type")
|
|
|
|
rescue FastImage::SizeNotFound
|
|
|
|
render status: 422, text: I18n.t("upload.image.size_not_found")
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-06-04 18:34:53 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|