2023-02-09 22:18:06 +03:00
|
|
|
package xray
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2024-03-11 00:31:24 +03:00
|
|
|
|
2023-02-09 22:18:06 +03:00
|
|
|
"x-ui/util/json_util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2024-03-11 11:16:54 +03:00
|
|
|
LogConfig json_util.RawMessage `json:"log"`
|
|
|
|
RouterConfig json_util.RawMessage `json:"routing"`
|
|
|
|
DNSConfig json_util.RawMessage `json:"dns"`
|
|
|
|
InboundConfigs []InboundConfig `json:"inbounds"`
|
|
|
|
OutboundConfigs json_util.RawMessage `json:"outbounds"`
|
|
|
|
Transport json_util.RawMessage `json:"transport"`
|
|
|
|
Policy json_util.RawMessage `json:"policy"`
|
|
|
|
API json_util.RawMessage `json:"api"`
|
|
|
|
Stats json_util.RawMessage `json:"stats"`
|
|
|
|
Reverse json_util.RawMessage `json:"reverse"`
|
|
|
|
FakeDNS json_util.RawMessage `json:"fakedns"`
|
|
|
|
Observatory json_util.RawMessage `json:"observatory"`
|
|
|
|
BurstObservatory json_util.RawMessage `json:"burstObservatory"`
|
2023-02-09 22:18:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) Equals(other *Config) bool {
|
|
|
|
if len(c.InboundConfigs) != len(other.InboundConfigs) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for i, inbound := range c.InboundConfigs {
|
|
|
|
if !inbound.Equals(&other.InboundConfigs[i]) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.LogConfig, other.LogConfig) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.RouterConfig, other.RouterConfig) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.DNSConfig, other.DNSConfig) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.OutboundConfigs, other.OutboundConfigs) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.Transport, other.Transport) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.Policy, other.Policy) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.API, other.API) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.Stats, other.Stats) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.Reverse, other.Reverse) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !bytes.Equal(c.FakeDNS, other.FakeDNS) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|