discourse/app/models/upload.rb

123 lines
3.4 KiB
Ruby
Raw Normal View History

2013-11-06 02:04:47 +08:00
require "digest/sha1"
require "image_sizer"
2013-02-06 03:16:51 +08:00
class Upload < ActiveRecord::Base
belongs_to :user
2013-11-06 02:04:47 +08:00
has_many :post_uploads, dependent: :destroy
2013-06-14 05:44:24 +08:00
has_many :posts, through: :post_uploads
has_many :optimized_images, dependent: :destroy
2013-06-16 16:39:48 +08:00
2013-02-06 03:16:51 +08:00
validates_presence_of :filesize
validates_presence_of :original_filename
2013-11-06 02:04:47 +08:00
def thumbnail(width = self.width, height = self.height)
optimized_images.where(width: width, height: height).first
2013-06-17 07:00:25 +08:00
end
2013-11-06 02:04:47 +08:00
def has_thumbnail?(width, height)
2013-09-27 16:55:50 +08:00
thumbnail(width, height).present?
2013-06-17 07:00:25 +08:00
end
2013-09-27 16:55:50 +08:00
def create_thumbnail!(width, height)
2013-06-17 07:00:25 +08:00
return unless SiteSetting.create_thumbnails?
thumbnail = OptimizedImage.create_for(self, width, height)
2013-09-27 16:55:50 +08:00
if thumbnail
optimized_images << thumbnail
self.width = width
self.height = height
save!
end
2013-06-17 07:00:25 +08:00
end
def destroy
Upload.transaction do
2013-08-14 04:08:29 +08:00
Discourse.store.remove_upload(self)
super
end
end
2013-08-14 04:08:29 +08:00
def extension
File.extname(original_filename)
end
2013-11-06 02:04:47 +08:00
def self.create_for(user_id, file, filesize, origin = nil)
# compute the sha
sha1 = Digest::SHA1.file(file.tempfile).hexdigest
# check if the file has already been uploaded
2013-11-06 02:04:47 +08:00
upload = Upload.where(sha1: sha1).first
# 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
# deal with width & height for images
2013-07-11 04:54:05 +08:00
if SiteSetting.authorized_image?(file)
# retrieve image info
image_info = FastImage.new(file.tempfile, raise_on_failure: true)
# compute image aspect ratio
width, height = ImageSizer.resize(*image_info.size)
2013-07-11 04:54:05 +08:00
# make sure we're at the beginning of the file (FastImage is moving the pointer)
file.rewind
end
2013-11-06 02:04:47 +08:00
# trim the origin if any
origin = origin[0...1000] if origin
# create a db record (so we can use the id)
upload = Upload.create!(
user_id: user_id,
original_filename: file.original_filename,
filesize: filesize,
sha1: sha1,
url: "",
width: width,
height: height,
2013-11-06 02:04:47 +08:00
origin: origin,
)
# store the file and update its url
2013-11-06 02:04:47 +08:00
url = Discourse.store.store_upload(file, upload)
if url.present?
upload.url = url
upload.save
else
Rails.logger.error("Failed to store upload ##{upload.id} for user ##{user_id}")
end
end
2013-06-15 17:52:40 +08:00
# return the uploaded file
2013-04-07 23:52:46 +08:00
upload
end
2013-07-08 07:39:08 +08:00
def self.get_from_url(url)
# we store relative urls, so we need to remove any host/cdn
2013-11-06 02:04:47 +08:00
url = url.gsub(/^#{Discourse.asset_host}/i, "") if Discourse.asset_host.present?
Upload.where(url: url).first if Discourse.store.has_been_uploaded?(url)
2013-07-08 07:39:08 +08:00
end
2013-02-06 03:16:51 +08:00
end
# == 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
# sha1 :string(40)
2013-12-05 14:40:35 +08:00
# origin :string(1000)
#
# Indexes
#
# 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)
#