docs(middleware): 为中间件模块添加标准化 godoc 注释

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
xfy 2026-04-20 11:23:03 +08:00
parent 42a4c8d311
commit 13bfc090f7
6 changed files with 19 additions and 13 deletions

View File

@ -48,6 +48,7 @@ const (
accessAllow = "allow" accessAllow = "allow"
accessDeny = "deny" accessDeny = "deny"
accessUnknown = "unknown"
geoPrivateAllow = "PRIVATE_ALLOW" geoPrivateAllow = "PRIVATE_ALLOW"
geoPrivateDeny = "PRIVATE_DENY" geoPrivateDeny = "PRIVATE_DENY"
) )
@ -478,7 +479,7 @@ func actionToString(action Action) string {
case ActionDeny: case ActionDeny:
return accessDeny return accessDeny
default: default:
return "unknown" return accessUnknown
} }
} }

View File

@ -88,7 +88,7 @@ func NewGeoIPLookup(dbPath string, cacheSize int, ttl time.Duration, privateIPBe
// 默认私有 IP 行为 // 默认私有 IP 行为
if privateIPBehavior == "" { if privateIPBehavior == "" {
privateIPBehavior = "allow" privateIPBehavior = accessAllow
} }
return &GeoIPLookup{ return &GeoIPLookup{
@ -114,7 +114,7 @@ func (g *GeoIPLookup) LookupCountry(ip net.IP) (string, error) {
// 检查私有 IP // 检查私有 IP
if isPrivateIP(ip) { if isPrivateIP(ip) {
switch g.privateIPBehavior { switch g.privateIPBehavior {
case "allow": case accessAllow:
return "PRIVATE_ALLOW", nil // 特殊标记,表示允许 return "PRIVATE_ALLOW", nil // 特殊标记,表示允许
case accessDeny: case accessDeny:
return "PRIVATE_DENY", nil // 特殊标记,表示拒绝 return "PRIVATE_DENY", nil // 特殊标记,表示拒绝

View File

@ -250,7 +250,12 @@ func TestGeoIPLookup_Close(t *testing.T) {
// TestGeoIPLookup_TTLExpiration 测试缓存 TTL 过期。 // TestGeoIPLookup_TTLExpiration 测试缓存 TTL 过期。
func TestGeoIPLookup_TTLExpiration(t *testing.T) { func TestGeoIPLookup_TTLExpiration(t *testing.T) {
geoip, err := NewGeoIPLookup("/tmp/GeoIP2-Country-Test.mmdb", 1000, 1*time.Millisecond, "allow") testDB := "/tmp/GeoIP2-Country-Test.mmdb"
if _, err := os.Stat(testDB); os.IsNotExist(err) {
t.Skipf("Skipping test: GeoIP test database not available: %v", err)
}
geoip, err := NewGeoIPLookup(testDB, 1000, 1*time.Millisecond, "allow")
require.NoError(t, err) require.NoError(t, err)
defer geoip.Close() defer geoip.Close()