2013-11-05 13:04:47 -05:00
|
|
|
require "digest/sha1"
|
2014-04-14 16:55:57 -04:00
|
|
|
require_dependency "image_sizer"
|
|
|
|
require_dependency "file_helper"
|
|
|
|
require_dependency "validators/upload_validator"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
class Upload < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
has_many :post_uploads, dependent: :destroy
|
2013-06-13 17:44:24 -04:00
|
|
|
has_many :posts, through: :post_uploads
|
2013-06-12 19:43:50 -04:00
|
|
|
|
2013-06-21 03:34:02 -04:00
|
|
|
has_many :optimized_images, dependent: :destroy
|
2013-06-16 04:39:48 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
validates_presence_of :filesize
|
|
|
|
validates_presence_of :original_filename
|
|
|
|
|
2014-04-14 16:55:57 -04:00
|
|
|
validates_with ::Validators::UploadValidator
|
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
def thumbnail(width = self.width, height = self.height)
|
2014-05-06 09:41:59 -04:00
|
|
|
optimized_images.find_by(width: width, height: height)
|
2013-06-16 19:00:25 -04:00
|
|
|
end
|
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
def has_thumbnail?(width, height)
|
2013-09-27 04:55:50 -04:00
|
|
|
thumbnail(width, height).present?
|
2013-06-16 19:00:25 -04:00
|
|
|
end
|
|
|
|
|
2013-09-27 04:55:50 -04:00
|
|
|
def create_thumbnail!(width, height)
|
2013-06-16 19:00:25 -04:00
|
|
|
return unless SiteSetting.create_thumbnails?
|
2013-06-16 20:46:42 -04:00
|
|
|
thumbnail = OptimizedImage.create_for(self, width, height)
|
2013-09-27 04:55:50 -04:00
|
|
|
if thumbnail
|
|
|
|
optimized_images << thumbnail
|
|
|
|
self.width = width
|
|
|
|
self.height = height
|
|
|
|
save!
|
|
|
|
end
|
2013-06-16 19:00:25 -04:00
|
|
|
end
|
|
|
|
|
2013-06-21 03:34:02 -04:00
|
|
|
def destroy
|
2013-06-19 15:51:41 -04:00
|
|
|
Upload.transaction do
|
2013-08-13 16:08:29 -04:00
|
|
|
Discourse.store.remove_upload(self)
|
2013-06-19 15:51:41 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-08-13 16:08:29 -04:00
|
|
|
def extension
|
|
|
|
File.extname(original_filename)
|
|
|
|
end
|
|
|
|
|
2014-04-15 11:15:47 -04:00
|
|
|
# options
|
|
|
|
# - content_type
|
|
|
|
# - origin
|
|
|
|
def self.create_for(user_id, file, filename, filesize, options = {})
|
2013-06-15 04:33:57 -04:00
|
|
|
# compute the sha
|
2014-04-14 16:55:57 -04:00
|
|
|
sha1 = Digest::SHA1.file(file).hexdigest
|
2013-06-15 04:33:57 -04:00
|
|
|
# check if the file has already been uploaded
|
2014-05-06 09:41:59 -04:00
|
|
|
upload = Upload.find_by(sha1: sha1)
|
2013-11-05 13:04:47 -05:00
|
|
|
# delete the previously uploaded file if there's been an error
|
|
|
|
if upload && upload.url.blank?
|
|
|
|
upload.destroy
|
|
|
|
upload = nil
|
|
|
|
end
|
|
|
|
# create the upload
|
|
|
|
unless upload
|
2014-04-14 16:55:57 -04:00
|
|
|
# initialize a new upload
|
|
|
|
upload = Upload.new(
|
2013-07-13 17:42:19 -04:00
|
|
|
user_id: user_id,
|
2014-04-14 16:55:57 -04:00
|
|
|
original_filename: filename,
|
2013-07-23 18:54:18 -04:00
|
|
|
filesize: filesize,
|
2013-07-13 17:42:19 -04:00
|
|
|
sha1: sha1,
|
2014-04-14 16:55:57 -04:00
|
|
|
url: ""
|
2013-07-31 17:26:34 -04:00
|
|
|
)
|
2014-04-14 16:55:57 -04:00
|
|
|
# trim the origin if any
|
2014-04-15 11:15:47 -04:00
|
|
|
upload.origin = options[:origin][0...1000] if options[:origin]
|
2014-04-14 16:55:57 -04:00
|
|
|
|
|
|
|
# deal with width & height for images
|
|
|
|
if FileHelper.is_image?(filename)
|
|
|
|
begin
|
|
|
|
# retrieve image info
|
|
|
|
image_info = FastImage.new(file, raise_on_failure: true)
|
|
|
|
# compute image aspect ratio
|
|
|
|
upload.width, upload.height = ImageSizer.resize(*image_info.size)
|
|
|
|
# make sure we're at the beginning of the file (FastImage moves the pointer)
|
|
|
|
file.rewind
|
|
|
|
rescue FastImage::ImageFetchFailure
|
|
|
|
upload.errors.add(:base, I18n.t("upload.images.fetch_failure"))
|
|
|
|
rescue FastImage::UnknownImageType
|
|
|
|
upload.errors.add(:base, I18n.t("upload.images.unknown_image_type"))
|
|
|
|
rescue FastImage::SizeNotFound
|
|
|
|
upload.errors.add(:base, I18n.t("upload.images.size_not_found"))
|
|
|
|
end
|
|
|
|
|
|
|
|
return upload unless upload.errors.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
# create a db record (so we can use the id)
|
|
|
|
return upload unless upload.save
|
|
|
|
|
2013-06-15 04:33:57 -04:00
|
|
|
# store the file and update its url
|
2014-04-15 11:15:47 -04:00
|
|
|
url = Discourse.store.store_upload(file, upload, options[:content_type])
|
2013-11-05 13:04:47 -05:00
|
|
|
if url.present?
|
|
|
|
upload.url = url
|
|
|
|
upload.save
|
|
|
|
else
|
2014-04-14 16:55:57 -04:00
|
|
|
upload.errors.add(:url, I18n.t("upload.store_failure", { upload_id: upload.id, user_id: user_id }))
|
2013-11-05 13:04:47 -05:00
|
|
|
end
|
2013-06-15 04:33:57 -04:00
|
|
|
end
|
2014-04-14 16:55:57 -04:00
|
|
|
|
2013-06-15 05:52:40 -04:00
|
|
|
# return the uploaded file
|
2013-04-07 11:52:46 -04:00
|
|
|
upload
|
|
|
|
end
|
|
|
|
|
2013-07-07 19:39:08 -04:00
|
|
|
def self.get_from_url(url)
|
2013-07-21 18:37:23 -04:00
|
|
|
# we store relative urls, so we need to remove any host/cdn
|
2013-11-05 13:04:47 -05:00
|
|
|
url = url.gsub(/^#{Discourse.asset_host}/i, "") if Discourse.asset_host.present?
|
2014-05-06 09:41:59 -04:00
|
|
|
Upload.find_by(url: url) if Discourse.store.has_been_uploaded?(url)
|
2013-07-07 19:39:08 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-05-23 22:48:32 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: uploads
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# original_filename :string(255) not null
|
|
|
|
# filesize :integer not null
|
|
|
|
# width :integer
|
|
|
|
# height :integer
|
|
|
|
# url :string(255) not null
|
2014-05-27 21:49:50 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2013-06-17 16:16:14 -04:00
|
|
|
# sha1 :string(40)
|
2013-12-05 01:40:35 -05:00
|
|
|
# origin :string(1000)
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2013-10-03 23:28:49 -04:00
|
|
|
# index_uploads_on_id_and_url (id,url)
|
|
|
|
# index_uploads_on_sha1 (sha1) UNIQUE
|
|
|
|
# index_uploads_on_url (url)
|
|
|
|
# index_uploads_on_user_id (user_id)
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|