2017-06-13 07:27:05 -04:00
|
|
|
require "mini_mime"
|
2017-05-10 18:16:57 -04:00
|
|
|
require_dependency 'upload_creator'
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class UploadsController < ApplicationController
|
2017-08-31 00:06:56 -04:00
|
|
|
before_action :ensure_logged_in, except: [:show]
|
|
|
|
skip_before_action :preload_json, :check_xhr, :redirect_to_login_if_required, only: [:show]
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def create
|
2017-11-23 01:28:18 -05:00
|
|
|
# capture current user for block later on
|
|
|
|
me = current_user
|
|
|
|
|
2017-05-18 06:13:13 -04:00
|
|
|
# 50 characters ought to be enough for the upload type
|
2017-08-31 00:06:56 -04:00
|
|
|
type = params.require(:type).parameterize(separator: "_")[0..50]
|
2015-05-19 19:39:58 -04:00
|
|
|
|
2017-05-10 18:16:57 -04:00
|
|
|
if type == "avatar" && (SiteSetting.sso_overrides_avatar || !SiteSetting.allow_uploaded_avatars)
|
|
|
|
return render json: failed_json, status: 422
|
2015-11-12 04:26:45 -05:00
|
|
|
end
|
|
|
|
|
2017-06-23 06:13:48 -04:00
|
|
|
url = params[:url]
|
|
|
|
file = params[:file] || params[:files]&.first
|
|
|
|
pasted = params[:pasted] == "true"
|
|
|
|
for_private_message = params[:for_private_message] == "true"
|
2017-11-26 20:43:18 -05:00
|
|
|
is_api = is_api?
|
|
|
|
retain_hours = params[:retain_hours].to_i
|
|
|
|
|
|
|
|
# note, atm hijack is processed in its own context and has not access to controller
|
|
|
|
# longer term we may change this
|
|
|
|
hijack do
|
2017-12-27 10:33:25 -05:00
|
|
|
begin
|
|
|
|
info = UploadsController.create_upload(
|
|
|
|
current_user: me,
|
|
|
|
file: file,
|
|
|
|
url: url,
|
|
|
|
type: type,
|
|
|
|
for_private_message: for_private_message,
|
|
|
|
pasted: pasted,
|
|
|
|
is_api: is_api,
|
|
|
|
retain_hours: retain_hours
|
|
|
|
)
|
|
|
|
rescue => e
|
|
|
|
render json: failed_json.merge(message: e.message&.split("\n")&.first), status: 422
|
|
|
|
else
|
|
|
|
render json: UploadsController.serialize_upload(info), status: Upload === info ? 200 : 422
|
|
|
|
end
|
2014-09-23 01:50:26 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-06-04 18:34:53 -04:00
|
|
|
|
2017-08-22 16:40:01 -04:00
|
|
|
def lookup_urls
|
|
|
|
params.permit(short_urls: [])
|
|
|
|
uploads = []
|
|
|
|
|
|
|
|
if (params[:short_urls] && params[:short_urls].length > 0)
|
|
|
|
PrettyText::Helpers.lookup_image_urls(params[:short_urls]).each do |short_url, url|
|
|
|
|
uploads << { short_url: short_url, url: url }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: uploads.to_json
|
|
|
|
end
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
def show
|
2014-05-13 20:51:09 -04:00
|
|
|
return render_404 if !RailsMultisite::ConnectionManagement.has_db?(params[:site])
|
|
|
|
|
2014-03-24 19:37:31 -04:00
|
|
|
RailsMultisite::ConnectionManagement.with_connection(params[:site]) do |db|
|
2014-05-13 20:51:09 -04:00
|
|
|
return render_404 unless Discourse.store.internal?
|
2014-09-09 12:40:11 -04:00
|
|
|
return render_404 if SiteSetting.prevent_anons_from_downloading_files && current_user.nil?
|
2013-09-06 13:18:42 -04:00
|
|
|
|
2015-05-20 09:32:31 -04:00
|
|
|
if upload = Upload.find_by(sha1: params[:sha]) || Upload.find_by(id: params[:id], url: request.env["PATH_INFO"])
|
2017-02-20 09:59:01 -05:00
|
|
|
opts = {
|
|
|
|
filename: upload.original_filename,
|
2017-06-13 07:27:05 -04:00
|
|
|
content_type: MiniMime.lookup_by_filename(upload.original_filename)&.content_type,
|
2017-02-20 09:59:01 -05:00
|
|
|
}
|
|
|
|
opts[:disposition] = "inline" if params[:inline]
|
|
|
|
opts[:disposition] ||= "attachment" unless FileHelper.is_image?(upload.original_filename)
|
2015-05-19 06:31:12 -04:00
|
|
|
send_file(Discourse.store.path_for(upload), opts)
|
2014-04-14 16:55:57 -04:00
|
|
|
else
|
2014-05-13 20:51:09 -04:00
|
|
|
render_404
|
2014-04-14 16:55:57 -04:00
|
|
|
end
|
2014-03-24 19:37:31 -04:00
|
|
|
end
|
2013-09-06 13:18:42 -04:00
|
|
|
end
|
|
|
|
|
2014-05-13 20:51:09 -04:00
|
|
|
protected
|
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
def render_404
|
|
|
|
raise Discourse::NotFound
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.serialize_upload(data)
|
2017-08-22 16:40:01 -04:00
|
|
|
# as_json.as_json is not a typo... as_json in AM serializer returns keys as symbols, we need them
|
|
|
|
# as strings here
|
|
|
|
serialized = UploadSerializer.new(data, root: nil).as_json.as_json if Upload === data
|
|
|
|
serialized ||= (data || {}).as_json
|
|
|
|
end
|
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
def self.create_upload(current_user:, file:, url:, type:, for_private_message:, pasted:, is_api:, retain_hours:)
|
2017-05-10 18:16:57 -04:00
|
|
|
if file.nil?
|
2017-11-26 20:43:18 -05:00
|
|
|
if url.present? && is_api
|
2017-05-10 18:16:57 -04:00
|
|
|
maximum_upload_size = [SiteSetting.max_image_size_kb, SiteSetting.max_attachment_size_kb].max.kilobytes
|
2017-05-24 13:42:52 -04:00
|
|
|
tempfile = FileHelper.download(
|
|
|
|
url,
|
|
|
|
max_file_size: maximum_upload_size,
|
|
|
|
tmp_file_name: "discourse-upload-#{type}"
|
|
|
|
) rescue nil
|
2017-05-10 18:16:57 -04:00
|
|
|
filename = File.basename(URI.parse(url).path)
|
2015-08-12 12:33:13 -04:00
|
|
|
end
|
2017-05-10 18:16:57 -04:00
|
|
|
else
|
|
|
|
tempfile = file.tempfile
|
|
|
|
filename = file.original_filename
|
|
|
|
content_type = file.content_type
|
|
|
|
end
|
2015-08-12 12:33:13 -04:00
|
|
|
|
2017-05-10 18:16:57 -04:00
|
|
|
return { errors: [I18n.t("upload.file_missing")] } if tempfile.nil?
|
2015-06-15 10:12:15 -04:00
|
|
|
|
2017-06-23 06:13:48 -04:00
|
|
|
opts = {
|
|
|
|
type: type,
|
|
|
|
content_type: content_type,
|
|
|
|
for_private_message: for_private_message,
|
|
|
|
pasted: pasted,
|
|
|
|
}
|
2017-06-12 16:41:29 -04:00
|
|
|
|
|
|
|
upload = UploadCreator.new(tempfile, filename, opts).create_for(current_user.id)
|
2015-06-15 10:12:15 -04:00
|
|
|
|
2017-05-10 18:16:57 -04:00
|
|
|
if upload.errors.empty? && current_user.admin?
|
|
|
|
upload.update_columns(retain_hours: retain_hours) if retain_hours > 0
|
2015-06-15 10:12:15 -04:00
|
|
|
end
|
|
|
|
|
2017-05-10 18:16:57 -04:00
|
|
|
upload.errors.empty? ? upload : { errors: upload.errors.values.flatten }
|
|
|
|
ensure
|
|
|
|
tempfile&.close! rescue nil
|
2016-06-20 06:35:07 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|