2017-10-19 15:07:18 +02:00
|
|
|
class AttestationTemplateSignatureUploader < BaseUploader
|
2017-06-08 14:16:48 +02:00
|
|
|
def root
|
2018-03-06 13:44:29 +01:00
|
|
|
Rails.root.join("public")
|
2017-06-08 14:16:48 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Choose what kind of storage to use for this uploader:
|
2018-04-18 12:24:37 +02:00
|
|
|
if Flipflop.remote_storage?
|
2017-06-08 14:16:48 +02:00
|
|
|
storage :fog
|
|
|
|
else
|
|
|
|
storage :file
|
|
|
|
end
|
|
|
|
|
|
|
|
# Override the directory where uploaded files will be stored.
|
|
|
|
# This is a sensible default for uploaders that are meant to be mounted:
|
|
|
|
def store_dir
|
2018-04-18 12:24:37 +02:00
|
|
|
if !Flipflop.remote_storage?
|
2017-06-08 14:16:48 +02:00
|
|
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Add a white list of extensions which are allowed to be uploaded.
|
|
|
|
# For images you might use something like this:
|
|
|
|
def extension_white_list
|
|
|
|
%w(jpg jpeg png)
|
|
|
|
end
|
2017-10-19 15:07:18 +02:00
|
|
|
|
|
|
|
def filename
|
|
|
|
if file.present?
|
|
|
|
"attestation-template-signature-#{secure_token}.#{file.extension.downcase}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def secure_token
|
|
|
|
model.signature_secure_token ||= SecureRandom.uuid
|
|
|
|
end
|
2017-06-08 14:16:48 +02:00
|
|
|
end
|