debian-mirror-gitlab/lib/gitlab/file_finder.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.6 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
# This class finds files in a repository by name and content
# the result is joined and sorted by file name
module Gitlab
class FileFinder
attr_reader :project, :ref
2018-03-17 18:26:18 +05:30
delegate :repository, to: :project
2017-09-10 17:25:29 +05:30
def initialize(project, ref)
@project = project
@ref = ref
end
2020-03-13 15:44:24 +05:30
def find(query, content_match_cutoff: nil)
2019-02-15 15:39:39 +05:30
query = Gitlab::Search::Query.new(query, encode_binary: true) do
2019-12-26 22:10:19 +05:30
filter :filename, matcher: ->(filter, blob) { blob.binary_path =~ /#{filter[:regex_value]}$/i }
filter :path, matcher: ->(filter, blob) { blob.binary_path =~ /#{filter[:regex_value]}/i }
filter :extension, matcher: ->(filter, blob) { blob.binary_path =~ /\.#{filter[:regex_value]}$/i }
2018-11-08 19:23:39 +05:30
end
2020-03-13 15:44:24 +05:30
content_match_cutoff = nil if query.filters.any?
files = find_by_path(query.term) + find_by_content(query.term, { limit: content_match_cutoff })
2017-09-10 17:25:29 +05:30
2019-02-15 15:39:39 +05:30
files = query.filter_results(files) if query.filters.any?
2018-11-08 19:23:39 +05:30
2019-02-15 15:39:39 +05:30
files
2018-03-17 18:26:18 +05:30
end
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
private
2017-09-10 17:25:29 +05:30
2020-03-13 15:44:24 +05:30
def find_by_content(query, options)
repository.search_files_by_content(query, ref, options).map do |result|
2019-02-15 15:39:39 +05:30
Gitlab::Search::FoundBlob.new(content_match: result, project: project, ref: ref, repository: repository)
2018-12-23 12:14:25 +05:30
end
2018-11-08 19:23:39 +05:30
end
2019-12-26 22:10:19 +05:30
def find_by_path(query)
search_paths(query).map do |path|
2020-03-13 15:44:24 +05:30
Gitlab::Search::FoundBlob.new(blob_path: path, path: path, project: project, ref: ref, repository: repository)
2019-02-15 15:39:39 +05:30
end
2019-01-03 12:48:30 +05:30
end
2020-07-28 23:09:34 +05:30
# Overridden in Gitlab::WikiFileFinder
2019-12-26 22:10:19 +05:30
def search_paths(query)
2019-02-15 15:39:39 +05:30
repository.search_files_by_name(query, ref)
2018-11-08 19:23:39 +05:30
end
2017-09-10 17:25:29 +05:30
end
end