mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
237 lines
6.3 KiB
Go
237 lines
6.3 KiB
Go
package services
|
|
|
|
import (
|
|
"context"
|
|
"github.com/TeaOSLab/EdgeAPI/internal/db/models"
|
|
rpcutils "github.com/TeaOSLab/EdgeAPI/internal/rpc/utils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/iplibrary"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
)
|
|
|
|
// IPLibraryService IP库服务
|
|
type IPLibraryService struct {
|
|
BaseService
|
|
}
|
|
|
|
// CreateIPLibrary 创建IP库
|
|
func (this *IPLibraryService) CreateIPLibrary(ctx context.Context, req *pb.CreateIPLibraryRequest) (*pb.CreateIPLibraryResponse, error) {
|
|
// 校验请求
|
|
_, _, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var tx = this.NullTx()
|
|
|
|
ipLibraryId, err := models.SharedIPLibraryDAO.CreateIPLibrary(tx, req.Type, req.FileId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &pb.CreateIPLibraryResponse{
|
|
IpLibraryId: ipLibraryId,
|
|
}, nil
|
|
}
|
|
|
|
// FindEnabledIPLibrary 查找单个IP库
|
|
func (this *IPLibraryService) FindEnabledIPLibrary(ctx context.Context, req *pb.FindEnabledIPLibraryRequest) (*pb.FindEnabledIPLibraryResponse, error) {
|
|
// 校验请求
|
|
_, _, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var tx = this.NullTx()
|
|
|
|
ipLibrary, err := models.SharedIPLibraryDAO.FindEnabledIPLibrary(tx, req.IpLibraryId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if ipLibrary == nil {
|
|
return &pb.FindEnabledIPLibraryResponse{IpLibrary: nil}, nil
|
|
}
|
|
|
|
// 文件相关
|
|
var pbFile *pb.File = nil
|
|
file, err := models.SharedFileDAO.FindEnabledFile(tx, int64(ipLibrary.FileId))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if file != nil {
|
|
pbFile = &pb.File{
|
|
Id: int64(file.Id),
|
|
Filename: file.Filename,
|
|
Size: int64(file.Size),
|
|
}
|
|
}
|
|
|
|
return &pb.FindEnabledIPLibraryResponse{
|
|
IpLibrary: &pb.IPLibrary{
|
|
Id: int64(ipLibrary.Id),
|
|
Type: ipLibrary.Type,
|
|
File: pbFile,
|
|
CreatedAt: int64(ipLibrary.CreatedAt),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// FindLatestIPLibraryWithType 查找最新的IP库
|
|
func (this *IPLibraryService) FindLatestIPLibraryWithType(ctx context.Context, req *pb.FindLatestIPLibraryWithTypeRequest) (*pb.FindLatestIPLibraryWithTypeResponse, error) {
|
|
// 校验请求
|
|
_, _, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeNode)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var tx = this.NullTx()
|
|
|
|
ipLibrary, err := models.SharedIPLibraryDAO.FindLatestIPLibraryWithType(tx, req.Type)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if ipLibrary == nil {
|
|
return &pb.FindLatestIPLibraryWithTypeResponse{IpLibrary: nil}, nil
|
|
}
|
|
|
|
// 文件相关
|
|
var pbFile *pb.File = nil
|
|
file, err := models.SharedFileDAO.FindEnabledFile(tx, int64(ipLibrary.FileId))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if file != nil {
|
|
pbFile = &pb.File{
|
|
Id: int64(file.Id),
|
|
Filename: file.Filename,
|
|
Size: int64(file.Size),
|
|
}
|
|
}
|
|
|
|
return &pb.FindLatestIPLibraryWithTypeResponse{
|
|
IpLibrary: &pb.IPLibrary{
|
|
Id: int64(ipLibrary.Id),
|
|
Type: ipLibrary.Type,
|
|
File: pbFile,
|
|
CreatedAt: int64(ipLibrary.CreatedAt),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// FindAllEnabledIPLibrariesWithType 列出某个类型的所有IP库
|
|
func (this *IPLibraryService) FindAllEnabledIPLibrariesWithType(ctx context.Context, req *pb.FindAllEnabledIPLibrariesWithTypeRequest) (*pb.FindAllEnabledIPLibrariesWithTypeResponse, error) {
|
|
// 校验请求
|
|
_, _, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var tx = this.NullTx()
|
|
|
|
ipLibraries, err := models.SharedIPLibraryDAO.FindAllEnabledIPLibrariesWithType(tx, req.Type)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
result := []*pb.IPLibrary{}
|
|
for _, library := range ipLibraries {
|
|
// 文件相关
|
|
var pbFile *pb.File = nil
|
|
file, err := models.SharedFileDAO.FindEnabledFile(tx, int64(library.FileId))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if file != nil {
|
|
pbFile = &pb.File{
|
|
Id: int64(file.Id),
|
|
Filename: file.Filename,
|
|
Size: int64(file.Size),
|
|
}
|
|
}
|
|
|
|
result = append(result, &pb.IPLibrary{
|
|
Id: int64(library.Id),
|
|
Type: library.Type,
|
|
File: pbFile,
|
|
CreatedAt: int64(library.CreatedAt),
|
|
})
|
|
}
|
|
return &pb.FindAllEnabledIPLibrariesWithTypeResponse{IpLibraries: result}, nil
|
|
}
|
|
|
|
// DeleteIPLibrary 删除IP库
|
|
func (this *IPLibraryService) DeleteIPLibrary(ctx context.Context, req *pb.DeleteIPLibraryRequest) (*pb.RPCSuccess, error) {
|
|
// 校验请求
|
|
_, err := this.ValidateAdmin(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var tx = this.NullTx()
|
|
|
|
err = models.SharedIPLibraryDAO.DisableIPLibrary(tx, req.IpLibraryId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return this.Success()
|
|
}
|
|
|
|
// LookupIPRegion 查询某个IP信息
|
|
func (this *IPLibraryService) LookupIPRegion(ctx context.Context, req *pb.LookupIPRegionRequest) (*pb.LookupIPRegionResponse, error) {
|
|
// 校验请求
|
|
_, _, err := this.ValidateAdminAndUser(ctx, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var result = iplibrary.LookupIP(req.Ip)
|
|
if result == nil || !result.IsOk() {
|
|
return &pb.LookupIPRegionResponse{IpRegion: nil}, nil
|
|
}
|
|
|
|
return &pb.LookupIPRegionResponse{IpRegion: &pb.IPRegion{
|
|
Country: result.CountryName(),
|
|
Region: "",
|
|
Province: result.ProvinceName(),
|
|
City: result.CityName(),
|
|
Isp: result.ProviderName(),
|
|
CountryId: result.CountryId(),
|
|
ProvinceId: result.ProvinceId(),
|
|
CityId: result.CityId(),
|
|
TownId: result.TownId(),
|
|
ProviderId: result.ProviderId(),
|
|
Summary: result.Summary(),
|
|
}}, nil
|
|
}
|
|
|
|
// LookupIPRegions 查询一组IP信息
|
|
func (this *IPLibraryService) LookupIPRegions(ctx context.Context, req *pb.LookupIPRegionsRequest) (*pb.LookupIPRegionsResponse, error) {
|
|
// 校验请求
|
|
_, _, err := this.ValidateAdminAndUser(ctx, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var result = map[string]*pb.IPRegion{}
|
|
if len(req.IpList) > 0 {
|
|
for _, ip := range req.IpList {
|
|
var info = iplibrary.LookupIP(ip)
|
|
if info != nil && info.IsOk() {
|
|
result[ip] = &pb.IPRegion{
|
|
Country: info.CountryName(),
|
|
Region: "",
|
|
Province: info.ProvinceName(),
|
|
City: info.CityName(),
|
|
Isp: info.ProviderName(),
|
|
CountryId: info.CountryId(),
|
|
ProvinceId: info.ProvinceId(),
|
|
CityId: info.CityId(),
|
|
TownId: info.TownId(),
|
|
ProviderId: info.ProviderId(),
|
|
Summary: info.Summary(),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return &pb.LookupIPRegionsResponse{IpRegionMap: result}, nil
|
|
}
|