mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 18:17:52 -05:00
36 lines
658 B
Go
36 lines
658 B
Go
package json
|
|
|
|
import (
|
|
"strings"
|
|
|
|
serialjson "github.com/v2ray/v2ray-core/common/serial/json"
|
|
)
|
|
|
|
type TagList map[string]bool
|
|
|
|
func NewTagList(tags []string) TagList {
|
|
list := TagList(make(map[string]bool))
|
|
for _, tag := range tags {
|
|
list[strings.TrimSpace(tag)] = true
|
|
}
|
|
return list
|
|
}
|
|
|
|
func (this *TagList) UnmarshalJSON(data []byte) error {
|
|
tags, err := serialjson.UnmarshalStringList(data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*this = NewTagList(tags)
|
|
return nil
|
|
}
|
|
|
|
type CacheConfig struct {
|
|
TrustedTags TagList `json:"trustedTags"`
|
|
}
|
|
|
|
func (this *CacheConfig) IsTrustedSource(tag string) bool {
|
|
_, found := this.TrustedTags[tag]
|
|
return found
|
|
}
|