BigW Consortium Gitlab

redirect_route.rb 653 Bytes
Newer Older
1
class RedirectRoute < ActiveRecord::Base
2
  belongs_to :source, polymorphic: true # rubocop:disable Cop/PolymorphicAssociations
3 4 5 6 7 8 9

  validates :source, presence: true

  validates :path,
    length: { within: 1..255 },
    presence: true,
    uniqueness: { case_sensitive: false }
10

11 12 13 14 15 16
  scope :matching_path_and_descendants, -> (path) do
    wheres = if Gitlab::Database.postgresql?
               'LOWER(redirect_routes.path) = LOWER(?) OR LOWER(redirect_routes.path) LIKE LOWER(?)'
             else
               'redirect_routes.path = ? OR redirect_routes.path LIKE ?'
             end
17

18 19
    where(wheres, path, "#{sanitize_sql_like(path)}/%")
  end
20
end