2013-06-16 20:46:42 -04:00
|
|
|
require "digest/sha1"
|
|
|
|
|
2013-06-16 04:39:48 -04:00
|
|
|
class OptimizedImage < ActiveRecord::Base
|
|
|
|
belongs_to :upload
|
|
|
|
|
2014-05-22 03:34:33 -04:00
|
|
|
def self.create_for(upload, width, height, opts={})
|
2013-11-05 13:04:47 -05:00
|
|
|
return unless width > 0 && height > 0
|
2013-07-07 19:39:08 -04:00
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
# do we already have that thumbnail?
|
2014-05-06 09:41:59 -04:00
|
|
|
thumbnail = find_by(upload_id: upload.id, width: width, height: height)
|
2013-06-16 20:46:42 -04:00
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
# make sure the previous thumbnail has not failed
|
|
|
|
if thumbnail && thumbnail.url.blank?
|
|
|
|
thumbnail.destroy
|
|
|
|
thumbnail = nil
|
2013-07-31 17:26:34 -04:00
|
|
|
end
|
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
# create the thumbnail otherwise
|
|
|
|
unless thumbnail
|
|
|
|
external_copy = Discourse.store.download(upload) if Discourse.store.external?
|
|
|
|
original_path = if Discourse.store.external?
|
2014-09-24 16:52:09 -04:00
|
|
|
external_copy.try(:path)
|
2013-11-05 13:04:47 -05:00
|
|
|
else
|
|
|
|
Discourse.store.path_for(upload)
|
|
|
|
end
|
|
|
|
|
2014-09-24 16:52:09 -04:00
|
|
|
if original_path.blank?
|
|
|
|
Rails.logger.error("Could not find file in the store located at url: #{upload.url}")
|
|
|
|
else
|
|
|
|
# create a temp file with the same extension as the original
|
|
|
|
extension = File.extname(original_path)
|
|
|
|
temp_file = Tempfile.new(["discourse-thumbnail", extension])
|
|
|
|
temp_path = temp_file.path
|
|
|
|
original_path += "[0]" unless opts[:allow_animation]
|
2013-06-16 20:46:42 -04:00
|
|
|
|
2014-09-24 16:52:09 -04:00
|
|
|
if resize(original_path, temp_path, width, height)
|
|
|
|
thumbnail = OptimizedImage.create!(
|
|
|
|
upload_id: upload.id,
|
|
|
|
sha1: Digest::SHA1.file(temp_path).hexdigest,
|
|
|
|
extension: File.extname(temp_path),
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
url: "",
|
|
|
|
)
|
|
|
|
# store the optimized image and update its url
|
|
|
|
url = Discourse.store.store_optimized_image(temp_file, thumbnail)
|
|
|
|
if url.present?
|
|
|
|
thumbnail.url = url
|
|
|
|
thumbnail.save
|
|
|
|
else
|
|
|
|
Rails.logger.error("Failed to store avatar #{size} for #{upload.url} from #{source}")
|
|
|
|
end
|
2013-11-05 13:04:47 -05:00
|
|
|
else
|
2014-09-24 16:52:09 -04:00
|
|
|
Rails.logger.error("Failed to create optimized image #{width}x#{height} for #{upload.url}")
|
2013-11-05 13:04:47 -05:00
|
|
|
end
|
2014-09-24 16:52:09 -04:00
|
|
|
|
|
|
|
# close && remove temp file
|
|
|
|
temp_file.close!
|
2013-11-05 13:04:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# make sure we remove the cached copy from external stores
|
|
|
|
external_copy.close! if Discourse.store.external?
|
|
|
|
end
|
2013-06-16 20:46:42 -04:00
|
|
|
|
|
|
|
thumbnail
|
2013-06-16 19:00:25 -04:00
|
|
|
end
|
|
|
|
|
2013-06-21 03:34:02 -04:00
|
|
|
def destroy
|
|
|
|
OptimizedImage.transaction do
|
2013-08-13 16:09:27 -04:00
|
|
|
Discourse.store.remove_optimized_image(self)
|
2013-06-21 03:34:02 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-22 03:34:33 -04:00
|
|
|
def self.resize(from, to, width, height)
|
2014-06-11 10:01:01 -04:00
|
|
|
# NOTE: ORDER is important!
|
2014-05-22 03:34:33 -04:00
|
|
|
instructions = %W{
|
|
|
|
#{from}
|
2014-06-11 10:01:01 -04:00
|
|
|
-background transparent
|
2014-06-04 12:54:08 -04:00
|
|
|
-gravity center
|
|
|
|
-thumbnail #{width}x#{height}^
|
|
|
|
-extent #{width}x#{height}
|
2014-05-27 01:38:11 -04:00
|
|
|
-interpolate bicubic
|
2014-05-22 03:34:33 -04:00
|
|
|
-unsharp 2x0.5+0.7+0
|
|
|
|
-quality 98
|
|
|
|
#{to}
|
|
|
|
}.join(" ")
|
|
|
|
|
|
|
|
`convert #{instructions}`
|
2014-07-04 07:26:06 -04:00
|
|
|
|
2014-07-04 10:05:50 -04:00
|
|
|
if $?.exitstatus == 0
|
|
|
|
ImageOptim.new.optimize_image(to) rescue nil
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2014-05-22 03:34:33 -04:00
|
|
|
end
|
|
|
|
|
2013-06-16 04:39:48 -04:00
|
|
|
end
|
2013-06-16 20:48:58 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: optimized_images
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
2013-06-16 22:02:17 -04:00
|
|
|
# sha1 :string(40) not null
|
|
|
|
# extension :string(10) not null
|
2013-06-16 20:48:58 -04:00
|
|
|
# width :integer not null
|
|
|
|
# height :integer not null
|
|
|
|
# upload_id :integer not null
|
2013-08-13 16:09:27 -04:00
|
|
|
# url :string(255) not null
|
2013-06-16 20:48:58 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_optimized_images_on_upload_id (upload_id)
|
|
|
|
# index_optimized_images_on_upload_id_and_width_and_height (upload_id,width,height) UNIQUE
|
|
|
|
#
|