summaryrefslogtreecommitdiff
path: root/app/models/concerns/safe_url.rb
blob: febca7d241fc8bc26e8f15d317b37e8603df0a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module SafeUrl
  extend ActiveSupport::Concern

  def safe_url(usernames_whitelist: [])
    return if url.nil?

    uri = URI.parse(url)
    uri.password = '*****' if uri.password
    uri.user = '*****' if uri.user && !usernames_whitelist.include?(uri.user)
    uri.to_s
  rescue URI::Error
  end
end