2013-02-06 03:16:51 +08:00
|
|
|
require 'digest/sha1'
|
2013-06-05 06:34:53 +08:00
|
|
|
require 'image_sizer'
|
|
|
|
require 's3'
|
|
|
|
require 'local_store'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
class Upload < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :topic
|
|
|
|
|
2013-06-13 07:43:50 +08:00
|
|
|
has_and_belongs_to_many :post
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
validates_presence_of :filesize
|
|
|
|
validates_presence_of :original_filename
|
|
|
|
|
2013-04-07 23:52:46 +08:00
|
|
|
def self.create_for(user_id, file, topic_id)
|
2013-06-05 06:34:53 +08:00
|
|
|
# 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-04-07 23:52:46 +08:00
|
|
|
|
|
|
|
upload = Upload.create!({
|
|
|
|
user_id: user_id,
|
|
|
|
topic_id: topic_id,
|
2013-06-05 06:34:53 +08:00
|
|
|
original_filename: file.original_filename,
|
2013-04-07 23:52:46 +08:00
|
|
|
filesize: File.size(file.tempfile),
|
2013-06-05 06:34:53 +08:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
url: ""
|
2013-04-07 23:52:46 +08:00
|
|
|
})
|
|
|
|
|
2013-06-05 06:34:53 +08:00
|
|
|
# make sure we're at the beginning of the file (FastImage is moving the pointer)
|
|
|
|
file.rewind
|
2013-05-31 09:13:37 +08:00
|
|
|
|
2013-06-05 06:34:53 +08:00
|
|
|
# store the file and update its url
|
|
|
|
upload.url = Upload.store_file(file, image_info, upload.id)
|
2013-04-07 23:52:46 +08:00
|
|
|
|
|
|
|
upload.save
|
|
|
|
|
|
|
|
upload
|
|
|
|
end
|
|
|
|
|
2013-06-05 06:34:53 +08:00
|
|
|
def self.store_file(file, image_info, upload_id)
|
|
|
|
return S3.store_file(file, image_info, upload_id) if SiteSetting.enable_s3_uploads?
|
|
|
|
return LocalStore.store_file(file, image_info, upload_id)
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-05-24 10:48:32 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: uploads
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# topic_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
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_uploads_on_forum_thread_id (topic_id)
|
|
|
|
# index_uploads_on_user_id (user_id)
|
|
|
|
#
|