-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e87e418
commit fca84ac
Showing
8 changed files
with
119 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Copyright 2025 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package gitgrep | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"strings" | ||
|
||
"code.gitea.io/gitea/modules/git" | ||
code_indexer "code.gitea.io/gitea/modules/indexer/code" | ||
"code.gitea.io/gitea/modules/setting" | ||
) | ||
|
||
func indexSettingToGitGrepPathspecList() (list []string) { | ||
for _, expr := range setting.Indexer.IncludePatterns { | ||
list = append(list, ":(glob)"+expr.PatternString()) | ||
} | ||
for _, expr := range setting.Indexer.ExcludePatterns { | ||
list = append(list, ":(glob,exclude)"+expr.PatternString()) | ||
} | ||
return list | ||
} | ||
|
||
func PerformSearch(ctx context.Context, page int, repoID int64, gitRepo *git.Repository, ref git.RefName, keyword string, isFuzzy bool) (searchResults []*code_indexer.Result, total int, err error) { | ||
// TODO: it should also respect ParseKeywordAsPhrase and clarify the "fuzzy" behavior | ||
res, err := git.GrepSearch(ctx, gitRepo, keyword, git.GrepOptions{ | ||
ContextLineNumber: 1, | ||
IsFuzzy: isFuzzy, | ||
RefName: ref.String(), | ||
PathspecList: indexSettingToGitGrepPathspecList(), | ||
}) | ||
if err != nil { | ||
// TODO: if no branch exists, it reports: exit status 128, fatal: this operation must be run in a work tree. | ||
return nil, 0, fmt.Errorf("git.GrepSearch: %w", err) | ||
} | ||
commitID, err := gitRepo.GetRefCommitID(ref.String()) | ||
if err != nil { | ||
return nil, 0, fmt.Errorf("gitRepo.GetRefCommitID: %w", err) | ||
} | ||
|
||
total = len(res) | ||
pageStart := min((page-1)*setting.UI.RepoSearchPagingNum, len(res)) | ||
pageEnd := min(page*setting.UI.RepoSearchPagingNum, len(res)) | ||
res = res[pageStart:pageEnd] | ||
for _, r := range res { | ||
searchResults = append(searchResults, &code_indexer.Result{ | ||
RepoID: repoID, | ||
Filename: r.Filename, | ||
CommitID: commitID, | ||
// UpdatedUnix: not supported yet | ||
// Language: not supported yet | ||
// Color: not supported yet | ||
Lines: code_indexer.HighlightSearchResultCode(r.Filename, "", r.LineNumbers, strings.Join(r.LineCodes, "\n")), | ||
}) | ||
} | ||
return searchResults, total, nil | ||
} |
2 changes: 1 addition & 1 deletion
2
routers/web/repo/search_test.go → modules/indexer/code/gitgrep/gitgrep_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2025 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package internal | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestParseKeywordAsPhrase(t *testing.T) { | ||
phrase, isPhrase := ParseKeywordAsPhrase(`a`) | ||
assert.Empty(t, phrase) | ||
assert.False(t, isPhrase) | ||
|
||
phrase, isPhrase = ParseKeywordAsPhrase(`"a"`) | ||
assert.Equal(t, "a", phrase) | ||
assert.True(t, isPhrase) | ||
|
||
phrase, isPhrase = ParseKeywordAsPhrase(`""\"""`) | ||
assert.Equal(t, `"\""`, phrase) | ||
assert.True(t, isPhrase) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters