Commit 5e829934 authored by Sean McGivern's avatar Sean McGivern

Merge branch '42934-search-api-fix' into 'master'

Add information about projects when searching in wiki_blobs, blobs, commits scopes

Closes #42934

See merge request gitlab-org/gitlab-ce!17095
parents e7595c10 b0b4ae18
...@@ -116,6 +116,10 @@ class Commit ...@@ -116,6 +116,10 @@ class Commit
raw.id raw.id
end end
def project_id
project.id
end
def ==(other) def ==(other)
other.is_a?(self.class) && raw == other.raw other.is_a?(self.class) && raw == other.raw
end end
......
...@@ -49,6 +49,7 @@ following locations: ...@@ -49,6 +49,7 @@ following locations:
- [Repositories](repositories.md) - [Repositories](repositories.md)
- [Repository Files](repository_files.md) - [Repository Files](repository_files.md)
- [Runners](runners.md) - [Runners](runners.md)
- [Search](search.md)
- [Services](services.md) - [Services](services.md)
- [Settings](settings.md) - [Settings](settings.md)
- [Sidekiq metrics](sidekiq_metrics.md) - [Sidekiq metrics](sidekiq_metrics.md)
......
...@@ -737,7 +737,8 @@ Example response: ...@@ -737,7 +737,8 @@ Example response:
"filename": "home.md", "filename": "home.md",
"id": null, "id": null,
"ref": "master", "ref": "master",
"startline": 5 "startline": 5,
"project_id": 6
} }
] ]
``` ```
...@@ -767,7 +768,8 @@ Example response: ...@@ -767,7 +768,8 @@ Example response:
"authored_date": "2013-02-18T22:02:54.000Z", "authored_date": "2013-02-18T22:02:54.000Z",
"committer_name": "angus croll", "committer_name": "angus croll",
"committer_email": "anguscroll@gmail.com", "committer_email": "anguscroll@gmail.com",
"committed_date": "2013-02-18T22:02:54.000Z" "committed_date": "2013-02-18T22:02:54.000Z",
"project_id": 6
} }
] ]
``` ```
...@@ -789,7 +791,8 @@ Example response: ...@@ -789,7 +791,8 @@ Example response:
"filename": "README.md", "filename": "README.md",
"id": null, "id": null,
"ref": "master", "ref": "master",
"startline": 46 "startline": 46,
"project_id": 6
} }
] ]
``` ```
......
...@@ -274,6 +274,7 @@ module API ...@@ -274,6 +274,7 @@ module API
expose :stats, using: Entities::CommitStats, if: :stats expose :stats, using: Entities::CommitStats, if: :stats
expose :status expose :status
expose :last_pipeline, using: 'API::Entities::PipelineBasic' expose :last_pipeline, using: 'API::Entities::PipelineBasic'
expose :project_id
end end
class BasicRef < Grape::Entity class BasicRef < Grape::Entity
...@@ -1176,6 +1177,7 @@ module API ...@@ -1176,6 +1177,7 @@ module API
expose :id expose :id
expose :ref expose :ref
expose :startline expose :startline
expose :project_id
end end
end end
end end
...@@ -11,7 +11,7 @@ module API ...@@ -11,7 +11,7 @@ module API
projects: Entities::BasicProjectDetails, projects: Entities::BasicProjectDetails,
milestones: Entities::Milestone, milestones: Entities::Milestone,
notes: Entities::Note, notes: Entities::Note,
commits: Entities::Commit, commits: Entities::CommitDetail,
blobs: Entities::Blob, blobs: Entities::Blob,
wiki_blobs: Entities::Blob, wiki_blobs: Entities::Blob,
snippet_titles: Entities::Snippet, snippet_titles: Entities::Snippet,
...@@ -35,7 +35,7 @@ module API ...@@ -35,7 +35,7 @@ module API
def process_results(results) def process_results(results)
case params[:scope] case params[:scope]
when 'wiki_blobs' when 'wiki_blobs'
paginate(results).map { |blob| Gitlab::ProjectSearchResults.parse_search_result(blob) } paginate(results).map { |blob| Gitlab::ProjectSearchResults.parse_search_result(blob, user_project) }
when 'blobs' when 'blobs'
paginate(results).map { |blob| blob[1] } paginate(results).map { |blob| blob[1] }
else else
...@@ -85,9 +85,7 @@ module API ...@@ -85,9 +85,7 @@ module API
use :pagination use :pagination
end end
get ':id/-/search' do get ':id/-/search' do
group = find_group!(params[:id]) present search(group_id: user_group.id), with: entity
present search(group_id: group.id), with: entity
end end
end end
...@@ -106,9 +104,7 @@ module API ...@@ -106,9 +104,7 @@ module API
use :pagination use :pagination
end end
get ':id/-/search' do get ':id/-/search' do
project = find_project!(params[:id]) present search(project_id: user_project.id), with: entity
present search(project_id: project.id), with: entity
end end
end end
end end
......
...@@ -28,7 +28,7 @@ module Gitlab ...@@ -28,7 +28,7 @@ module Gitlab
def find_by_content(query) def find_by_content(query)
results = repository.search_files_by_content(query, ref).first(BATCH_SIZE) results = repository.search_files_by_content(query, ref).first(BATCH_SIZE)
results.map { |result| Gitlab::ProjectSearchResults.parse_search_result(result) } results.map { |result| Gitlab::ProjectSearchResults.parse_search_result(result, project) }
end end
def find_by_filename(query, except: []) def find_by_filename(query, except: [])
...@@ -45,7 +45,8 @@ module Gitlab ...@@ -45,7 +45,8 @@ module Gitlab
basename: File.basename(blob.path), basename: File.basename(blob.path),
ref: ref, ref: ref,
startline: 1, startline: 1,
data: blob.data data: blob.data,
project: project
) )
end end
end end
......
...@@ -41,7 +41,7 @@ module Gitlab ...@@ -41,7 +41,7 @@ module Gitlab
@commits_count ||= commits.count @commits_count ||= commits.count
end end
def self.parse_search_result(result) def self.parse_search_result(result, project = nil)
ref = nil ref = nil
filename = nil filename = nil
basename = nil basename = nil
...@@ -66,7 +66,8 @@ module Gitlab ...@@ -66,7 +66,8 @@ module Gitlab
basename: basename, basename: basename,
ref: ref, ref: ref,
startline: startline, startline: startline,
data: data data: data,
project_id: project ? project.id : nil
) )
end end
......
module Gitlab module Gitlab
class SearchResults class SearchResults
class FoundBlob class FoundBlob
attr_reader :id, :filename, :basename, :ref, :startline, :data attr_reader :id, :filename, :basename, :ref, :startline, :data, :project_id
def initialize(opts = {}) def initialize(opts = {})
@id = opts.fetch(:id, nil) @id = opts.fetch(:id, nil)
...@@ -11,6 +11,7 @@ module Gitlab ...@@ -11,6 +11,7 @@ module Gitlab
@startline = opts.fetch(:startline, nil) @startline = opts.fetch(:startline, nil)
@data = opts.fetch(:data, nil) @data = opts.fetch(:data, nil)
@per_page = opts.fetch(:per_page, 20) @per_page = opts.fetch(:per_page, 20)
@project_id = opts.fetch(:project_id, nil)
end end
def path def path
......
...@@ -7,11 +7,12 @@ ...@@ -7,11 +7,12 @@
"data": { "type": "string" }, "data": { "type": "string" },
"filename": { "type": ["string"] }, "filename": { "type": ["string"] },
"id": { "type": ["string", "null"] }, "id": { "type": ["string", "null"] },
"project_id": { "type": "integer" },
"ref": { "type": "string" }, "ref": { "type": "string" },
"startline": { "type": "integer" } "startline": { "type": "integer" }
}, },
"required": [ "required": [
"basename", "data", "filename", "id", "ref", "startline" "basename", "data", "filename", "id", "ref", "startline", "project_id"
], ],
"additionalProperties": false "additionalProperties": false
} }
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
{ "$ref": "basic.json" }, { "$ref": "basic.json" },
{ {
"required" : [ "required" : [
"stats",
"status", "status",
"last_pipeline" "last_pipeline",
"project_id"
], ],
"properties": { "properties": {
"stats": { "$ref": "../commit_stats.json" }, "stats": { "$ref": "../commit_stats.json" },
...@@ -16,7 +16,8 @@ ...@@ -16,7 +16,8 @@
{ "type": "null" }, { "type": "null" },
{ "$ref": "../pipeline/basic.json" } { "$ref": "../pipeline/basic.json" }
] ]
} },
"project_id": { "type": "integer" }
} }
} }
] ]
......
{
"type": "array",
"items": { "$ref": "commit/detail.json" }
}
...@@ -295,7 +295,7 @@ describe API::Search do ...@@ -295,7 +295,7 @@ describe API::Search do
get api("/projects/#{repo_project.id}/-/search", user), scope: 'commits', search: '498214de67004b1da3d820901307bed2a68a8ef6' get api("/projects/#{repo_project.id}/-/search", user), scope: 'commits', search: '498214de67004b1da3d820901307bed2a68a8ef6'
end end
it_behaves_like 'response is correct', schema: 'public_api/v4/commits' it_behaves_like 'response is correct', schema: 'public_api/v4/commits_details'
end end
context 'for commits scope with project path as id' do context 'for commits scope with project path as id' do
...@@ -303,7 +303,7 @@ describe API::Search do ...@@ -303,7 +303,7 @@ describe API::Search do
get api("/projects/#{CGI.escape(repo_project.full_path)}/-/search", user), scope: 'commits', search: '498214de67004b1da3d820901307bed2a68a8ef6' get api("/projects/#{CGI.escape(repo_project.full_path)}/-/search", user), scope: 'commits', search: '498214de67004b1da3d820901307bed2a68a8ef6'
end end
it_behaves_like 'response is correct', schema: 'public_api/v4/commits' it_behaves_like 'response is correct', schema: 'public_api/v4/commits_details'
end end
context 'for blobs scope' do context 'for blobs scope' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment