-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: consider path prefix when matching path patterns (#3571)
- Loading branch information
Showing
13 changed files
with
181 additions
and
47 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,33 @@ | ||
package fsutils | ||
|
||
import "path/filepath" | ||
|
||
// Files combines different operations related to handling file paths and content. | ||
type Files struct { | ||
*LineCache | ||
pathPrefix string | ||
} | ||
|
||
func NewFiles(lc *LineCache, pathPrefix string) *Files { | ||
return &Files{ | ||
LineCache: lc, | ||
pathPrefix: pathPrefix, | ||
} | ||
} | ||
|
||
// WithPathPrefix takes a path that is relative to the current directory (as used in issues) | ||
// and adds the configured path prefix, if there is one. | ||
// The resulting path then can be shown to the user or compared against paths specified in the configuration. | ||
func (f *Files) WithPathPrefix(relativePath string) string { | ||
return WithPathPrefix(f.pathPrefix, relativePath) | ||
} | ||
|
||
// WithPathPrefix takes a path that is relative to the current directory (as used in issues) | ||
// and adds the configured path prefix, if there is one. | ||
// The resulting path then can be shown to the user or compared against paths specified in the configuration. | ||
func WithPathPrefix(pathPrefix, relativePath string) string { | ||
if pathPrefix == "" { | ||
return relativePath | ||
} | ||
return filepath.Join(pathPrefix, relativePath) | ||
} |
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
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
Oops, something went wrong.