b1cdb72381
Move avatar_background_color logic from helper to User::Avatar concern so it can be accessed from models. Include creator_id, creator_initials, and creator_avatar_color in native push notifications for local avatar rendering on iOS. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
62 lines
1.7 KiB
Ruby
62 lines
1.7 KiB
Ruby
require "zlib"
|
|
|
|
module User::Avatar
|
|
extend ActiveSupport::Concern
|
|
|
|
ALLOWED_AVATAR_CONTENT_TYPES = %w[ image/jpeg image/png image/gif image/webp ].freeze
|
|
MAX_AVATAR_DIMENSIONS = { width: 4096, height: 4096 }.freeze
|
|
AVATAR_COLORS = %w[
|
|
#AF2E1B #CC6324 #3B4B59 #BFA07A #ED8008 #ED3F1C #BF1B1B #736B1E #D07B53
|
|
#736356 #AD1D1D #BF7C2A #C09C6F #698F9C #7C956B #5D618F #3B3633 #67695E
|
|
].freeze
|
|
|
|
included do
|
|
has_one_attached :avatar do |attachable|
|
|
attachable.variant :thumb, resize_to_fill: [ 256, 256 ], process: :immediately
|
|
end
|
|
|
|
scope :with_avatars, -> { preload(:account, :avatar_attachment) }
|
|
|
|
validate :avatar_content_type_allowed, :avatar_dimensions_allowed, if: :avatar_attached?
|
|
end
|
|
|
|
def avatar_attached?
|
|
avatar.attached?
|
|
end
|
|
|
|
def avatar_thumbnail
|
|
avatar.variable? ? avatar.variant(:thumb) : avatar
|
|
end
|
|
|
|
def avatar_background_color
|
|
AVATAR_COLORS[Zlib.crc32(to_param) % AVATAR_COLORS.size]
|
|
end
|
|
|
|
# Avatars are always publicly accessible
|
|
def publicly_accessible?
|
|
true
|
|
end
|
|
|
|
private
|
|
def avatar_content_type_allowed
|
|
if !ALLOWED_AVATAR_CONTENT_TYPES.include?(avatar.content_type)
|
|
errors.add(:avatar, "must be a JPEG, PNG, GIF, or WebP image")
|
|
end
|
|
end
|
|
|
|
def avatar_dimensions_allowed
|
|
return unless avatar.blob.analyzed? || avatar.blob.analyze
|
|
|
|
width = avatar.blob.metadata[:width]
|
|
height = avatar.blob.metadata[:height]
|
|
|
|
if width && width > MAX_AVATAR_DIMENSIONS[:width]
|
|
errors.add(:avatar, "width must be less than #{MAX_AVATAR_DIMENSIONS[:width]}px")
|
|
end
|
|
|
|
if height && height > MAX_AVATAR_DIMENSIONS[:height]
|
|
errors.add(:avatar, "height must be less than #{MAX_AVATAR_DIMENSIONS[:height]}px")
|
|
end
|
|
end
|
|
end
|