mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package ipbox
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
 | 
						|
	"strings"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
type AddIPAction struct {
 | 
						|
	actionutils.ParentAction
 | 
						|
}
 | 
						|
 | 
						|
func (this *AddIPAction) RunPost(params struct {
 | 
						|
	ListId    int64
 | 
						|
	Ip        string
 | 
						|
	ExpiredAt int64
 | 
						|
}) {
 | 
						|
	var itemId int64 = 0
 | 
						|
 | 
						|
	defer func() {
 | 
						|
		this.CreateLogInfo(codes.IPItem_LogCreateIPItem, params.ListId, itemId)
 | 
						|
	}()
 | 
						|
 | 
						|
	var ipType = "ipv4"
 | 
						|
	if strings.Contains(params.Ip, ":") {
 | 
						|
		ipType = "ipv6"
 | 
						|
	}
 | 
						|
 | 
						|
	if params.ExpiredAt <= 0 {
 | 
						|
		params.ExpiredAt = time.Now().Unix() + 86400
 | 
						|
	}
 | 
						|
 | 
						|
	createResp, err := this.RPC().IPItemRPC().CreateIPItem(this.AdminContext(), &pb.CreateIPItemRequest{
 | 
						|
		IpListId:   params.ListId,
 | 
						|
		IpFrom:     params.Ip,
 | 
						|
		IpTo:       "",
 | 
						|
		ExpiredAt:  params.ExpiredAt,
 | 
						|
		Reason:     "从IPBox中加入名单",
 | 
						|
		Type:       ipType,
 | 
						|
		EventLevel: "critical",
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		this.ErrorPage(err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	itemId = createResp.IpItemId
 | 
						|
 | 
						|
	this.Success()
 | 
						|
}
 |