2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
require_dependency "file_helper"
|
|
|
|
|
|
|
|
module Validators; end
|
|
|
|
|
2019-10-02 12:01:53 +08:00
|
|
|
class UploadValidator < ActiveModel::Validator
|
2014-04-15 04:55:57 +08:00
|
|
|
|
|
|
|
def validate(upload)
|
2017-06-13 04:41:29 +08:00
|
|
|
# staff can upload any file in PM
|
2018-11-14 15:03:02 +08:00
|
|
|
if (upload.for_private_message && SiteSetting.allow_staff_to_upload_any_file_in_pm)
|
2017-06-13 04:41:29 +08:00
|
|
|
return true if upload.user&.staff?
|
|
|
|
end
|
|
|
|
|
2020-07-27 08:23:54 +08:00
|
|
|
# check the attachment blocklist
|
2017-06-13 04:41:29 +08:00
|
|
|
if upload.for_group_message && SiteSetting.allow_all_attachments_for_group_messages
|
2020-07-27 08:23:54 +08:00
|
|
|
return upload.original_filename =~ SiteSetting.blocked_attachment_filenames_regex
|
2016-06-28 04:26:05 +08:00
|
|
|
end
|
2016-03-01 05:39:24 +08:00
|
|
|
|
2014-07-15 09:15:17 +08:00
|
|
|
extension = File.extname(upload.original_filename)[1..-1] || ""
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2018-11-14 15:03:02 +08:00
|
|
|
if upload.for_site_setting &&
|
|
|
|
upload.user&.staff? &&
|
|
|
|
FileHelper.is_supported_image?(upload.original_filename)
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2019-07-31 11:16:03 +08:00
|
|
|
if upload.for_gravatar &&
|
|
|
|
FileHelper.supported_gravatar_extensions.include?(extension)
|
|
|
|
|
|
|
|
maximum_image_file_size(upload)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
if is_authorized?(upload, extension)
|
2018-09-10 10:22:45 +08:00
|
|
|
if FileHelper.is_supported_image?(upload.original_filename)
|
2014-04-15 04:55:57 +08:00
|
|
|
authorized_image_extension(upload, extension)
|
|
|
|
maximum_image_file_size(upload)
|
|
|
|
else
|
|
|
|
authorized_attachment_extension(upload, extension)
|
|
|
|
maximum_attachment_file_size(upload)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_authorized?(upload, extension)
|
2018-02-19 17:44:24 +08:00
|
|
|
extension_authorized?(upload, extension, authorized_extensions(upload))
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_image_extension(upload, extension)
|
2018-02-19 17:44:24 +08:00
|
|
|
extension_authorized?(upload, extension, authorized_images(upload))
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_image_file_size(upload)
|
|
|
|
maximum_file_size(upload, "image")
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_attachment_extension(upload, extension)
|
2018-02-19 17:44:24 +08:00
|
|
|
extension_authorized?(upload, extension, authorized_attachments(upload))
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_attachment_file_size(upload)
|
|
|
|
maximum_file_size(upload, "attachment")
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
def extensions_to_set(exts)
|
|
|
|
extensions = Set.new
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
exts
|
2016-10-21 01:53:41 +08:00
|
|
|
.gsub(/[\s\.]+/, "")
|
|
|
|
.downcase
|
2014-04-15 04:55:57 +08:00
|
|
|
.split("|")
|
2018-02-19 17:44:24 +08:00
|
|
|
.each { |extension| extensions << extension unless extension.include?("*") }
|
|
|
|
|
|
|
|
extensions
|
|
|
|
end
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
def authorized_extensions(upload)
|
2018-04-19 19:30:31 +08:00
|
|
|
extensions = if upload.for_theme
|
|
|
|
SiteSetting.theme_authorized_extensions
|
|
|
|
elsif upload.for_export
|
|
|
|
SiteSetting.export_authorized_extensions
|
|
|
|
else
|
|
|
|
SiteSetting.authorized_extensions
|
|
|
|
end
|
2018-02-19 17:44:24 +08:00
|
|
|
extensions_to_set(extensions)
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def authorized_images(upload)
|
2018-09-10 10:03:44 +08:00
|
|
|
authorized_extensions(upload) & FileHelper.supported_images
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def authorized_attachments(upload)
|
2018-09-10 10:03:44 +08:00
|
|
|
authorized_extensions(upload) - FileHelper.supported_images
|
2014-04-30 01:12:35 +08:00
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def authorizes_all_extensions?(upload)
|
2018-02-19 17:44:24 +08:00
|
|
|
if upload.user&.staff?
|
|
|
|
return true if SiteSetting.authorized_extensions_for_staff.include?("*")
|
|
|
|
end
|
2018-04-19 19:30:31 +08:00
|
|
|
extensions = if upload.for_theme
|
|
|
|
SiteSetting.theme_authorized_extensions
|
|
|
|
elsif upload.for_export
|
|
|
|
SiteSetting.export_authorized_extensions
|
|
|
|
else
|
|
|
|
SiteSetting.authorized_extensions
|
|
|
|
end
|
2017-05-10 05:20:28 +08:00
|
|
|
extensions.include?("*")
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
def extension_authorized?(upload, extension, extensions)
|
2017-05-10 05:20:28 +08:00
|
|
|
return true if authorizes_all_extensions?(upload)
|
2014-04-30 01:12:35 +08:00
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
staff_extensions = Set.new
|
|
|
|
if upload.user&.staff?
|
|
|
|
staff_extensions = extensions_to_set(SiteSetting.authorized_extensions_for_staff)
|
|
|
|
return true if staff_extensions.include?(extension.downcase)
|
|
|
|
end
|
|
|
|
|
2014-04-30 01:12:35 +08:00
|
|
|
unless authorized = extensions.include?(extension.downcase)
|
2018-02-19 17:44:24 +08:00
|
|
|
message = I18n.t("upload.unauthorized", authorized_extensions: (extensions | staff_extensions).to_a.join(", "))
|
2014-04-15 04:55:57 +08:00
|
|
|
upload.errors.add(:original_filename, message)
|
|
|
|
end
|
2014-04-30 01:12:35 +08:00
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
authorized
|
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_file_size(upload, type)
|
2018-07-31 13:45:31 +08:00
|
|
|
max_size_kb = if upload.for_export
|
|
|
|
SiteSetting.max_export_file_size_kb
|
|
|
|
else
|
2019-05-07 09:00:09 +08:00
|
|
|
SiteSetting.get("max_#{type}_size_kb")
|
2018-07-31 13:45:31 +08:00
|
|
|
end
|
2019-05-07 09:27:05 +08:00
|
|
|
|
2015-05-04 01:26:54 +08:00
|
|
|
max_size_bytes = max_size_kb.kilobytes
|
2014-04-30 01:12:35 +08:00
|
|
|
|
2015-05-04 01:26:54 +08:00
|
|
|
if upload.filesize > max_size_bytes
|
2014-04-15 04:55:57 +08:00
|
|
|
message = I18n.t("upload.#{type}s.too_large", max_size_kb: max_size_kb)
|
|
|
|
upload.errors.add(:filesize, message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|