Skip to content

Commit ddfa9e8

Browse files
committed
feat: add etag-support to let user can disable this feature manually
1 parent b7cb677 commit ddfa9e8

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

component/resource/vehicle.go

+16-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ const (
2121
dirMode os.FileMode = 0o755
2222
)
2323

24+
var (
25+
etag = false
26+
)
27+
28+
func ETag() bool {
29+
return etag
30+
}
31+
32+
func SetETag(b bool) {
33+
etag = b
34+
}
35+
2436
func safeWrite(path string, buf []byte) error {
2537
dir := filepath.Dir(path)
2638

@@ -103,7 +115,7 @@ func (h *HTTPVehicle) Read(ctx context.Context, oldHash types.HashType) (buf []b
103115
defer cancel()
104116
header := h.header
105117
setIfNoneMatch := false
106-
if oldHash.IsValid() {
118+
if etag && oldHash.IsValid() {
107119
hashBytes, etag := cachefile.Cache().GetETagWithHash(h.url)
108120
if oldHash.EqualBytes(hashBytes) && etag != "" {
109121
if header == nil {
@@ -132,7 +144,9 @@ func (h *HTTPVehicle) Read(ctx context.Context, oldHash types.HashType) (buf []b
132144
return
133145
}
134146
hash = types.MakeHash(buf)
135-
cachefile.Cache().SetETagWithHash(h.url, hash.Bytes(), resp.Header.Get("ETag"))
147+
if etag {
148+
cachefile.Cache().SetETagWithHash(h.url, hash.Bytes(), resp.Header.Get("ETag"))
149+
}
136150
return
137151
}
138152

config/config.go

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424
mihomoHttp "github.com/metacubex/mihomo/component/http"
2525
P "github.com/metacubex/mihomo/component/process"
2626
"github.com/metacubex/mihomo/component/resolver"
27+
"github.com/metacubex/mihomo/component/resource"
2728
"github.com/metacubex/mihomo/component/sniffer"
2829
tlsC "github.com/metacubex/mihomo/component/tls"
2930
"github.com/metacubex/mihomo/component/trie"
@@ -65,6 +66,7 @@ type General struct {
6566
Sniffing bool `json:"sniffing"`
6667
GlobalClientFingerprint string `json:"global-client-fingerprint"`
6768
GlobalUA string `json:"global-ua"`
69+
ETagSupport bool `json:"etag-support"`
6870
}
6971

7072
// Inbound config
@@ -381,6 +383,7 @@ type RawConfig struct {
381383
FindProcessMode P.FindProcessMode `yaml:"find-process-mode" json:"find-process-mode"`
382384
GlobalClientFingerprint string `yaml:"global-client-fingerprint" json:"global-client-fingerprint"`
383385
GlobalUA string `yaml:"global-ua" json:"global-ua"`
386+
ETagSupport bool `yaml:"etag-support" json:"etag-support"`
384387
KeepAliveIdle int `yaml:"keep-alive-idle" json:"keep-alive-idle"`
385388
KeepAliveInterval int `yaml:"keep-alive-interval" json:"keep-alive-interval"`
386389
DisableKeepAlive bool `yaml:"disable-keep-alive" json:"disable-keep-alive"`
@@ -444,6 +447,7 @@ func DefaultRawConfig() *RawConfig {
444447
TCPConcurrent: false,
445448
FindProcessMode: P.FindProcessStrict,
446449
GlobalUA: "clash.meta/" + C.Version,
450+
ETagSupport: true,
447451
DNS: RawDNS{
448452
Enable: false,
449453
IPv6: false,
@@ -690,6 +694,7 @@ func parseGeneral(cfg *RawConfig) (*General, error) {
690694
geodata.SetMmdbUrl(cfg.GeoXUrl.Mmdb)
691695
geodata.SetASNUrl(cfg.GeoXUrl.ASN)
692696
mihomoHttp.SetUA(cfg.GlobalUA)
697+
resource.SetETag(cfg.ETagSupport)
693698

694699
if cfg.KeepAliveIdle != 0 {
695700
N.KeepAliveIdle = time.Duration(cfg.KeepAliveIdle) * time.Second
@@ -755,6 +760,7 @@ func parseGeneral(cfg *RawConfig) (*General, error) {
755760
FindProcessMode: cfg.FindProcessMode,
756761
GlobalClientFingerprint: cfg.GlobalClientFingerprint,
757762
GlobalUA: cfg.GlobalUA,
763+
ETagSupport: cfg.ETagSupport,
758764
}, nil
759765
}
760766

hub/executor/executor.go

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import (
2222
"github.com/metacubex/mihomo/component/profile"
2323
"github.com/metacubex/mihomo/component/profile/cachefile"
2424
"github.com/metacubex/mihomo/component/resolver"
25+
"github.com/metacubex/mihomo/component/resource"
2526
"github.com/metacubex/mihomo/component/sniffer"
2627
tlsC "github.com/metacubex/mihomo/component/tls"
2728
"github.com/metacubex/mihomo/component/trie"
@@ -172,6 +173,7 @@ func GetGeneral() *config.General {
172173
Sniffing: tunnel.IsSniffing(),
173174
GlobalClientFingerprint: tlsC.GetGlobalFingerprint(),
174175
GlobalUA: mihomoHttp.UA(),
176+
ETagSupport: resource.ETag(),
175177
}
176178

177179
return general

0 commit comments

Comments
 (0)