2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-31 09:59:59 -05:00
|
|
|
module API
|
|
|
|
class Search < Grape::API
|
|
|
|
include PaginationParams
|
|
|
|
|
|
|
|
before { authenticate! }
|
|
|
|
|
|
|
|
helpers do
|
|
|
|
SCOPE_ENTITY = {
|
|
|
|
merge_requests: Entities::MergeRequestBasic,
|
|
|
|
issues: Entities::IssueBasic,
|
|
|
|
projects: Entities::BasicProjectDetails,
|
|
|
|
milestones: Entities::Milestone,
|
|
|
|
notes: Entities::Note,
|
2018-02-13 07:41:35 -05:00
|
|
|
commits: Entities::CommitDetail,
|
2018-01-31 09:59:59 -05:00
|
|
|
blobs: Entities::Blob,
|
|
|
|
wiki_blobs: Entities::Blob,
|
|
|
|
snippet_titles: Entities::Snippet,
|
2018-09-17 08:54:32 -04:00
|
|
|
snippet_blobs: Entities::Snippet,
|
|
|
|
users: Entities::UserBasic
|
2018-01-31 09:59:59 -05:00
|
|
|
}.freeze
|
|
|
|
|
|
|
|
def search(additional_params = {})
|
|
|
|
search_params = {
|
|
|
|
scope: params[:scope],
|
|
|
|
search: params[:search],
|
|
|
|
snippets: snippets?,
|
|
|
|
page: params[:page],
|
2018-02-06 11:53:42 -05:00
|
|
|
per_page: params[:per_page]
|
2018-01-31 09:59:59 -05:00
|
|
|
}.merge(additional_params)
|
|
|
|
|
|
|
|
results = SearchService.new(current_user, search_params).search_objects
|
|
|
|
|
|
|
|
process_results(results)
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_results(results)
|
2018-12-02 16:47:33 -05:00
|
|
|
paginate(results)
|
2018-01-31 09:59:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def snippets?
|
|
|
|
%w(snippet_blobs snippet_titles).include?(params[:scope]).to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def entity
|
|
|
|
SCOPE_ENTITY[params[:scope].to_sym]
|
|
|
|
end
|
2019-02-27 11:51:20 -05:00
|
|
|
|
|
|
|
def verify_search_scope!
|
|
|
|
# In EE we have additional validation requirements for searches.
|
|
|
|
# Defining this method here as a noop allows us to easily extend it in
|
|
|
|
# EE, without having to modify this file directly.
|
|
|
|
end
|
2018-12-19 08:49:46 -05:00
|
|
|
|
2019-01-17 13:27:20 -05:00
|
|
|
def check_users_search_allowed!
|
2019-03-15 03:50:36 -04:00
|
|
|
if params[:scope].to_sym == :users && Feature.disabled?(:users_search, default_enabled: true)
|
2019-01-17 13:27:20 -05:00
|
|
|
render_api_error!({ error: _("Scope not supported with disabled 'users_search' feature!") }, 400)
|
|
|
|
end
|
|
|
|
end
|
2018-01-31 09:59:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
resource :search do
|
|
|
|
desc 'Search on GitLab' do
|
|
|
|
detail 'This feature was introduced in GitLab 10.5.'
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :search, type: String, desc: 'The expression it should be searched for'
|
2019-02-06 14:55:58 -05:00
|
|
|
requires :scope,
|
|
|
|
type: String,
|
|
|
|
desc: 'The scope of the search',
|
|
|
|
values: Helpers::SearchHelpers.global_search_scopes
|
2018-01-31 09:59:59 -05:00
|
|
|
use :pagination
|
|
|
|
end
|
|
|
|
get do
|
2019-02-27 11:51:20 -05:00
|
|
|
verify_search_scope!
|
2019-01-17 13:27:20 -05:00
|
|
|
check_users_search_allowed!
|
2019-02-27 11:51:20 -05:00
|
|
|
|
2018-01-31 09:59:59 -05:00
|
|
|
present search, with: entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-08 07:18:17 -05:00
|
|
|
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
2018-01-31 09:59:59 -05:00
|
|
|
desc 'Search on GitLab' do
|
|
|
|
detail 'This feature was introduced in GitLab 10.5.'
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :id, type: String, desc: 'The ID of a group'
|
|
|
|
requires :search, type: String, desc: 'The expression it should be searched for'
|
2019-02-06 14:55:58 -05:00
|
|
|
requires :scope,
|
|
|
|
type: String,
|
|
|
|
desc: 'The scope of the search',
|
|
|
|
values: Helpers::SearchHelpers.group_search_scopes
|
2018-01-31 09:59:59 -05:00
|
|
|
use :pagination
|
|
|
|
end
|
2018-03-14 11:49:21 -04:00
|
|
|
get ':id/(-/)search' do
|
2019-02-27 11:51:20 -05:00
|
|
|
verify_search_scope!
|
2019-01-17 13:27:20 -05:00
|
|
|
check_users_search_allowed!
|
2019-02-27 11:51:20 -05:00
|
|
|
|
2018-02-13 07:41:35 -05:00
|
|
|
present search(group_id: user_group.id), with: entity
|
2018-01-31 09:59:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-08 07:18:17 -05:00
|
|
|
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
2018-01-31 09:59:59 -05:00
|
|
|
desc 'Search on GitLab' do
|
|
|
|
detail 'This feature was introduced in GitLab 10.5.'
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :id, type: String, desc: 'The ID of a project'
|
|
|
|
requires :search, type: String, desc: 'The expression it should be searched for'
|
2019-02-06 14:55:58 -05:00
|
|
|
requires :scope,
|
|
|
|
type: String,
|
|
|
|
desc: 'The scope of the search',
|
|
|
|
values: Helpers::SearchHelpers.project_search_scopes
|
2019-05-17 02:10:08 -04:00
|
|
|
optional :ref, type: String, desc: 'The name of a repository branch or tag. If not given, the default branch is used'
|
2018-01-31 09:59:59 -05:00
|
|
|
use :pagination
|
|
|
|
end
|
2018-03-14 11:49:21 -04:00
|
|
|
get ':id/(-/)search' do
|
2019-01-17 13:27:20 -05:00
|
|
|
check_users_search_allowed!
|
|
|
|
|
2019-05-17 02:10:08 -04:00
|
|
|
present search({ project_id: user_project.id, repository_ref: params[:ref] }), with: entity
|
2018-01-31 09:59:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
API::Search.prepend_if_ee('EE::API::Search')
|