mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 07:50:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			248 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			248 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package services
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"github.com/TeaOSLab/EdgeAPI/internal/db/models"
 | 
						|
	"github.com/TeaOSLab/EdgeAPI/internal/db/models/regions"
 | 
						|
	"github.com/TeaOSLab/EdgeAPI/internal/iplibrary"
 | 
						|
	rpcutils "github.com/TeaOSLab/EdgeAPI/internal/rpc/utils"
 | 
						|
	"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
 | 
						|
	}
 | 
						|
 | 
						|
	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
 | 
						|
	}
 | 
						|
 | 
						|
	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
 | 
						|
	}
 | 
						|
 | 
						|
	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
 | 
						|
	}
 | 
						|
 | 
						|
	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, 0)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	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, 0, 0)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	result, err := iplibrary.SharedLibrary.Lookup(req.Ip)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if result == nil {
 | 
						|
		return &pb.LookupIPRegionResponse{IpRegion: nil}, nil
 | 
						|
	}
 | 
						|
 | 
						|
	tx := this.NullTx()
 | 
						|
 | 
						|
	countryId, err := regions.SharedRegionCountryDAO.FindCountryIdWithNameCacheable(tx, result.Country)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	provinceId, err := regions.SharedRegionProvinceDAO.FindProvinceIdWithNameCacheable(tx, countryId, result.Province)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	return &pb.LookupIPRegionResponse{IpRegion: &pb.IPRegion{
 | 
						|
		Country:    result.Country,
 | 
						|
		Region:     result.Region,
 | 
						|
		Province:   result.Province,
 | 
						|
		City:       result.City,
 | 
						|
		Isp:        result.ISP,
 | 
						|
		CountryId:  countryId,
 | 
						|
		ProvinceId: provinceId,
 | 
						|
		Summary:    result.Summary(),
 | 
						|
	}}, nil
 | 
						|
}
 | 
						|
 | 
						|
// LookupIPRegions 查询一组IP信息
 | 
						|
func (this *IPLibraryService) LookupIPRegions(ctx context.Context, req *pb.LookupIPRegionsRequest) (*pb.LookupIPRegionsResponse, error) {
 | 
						|
	// 校验请求
 | 
						|
	_, _, err := this.ValidateAdminAndUser(ctx, 0, 0)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	result := map[string]*pb.IPRegion{}
 | 
						|
	if len(req.IpList) > 0 {
 | 
						|
		for _, ip := range req.IpList {
 | 
						|
			info, err := iplibrary.SharedLibrary.Lookup(ip)
 | 
						|
			if err != nil {
 | 
						|
				return nil, err
 | 
						|
			}
 | 
						|
			if info != nil {
 | 
						|
				result[ip] = &pb.IPRegion{
 | 
						|
					Country:  info.Country,
 | 
						|
					Region:   info.Region,
 | 
						|
					Province: info.Province,
 | 
						|
					City:     info.City,
 | 
						|
					Isp:      info.ISP,
 | 
						|
					Summary:  info.Summary(),
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return &pb.LookupIPRegionsResponse{IpRegionMap: result}, nil
 | 
						|
}
 |