discourse/app/controllers/uploads_controller.rb

32 lines
1.2 KiB
Ruby
Raw Normal View History

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
file = params[:file] || params[:files].first
# check if the extension is allowed
unless SiteSetting.authorized_upload?(file)
text = I18n.t("upload.unauthorized", authorized_extensions: SiteSetting.authorized_extensions.gsub("|", ", "))
return render status: 415, text: text
end
# check the file size (note: this might also be done in the web server)
filesize = File.size(file.tempfile)
type = SiteSetting.authorized_image?(file) ? "image" : "attachment"
max_size_kb = SiteSetting.send("max_#{type}_size_kb") * 1024
return render status: 413, text: I18n.t("upload.#{type}s.too_large", max_size_kb: max_size_kb) if filesize > max_size_kb
upload = Upload.create_for(current_user.id, file, filesize)
2013-02-05 14:16:51 -05:00
render_serialized(upload, UploadSerializer, root: false)
rescue FastImage::ImageFetchFailure
render status: 422, text: I18n.t("upload.images.fetch_failure")
rescue FastImage::UnknownImageType
render status: 422, text: I18n.t("upload.images.unknown_image_type")
rescue FastImage::SizeNotFound
render status: 422, text: I18n.t("upload.images.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