mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-20 00:50:06 +08:00
Some checks are pending
Test / test (1.20, macos-13) (push) Waiting to run
Test / test (1.20, macos-latest) (push) Waiting to run
Test / test (1.20, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.20, ubuntu-latest) (push) Waiting to run
Test / test (1.20, windows-latest) (push) Waiting to run
Test / test (1.21, macos-13) (push) Waiting to run
Test / test (1.21, macos-latest) (push) Waiting to run
Test / test (1.21, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.21, ubuntu-latest) (push) Waiting to run
Test / test (1.21, windows-latest) (push) Waiting to run
Test / test (1.22, macos-13) (push) Waiting to run
Test / test (1.22, macos-latest) (push) Waiting to run
Test / test (1.22, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.22, ubuntu-latest) (push) Waiting to run
Test / test (1.22, windows-latest) (push) Waiting to run
Test / test (1.23, macos-13) (push) Waiting to run
Test / test (1.23, macos-latest) (push) Waiting to run
Test / test (1.23, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.23, ubuntu-latest) (push) Waiting to run
Test / test (1.23, windows-latest) (push) Waiting to run
Test / test (1.24, macos-13) (push) Waiting to run
Test / test (1.24, macos-latest) (push) Waiting to run
Test / test (1.24, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.24, ubuntu-latest) (push) Waiting to run
Test / test (1.24, windows-latest) (push) Waiting to run
Trigger CMFA Update / trigger-CMFA-update (push) Waiting to run
43 lines
842 B
Go
43 lines
842 B
Go
package common
|
|
|
|
import (
|
|
"strings"
|
|
|
|
C "github.com/metacubex/mihomo/constant"
|
|
"golang.org/x/net/idna"
|
|
)
|
|
|
|
type DomainSuffix struct {
|
|
*Base
|
|
suffix string
|
|
adapter string
|
|
}
|
|
|
|
func (ds *DomainSuffix) RuleType() C.RuleType {
|
|
return C.DomainSuffix
|
|
}
|
|
|
|
func (ds *DomainSuffix) Match(metadata *C.Metadata, helper C.RuleMatchHelper) (bool, string) {
|
|
domain := metadata.RuleHost()
|
|
return strings.HasSuffix(domain, "."+ds.suffix) || domain == ds.suffix, ds.adapter
|
|
}
|
|
|
|
func (ds *DomainSuffix) Adapter() string {
|
|
return ds.adapter
|
|
}
|
|
|
|
func (ds *DomainSuffix) Payload() string {
|
|
return ds.suffix
|
|
}
|
|
|
|
func NewDomainSuffix(suffix string, adapter string) *DomainSuffix {
|
|
punycode, _ := idna.ToASCII(strings.ToLower(suffix))
|
|
return &DomainSuffix{
|
|
Base: &Base{},
|
|
suffix: punycode,
|
|
adapter: adapter,
|
|
}
|
|
}
|
|
|
|
//var _ C.Rule = (*DomainSuffix)(nil)
|