30 lines
832 B
Ruby
30 lines
832 B
Ruby
class ProfileImage
|
|
include CloudinaryHelper
|
|
attr_accessor :resource, :image_link, :backup_link
|
|
|
|
def initialize(resource)
|
|
@resource = resource
|
|
@image_link = resource.profile_image_url
|
|
@backup_link = "https://thepracticaldev.s3.amazonaws.com/i/99mvlsfu5tfj9m7ku25d.png"
|
|
end
|
|
|
|
def get(width: 120)
|
|
cl_image_path(get_link,
|
|
type: "fetch",
|
|
crop: "fill",
|
|
width: width,
|
|
height: width,
|
|
quality: "auto",
|
|
flags: "progressive",
|
|
fetch_format: "auto",
|
|
sign_url: true)
|
|
end
|
|
|
|
def get_link
|
|
image_link || backup_link
|
|
end
|
|
|
|
def get_external_link
|
|
image_link ? "#{ApplicationConfig['APP_PROTOCOL']}#{ApplicationConfig['APP_DOMAIN']}#{image_link}" : backup_link
|
|
end
|
|
end
|