50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
class SearchController < ApplicationController
|
|
skip_before_action :authenticate_user!
|
|
|
|
include SearchHelper
|
|
|
|
layout 'search'
|
|
|
|
def show
|
|
search_service = SearchService.new(current_user, params)
|
|
|
|
@project = search_service.project
|
|
@group = search_service.group
|
|
|
|
return if params[:search].blank?
|
|
|
|
@search_term = params[:search]
|
|
|
|
@scope = search_service.scope
|
|
@show_snippets = search_service.show_snippets?
|
|
@search_results = search_service.search_results
|
|
@search_objects = search_service.search_objects
|
|
|
|
check_single_commit_result
|
|
end
|
|
|
|
def autocomplete
|
|
term = params[:term]
|
|
|
|
if params[:project_id].present?
|
|
@project = Project.find_by(id: params[:project_id])
|
|
@project = nil unless can?(current_user, :read_project, @project)
|
|
end
|
|
|
|
@ref = params[:project_ref] if params[:project_ref].present?
|
|
|
|
render json: search_autocomplete_opts(term).to_json
|
|
end
|
|
|
|
private
|
|
|
|
def check_single_commit_result
|
|
if @search_results.single_commit_result?
|
|
only_commit = @search_results.objects('commits').first
|
|
query = params[:search].strip.downcase
|
|
found_by_commit_sha = Commit.valid_hash?(query) && only_commit.sha.start_with?(query)
|
|
|
|
redirect_to project_commit_path(@project, only_commit) if found_by_commit_sha
|
|
end
|
|
end
|
|
end
|