ip_info.go 3.28 KB
Newer Older
qiuqunfeng's avatar
qiuqunfeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
package controller

import (
	"time"

	"github.com/gin-gonic/gin"
	"gitlab.com/tensorsecurity-rd/waf-console/internal/model"
	"gitlab.com/tensorsecurity-rd/waf-console/internal/service"
	"gitlab.com/tensorsecurity-rd/waf-console/internal/utils"
)

type IpInfoController struct {
	service service.Service
	// controller.Api
}

var isMock bool

// func NewIpInfoController(apiKey string) *IpInfoController {
// 	mock := os.Getenv("MOCK")
// 	// var isMock bool
// 	if mock == "true" {
// 		isMock = true
// 	}

// 	useCachedIPInfo := os.Getenv("USE_IPINFO_CACHE")
// 	mode := os.Getenv("MODE")
// 	if mode == "private" {
// 		return &IpInfoController{
// 			service: service.NewIpServicePrivate(config.WeibuUrl, apiKey, useCachedIPInfo == "true"),
// 		}
// 	} else {
// 		return &IpInfoController{
// 			service: service.NewIpService(config.WeibuUrl, apiKey, useCachedIPInfo == "true"),
// 		}
// 	}
// }

func mockResponse(ctx *gin.Context) {
	ipInfo := model.IPInfo{
		Location: model.Location{
			Country:     "United States",
			Province:    "New York",
			City:        "New York City",
			Longitude:   -74.006,
			Latitude:    40.713,
			CountryCode: "US",
		},
		Carrier: "China mobile",
		OSSIntelligences: []model.Intelligence{
			{
				Source:     "ThreatBook Labs",
				Confidence: 70,
				Expired:    false,
				FindTime:   time.Now().UnixMilli(),
				UpdateTime: time.Now().UnixMilli(),
				IntelTypes: []string{},
				IntelTags:  []model.TagsClass{},
			},
		},
		OnlineIntelligences: []model.Intelligence{
			{
				Source:     "ThreatBook Labs",
				Confidence: 90,
				Expired:    true,
				FindTime:   time.Now().UnixMilli(),
				UpdateTime: time.Now().UnixMilli(),
				IntelTypes: []string{"aaa"},
				IntelTags: []model.TagsClass{
					{
						TagsType: "industry",
						Tags:     "aaaa",
					},
				},
			},
		},
		Ports: []model.Port{
			{
				Port:    80,
				Module:  "ddd",
				Product: "test",
				Version: "4",
				Detail:  "none",
			},
		},
		Samples: []model.Sample{
			{
				Hash:          "12344",
				ScanTime:      time.Now().UnixMilli(),
				Ratio:         "19/25",
				MalwareType:   "attck",
				MalwareFamily: "wwww",
			},
		},
		Cas: []model.CAS{
			{
				Protocol: "ssl",
				Port:     443,
				Period:   122,
				DigitalCertificate: model.Certificate{
					Subject:     "CloudFlare Origin Certificate",
					Fingerprint: "857b7363019f1bf550375d56fa1f483ffb72bdef",
					Purpose:     "SSL client|SSL server|Netscape SSL server|Any Purpose|Any Purpose CA|OCSP helper",
				},
			},
		},
		Rdnses: []model.RDNS{
			{
				RDNS:    "aa",
				GetTime: "",
			},
		},
		TagsClasses: []model.TagsClass{
			{
				TagsType: "hijacked",
				Tags:     "",
			},
		},
		Scene:       "测试",
		IsMalicious: true,
	}

	resp := &utils.SingleRespData{
		Item: ipInfo,
	}
	utils.AssembleResponse(ctx, resp, nil)
}

// func (c *IpInfoController) QueryIP(ctx *gin.Context) {
// 	ip := ctx.Param("ip")
// 	if isMock {
// 		logging.Get().Info().Msg("mock data")
// 		mockResponse(ctx)
// 		return
// 	}

// 	ipInfo, err := c.service.QueryIP(ip)
// 	if err != nil {
// 		logging.Get().Err(err).Msgf("query ip info")
// 		utils.AssembleResponse(ctx, nil, err)
// 		// ctx.JSON(http.StatusInternalServerError, err)
// 		return
// 	}

// 	resp := &utils.SingleRespData{
// 		Item: ipInfo,
// 	}
// 	utils.AssembleResponse(ctx, resp, nil)
// }