123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- package dynamicproxy
- import (
- _ "embed"
- "net"
- "net/http"
- "sync"
- "imuslab.com/zoraxy/mod/access"
- "imuslab.com/zoraxy/mod/auth/sso/authelia"
- "imuslab.com/zoraxy/mod/dynamicproxy/dpcore"
- "imuslab.com/zoraxy/mod/dynamicproxy/loadbalance"
- "imuslab.com/zoraxy/mod/dynamicproxy/permissionpolicy"
- "imuslab.com/zoraxy/mod/dynamicproxy/redirection"
- "imuslab.com/zoraxy/mod/dynamicproxy/rewrite"
- "imuslab.com/zoraxy/mod/geodb"
- "imuslab.com/zoraxy/mod/info/logger"
- "imuslab.com/zoraxy/mod/statistic"
- "imuslab.com/zoraxy/mod/tlscert"
- )
- type ProxyType int
- const PassiveLoadBalanceNotifyTimeout = 60
- const (
- ProxyTypeRoot ProxyType = iota
- ProxyTypeHost
- ProxyTypeVdir
- )
- type ProxyHandler struct {
- Parent *Router
- }
- type RouterOption struct {
-
- HostUUID string
- HostVersion string
- Port int
- UseTls bool
- ForceTLSLatest bool
- NoCache bool
- ListenOnPort80 bool
- ForceHttpsRedirect bool
-
- TlsManager *tlscert.Manager
- RedirectRuleTable *redirection.RuleTable
- GeodbStore *geodb.Store
- AccessController *access.Controller
- StatisticCollector *statistic.Collector
- WebDirectory string
- LoadBalancer *loadbalance.RouteManager
-
- AutheliaRouter *authelia.AutheliaRouter
-
- Logger *logger.Logger
- }
- type Router struct {
- Option *RouterOption
- ProxyEndpoints *sync.Map
- Running bool
- Root *ProxyEndpoint
- mux http.Handler
- server *http.Server
- tlsListener net.Listener
- loadBalancer *loadbalance.RouteManager
- routingRules []*RoutingRule
- tlsRedirectStop chan bool
- rateLimterStop chan bool
- rateLimitCounter RequestCountPerIpTable
- }
- type BasicAuthCredentials struct {
- Username string
- PasswordHash string
- }
- type BasicAuthUnhashedCredentials struct {
- Username string
- Password string
- }
- type BasicAuthExceptionRule struct {
- PathPrefix string
- }
- type VirtualDirectoryEndpoint struct {
- MatchingPath string
- Domain string
- RequireTLS bool
- SkipCertValidations bool
- Disabled bool
- proxy *dpcore.ReverseProxy `json:"-"`
- parent *ProxyEndpoint `json:"-"`
- }
- type HeaderRewriteRules struct {
- UserDefinedHeaders []*rewrite.UserDefinedHeader
- RequestHostOverwrite string
- HSTSMaxAge int64
- EnablePermissionPolicyHeader bool
- PermissionPolicy *permissionpolicy.PermissionsPolicy
- DisableHopByHopHeaderRemoval bool
- }
- type AuthMethod int
- const (
- AuthMethodNone AuthMethod = iota
- AuthMethodBasic
- AuthMethodAuthelia
- AuthMethodOauth2
- )
- type AuthenticationProvider struct {
- AuthMethod AuthMethod
-
- BasicAuthCredentials []*BasicAuthCredentials
- BasicAuthExceptionRules []*BasicAuthExceptionRule
- BasicAuthGroupIDs []string
-
- AutheliaURL string
- UseHTTPS bool
- }
- type ProxyEndpoint struct {
- ProxyType ProxyType
- RootOrMatchingDomain string
- MatchingDomainAlias []string
- ActiveOrigins []*loadbalance.Upstream
- InactiveOrigins []*loadbalance.Upstream
- UseStickySession bool
- UseActiveLoadBalance bool
- Disabled bool
-
- BypassGlobalTLS bool
-
- VirtualDirectories []*VirtualDirectoryEndpoint
-
- HeaderRewriteRules *HeaderRewriteRules
- EnableWebsocketCustomHeaders bool
-
- AuthenticationProvider *AuthenticationProvider
-
- RequireRateLimit bool
- RateLimit int64
-
- DisableUptimeMonitor bool
-
- AccessFilterUUID string
-
- DefaultSiteOption int
- DefaultSiteValue string
-
- parent *Router `json:"-"`
- Tags []string
- }
- const (
- DefaultSite_InternalStaticWebServer = 0
- DefaultSite_ReverseProxy = 1
- DefaultSite_Redirect = 2
- DefaultSite_NotFoundPage = 3
- DefaultSite_NoResponse = 4
- DefaultSite_TeaPot = 418
- )
- var (
-
- page_forbidden []byte
-
- page_hosterror []byte
- )
|