2013-02-05 14:16:51 -05:00
|
|
|
class UploadsController < ApplicationController
|
2013-09-06 13:18:42 -04:00
|
|
|
before_filter :ensure_logged_in, except: [:show]
|
|
|
|
skip_before_filter :check_xhr, only: [:show]
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def create
|
|
|
|
file = params[:file] || params[:files].first
|
2013-06-15 03:54:49 -04:00
|
|
|
|
2013-07-23 18:54:18 -04:00
|
|
|
# check if the extension is allowed
|
2013-07-15 19:59:23 -04:00
|
|
|
unless SiteSetting.authorized_upload?(file)
|
|
|
|
text = I18n.t("upload.unauthorized", authorized_extensions: SiteSetting.authorized_extensions.gsub("|", ", "))
|
|
|
|
return render status: 415, text: text
|
|
|
|
end
|
2013-06-15 03:54:49 -04:00
|
|
|
|
2013-07-23 18:54:18 -04:00
|
|
|
# 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"
|
2013-11-13 11:30:48 -05:00
|
|
|
max_size_kb = SiteSetting.send("max_#{type}_size_kb").kilobytes
|
2013-07-23 18:54:18 -04:00
|
|
|
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-06-15 03:54:49 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
render_serialized(upload, UploadSerializer, root: false)
|
2013-06-15 03:54:49 -04:00
|
|
|
|
2013-04-27 14:26:17 -04:00
|
|
|
rescue FastImage::ImageFetchFailure
|
2013-07-23 18:54:18 -04:00
|
|
|
render status: 422, text: I18n.t("upload.images.fetch_failure")
|
2013-04-27 14:26:17 -04:00
|
|
|
rescue FastImage::UnknownImageType
|
2013-07-23 18:54:18 -04:00
|
|
|
render status: 422, text: I18n.t("upload.images.unknown_image_type")
|
2013-04-27 14:26:17 -04:00
|
|
|
rescue FastImage::SizeNotFound
|
2013-07-23 18:54:18 -04:00
|
|
|
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-09-06 13:18:42 -04:00
|
|
|
def show
|
2014-03-24 19:37:31 -04:00
|
|
|
RailsMultisite::ConnectionManagement.with_connection(params[:site]) do |db|
|
2013-09-06 13:18:42 -04:00
|
|
|
|
2014-03-24 19:37:31 -04:00
|
|
|
return render nothing: true, status: 404 unless Discourse.store.internal?
|
2013-09-06 13:18:42 -04:00
|
|
|
|
2014-03-24 19:37:31 -04:00
|
|
|
id = params[:id].to_i
|
|
|
|
url = request.fullpath
|
2013-09-06 13:18:42 -04:00
|
|
|
|
2014-03-24 19:37:31 -04:00
|
|
|
# the "url" parameter is here to prevent people from scanning the uploads using the id
|
|
|
|
upload = Upload.where(id: id, url: url).first
|
2013-09-06 13:18:42 -04:00
|
|
|
|
2014-03-24 19:37:31 -04:00
|
|
|
return render nothing: true, status: 404 unless upload
|
|
|
|
|
|
|
|
send_file(Discourse.store.path_for(upload), filename: upload.original_filename)
|
|
|
|
|
|
|
|
end
|
2013-09-06 13:18:42 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|