mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-28 01:48:25 +00:00 
			
		
		
		
	* Fix validate() function to handle errors in embedded anon structs * Implement webhook branch filter See #2025, #3998.
		
			
				
	
	
		
			44 lines
		
	
	
		
			836 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			836 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package match
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"strings"
 | |
| 
 | |
| 	sutil "github.com/gobwas/glob/util/strings"
 | |
| )
 | |
| 
 | |
| type SuffixAny struct {
 | |
| 	Suffix     string
 | |
| 	Separators []rune
 | |
| }
 | |
| 
 | |
| func NewSuffixAny(s string, sep []rune) SuffixAny {
 | |
| 	return SuffixAny{s, sep}
 | |
| }
 | |
| 
 | |
| func (self SuffixAny) Index(s string) (int, []int) {
 | |
| 	idx := strings.Index(s, self.Suffix)
 | |
| 	if idx == -1 {
 | |
| 		return -1, nil
 | |
| 	}
 | |
| 
 | |
| 	i := sutil.LastIndexAnyRunes(s[:idx], self.Separators) + 1
 | |
| 
 | |
| 	return i, []int{idx + len(self.Suffix) - i}
 | |
| }
 | |
| 
 | |
| func (self SuffixAny) Len() int {
 | |
| 	return lenNo
 | |
| }
 | |
| 
 | |
| func (self SuffixAny) Match(s string) bool {
 | |
| 	if !strings.HasSuffix(s, self.Suffix) {
 | |
| 		return false
 | |
| 	}
 | |
| 	return sutil.IndexAnyRunes(s[:len(s)-len(self.Suffix)], self.Separators) == -1
 | |
| }
 | |
| 
 | |
| func (self SuffixAny) String() string {
 | |
| 	return fmt.Sprintf("<suffix_any:![%s]%s>", string(self.Separators), self.Suffix)
 | |
| }
 |