1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/app/models/active_storage/filename.rb

32 lines
518 B
Ruby
Raw Normal View History

class ActiveStorage::Filename
2017-06-30 13:12:58 -04:00
include Comparable
def initialize(filename)
@filename = filename
end
def extname
File.extname(@filename)
end
def extension
extname.from(1)
end
def base
File.basename(@filename, extname)
end
def sanitized
@filename.encode(Encoding::UTF_8, invalid: :replace, undef: :replace, replace: "<EFBFBD>").strip.tr("\u{202E}%$|:;/\t\r\n\\", "-")
end
def to_s
sanitized.to_s
end
def <=>(other)
to_s.downcase <=> other.to_s.downcase
end
end