2013-02-05 14:16:51 -05:00
|
|
|
require 'digest/sha1'
|
2013-06-04 18:34:53 -04:00
|
|
|
require 'image_sizer'
|
2013-06-16 19:00:25 -04:00
|
|
|
require 'tempfile'
|
|
|
|
require 'pathname'
|
2013-07-16 18:06:47 -04:00
|
|
|
require_dependency 's3_store'
|
2013-07-10 16:54:05 -04:00
|
|
|
require_dependency 'local_store'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
class Upload < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
|
2013-06-13 17:44:24 -04:00
|
|
|
has_many :post_uploads
|
|
|
|
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
|
|
|
|
|
2013-06-16 19:00:25 -04:00
|
|
|
def thumbnail
|
2013-07-13 17:42:19 -04:00
|
|
|
optimized_images.where(width: width, height: height).first
|
2013-06-16 19:00:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def thumbnail_url
|
|
|
|
thumbnail.url if has_thumbnail?
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_thumbnail?
|
|
|
|
thumbnail.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_thumbnail!
|
|
|
|
return unless SiteSetting.create_thumbnails?
|
2013-06-22 07:38:42 -04:00
|
|
|
return if SiteSetting.enable_s3_uploads?
|
2013-06-16 19:00:25 -04:00
|
|
|
return if has_thumbnail?
|
2013-06-16 20:46:42 -04:00
|
|
|
thumbnail = OptimizedImage.create_for(self, width, height)
|
|
|
|
optimized_images << thumbnail if thumbnail
|
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
|
|
|
|
Upload.remove_file url
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-23 18:54:18 -04:00
|
|
|
def self.create_for(user_id, file, filesize)
|
2013-06-15 04:33:57 -04:00
|
|
|
# compute the sha
|
2013-06-17 16:16:14 -04:00
|
|
|
sha1 = Digest::SHA1.file(file.tempfile).hexdigest
|
2013-06-15 04:33:57 -04:00
|
|
|
# check if the file has already been uploaded
|
2013-07-07 19:39:08 -04:00
|
|
|
unless upload = Upload.where(sha1: sha1).first
|
2013-07-10 16:54:05 -04:00
|
|
|
# deal with width & heights for images
|
|
|
|
if SiteSetting.authorized_image?(file)
|
|
|
|
# retrieve image info
|
|
|
|
image_info = FastImage.new(file.tempfile, raise_on_failure: true)
|
|
|
|
# compute image aspect ratio
|
2013-07-13 17:42:19 -04:00
|
|
|
width, height = ImageSizer.resize(*image_info.size)
|
2013-07-10 16:54:05 -04:00
|
|
|
# make sure we're at the beginning of the file (FastImage is moving the pointer)
|
|
|
|
file.rewind
|
|
|
|
end
|
2013-07-13 17:42:19 -04:00
|
|
|
# create a db record (so we can use the id)
|
|
|
|
upload = Upload.create!({
|
|
|
|
user_id: user_id,
|
|
|
|
original_filename: file.original_filename,
|
2013-07-23 18:54:18 -04:00
|
|
|
filesize: filesize,
|
2013-07-13 17:42:19 -04:00
|
|
|
sha1: sha1,
|
|
|
|
url: "",
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
})
|
2013-06-15 04:33:57 -04:00
|
|
|
# store the file and update its url
|
2013-07-10 16:54:05 -04:00
|
|
|
upload.url = Upload.store_file(file, sha1, upload.id)
|
2013-06-15 05:52:40 -04:00
|
|
|
# save the url
|
2013-06-15 04:33:57 -04:00
|
|
|
upload.save
|
|
|
|
end
|
2013-06-15 05:52:40 -04:00
|
|
|
# return the uploaded file
|
2013-04-07 11:52:46 -04:00
|
|
|
upload
|
|
|
|
end
|
|
|
|
|
2013-07-10 16:54:05 -04:00
|
|
|
def self.store_file(file, sha1, upload_id)
|
2013-07-16 18:06:47 -04:00
|
|
|
return S3Store.store_file(file, sha1, upload_id) if SiteSetting.enable_s3_uploads?
|
2013-07-10 16:54:05 -04:00
|
|
|
return LocalStore.store_file(file, sha1, upload_id)
|
2013-06-04 18:34:53 -04:00
|
|
|
end
|
|
|
|
|
2013-06-19 15:51:41 -04:00
|
|
|
def self.remove_file(url)
|
2013-07-16 18:06:47 -04:00
|
|
|
return S3Store.remove_file(url) if SiteSetting.enable_s3_uploads?
|
2013-07-13 17:42:19 -04:00
|
|
|
return LocalStore.remove_file(url)
|
2013-06-19 15:51:41 -04:00
|
|
|
end
|
|
|
|
|
2013-06-22 07:38:42 -04:00
|
|
|
def self.has_been_uploaded?(url)
|
|
|
|
is_relative?(url) || is_local?(url) || is_on_s3?(url)
|
2013-06-16 04:21:01 -04:00
|
|
|
end
|
|
|
|
|
2013-06-22 07:38:42 -04:00
|
|
|
def self.is_relative?(url)
|
2013-07-21 18:37:23 -04:00
|
|
|
url.start_with?(LocalStore.directory)
|
2013-06-22 07:38:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.is_local?(url)
|
2013-07-10 16:54:05 -04:00
|
|
|
!SiteSetting.enable_s3_uploads? && url.start_with?(LocalStore.base_url)
|
2013-06-22 07:38:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.is_on_s3?(url)
|
2013-07-20 05:30:36 -04:00
|
|
|
SiteSetting.enable_s3_uploads? && url.start_with?(S3Store.base_url)
|
2013-06-16 04:21:01 -04:00
|
|
|
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
|
|
|
|
url = url.gsub(/^#{LocalStore.asset_host}/i, "") if LocalStore.asset_host.present?
|
2013-07-10 16:54:05 -04:00
|
|
|
Upload.where(url: url).first if 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
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2013-06-17 16:16:14 -04:00
|
|
|
# sha1 :string(40)
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2013-06-17 16:16:14 -04:00
|
|
|
# index_uploads_on_sha1 (sha1) UNIQUE
|
2013-06-22 07:38:42 -04:00
|
|
|
# index_uploads_on_url (url)
|
2013-06-16 20:48:58 -04:00
|
|
|
# index_uploads_on_user_id (user_id)
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|
2013-06-16 20:48:58 -04:00
|
|
|
|