Welcome to mirror list, hosted at ThFree Co, Russian Federation.

safe_url.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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