First Commmit
This commit is contained in:
40
route/rule/rule_item_user.go
Normal file
40
route/rule/rule_item_user.go
Normal file
@@ -0,0 +1,40 @@
|
||||
package rule
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/sagernet/sing-box/adapter"
|
||||
F "github.com/sagernet/sing/common/format"
|
||||
)
|
||||
|
||||
var _ RuleItem = (*UserItem)(nil)
|
||||
|
||||
type UserItem struct {
|
||||
users []string
|
||||
userMap map[string]bool
|
||||
}
|
||||
|
||||
func NewUserItem(users []string) *UserItem {
|
||||
userMap := make(map[string]bool)
|
||||
for _, protocol := range users {
|
||||
userMap[protocol] = true
|
||||
}
|
||||
return &UserItem{
|
||||
users: users,
|
||||
userMap: userMap,
|
||||
}
|
||||
}
|
||||
|
||||
func (r *UserItem) Match(metadata *adapter.InboundContext) bool {
|
||||
if metadata.ProcessInfo == nil || metadata.ProcessInfo.UserName == "" {
|
||||
return false
|
||||
}
|
||||
return r.userMap[metadata.ProcessInfo.UserName]
|
||||
}
|
||||
|
||||
func (r *UserItem) String() string {
|
||||
if len(r.users) == 1 {
|
||||
return F.ToString("user=", r.users[0])
|
||||
}
|
||||
return F.ToString("user=[", strings.Join(r.users, " "), "]")
|
||||
}
|
||||
Reference in New Issue
Block a user