The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

45 lines
1.0 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: site_uploads
  5. #
  6. # id :integer not null, primary key
  7. # var :string default(""), not null
  8. # file_file_name :string
  9. # file_content_type :string
  10. # file_file_size :integer
  11. # file_updated_at :datetime
  12. # meta :json
  13. # created_at :datetime not null
  14. # updated_at :datetime not null
  15. #
  16. class SiteUpload < ApplicationRecord
  17. has_attached_file :file
  18. validates_attachment_content_type :file, content_type: /\Aimage\/.*\z/
  19. validates :var, presence: true, uniqueness: true
  20. before_save :set_meta
  21. after_commit :clear_cache
  22. def cache_key
  23. "site_uploads/#{var}"
  24. end
  25. private
  26. def set_meta
  27. tempfile = file.queued_for_write[:original]
  28. return if tempfile.nil?
  29. geometry = Paperclip::Geometry.from_file(tempfile)
  30. self.meta = { width: geometry.width.to_i, height: geometry.height.to_i }
  31. end
  32. def clear_cache
  33. Rails.cache.delete(cache_key)
  34. end
  35. end