module ActiveStorage::Blob::Identifiable

def identify_without_saving

def identify_without_saving
  unless identified?
    self.content_type = identify_content_type
    self.identified = true
  end
end