2020-11-07 19:40:32 +08:00
|
|
|
|
syntax = "proto3";
|
|
|
|
|
|
option go_package = "./pb";
|
|
|
|
|
|
|
|
|
|
|
|
package pb;
|
|
|
|
|
|
|
2021-01-25 16:41:30 +08:00
|
|
|
|
import "models/rpc_messages.proto";
|
|
|
|
|
|
import "models/model_ip_list.proto";
|
2020-11-07 19:40:32 +08:00
|
|
|
|
|
|
|
|
|
|
// IP列表
|
|
|
|
|
|
service IPListService {
|
|
|
|
|
|
// 创建IP列表
|
|
|
|
|
|
rpc createIPList (CreateIPListRequest) returns (CreateIPListResponse);
|
|
|
|
|
|
|
|
|
|
|
|
// 修改IP列表
|
2020-11-13 18:23:06 +08:00
|
|
|
|
rpc updateIPList (UpdateIPListRequest) returns (RPCSuccess);
|
2020-11-07 19:40:32 +08:00
|
|
|
|
|
2021-06-23 13:13:58 +08:00
|
|
|
|
// 查找IP列表信息
|
2020-11-07 19:40:32 +08:00
|
|
|
|
rpc findEnabledIPList (FindEnabledIPListRequest) returns (FindEnabledIPListResponse);
|
2021-06-23 13:13:58 +08:00
|
|
|
|
|
|
|
|
|
|
// 计算名单数量
|
|
|
|
|
|
rpc countAllEnabledIPLists (CountAllEnabledIPListsRequest) returns (RPCCountResponse);
|
|
|
|
|
|
|
|
|
|
|
|
// 列出单页名单
|
|
|
|
|
|
rpc listEnabledIPLists (ListEnabledIPListsRequest) returns (ListEnabledIPListsResponse);
|
|
|
|
|
|
|
|
|
|
|
|
// 删除IP名单
|
|
|
|
|
|
rpc deleteIPList (DeleteIPListRequest) returns (RPCSuccess);
|
|
|
|
|
|
|
|
|
|
|
|
// 检查IPList是否存在
|
|
|
|
|
|
rpc existsEnabledIPList (ExistsEnabledIPListRequest) returns (ExistsEnabledIPListResponse);
|
2021-08-15 15:42:26 +08:00
|
|
|
|
|
|
|
|
|
|
// 根据IP来搜索IP名单
|
|
|
|
|
|
rpc findEnabledIPListContainsIP(FindEnabledIPListContainsIPRequest) returns (FindEnabledIPListContainsIPResponse);
|
2023-12-20 15:09:09 +08:00
|
|
|
|
|
|
|
|
|
|
// 查找IP名单对应的网站ID
|
|
|
|
|
|
rpc findServerIdWithIPListId(FindServerIdWithIPListIdRequest) returns (FindServerIdWithIPListIdResponse);
|
2020-11-07 19:40:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 创建IP列表
|
|
|
|
|
|
message CreateIPListRequest {
|
|
|
|
|
|
string type = 1;
|
|
|
|
|
|
string name = 2;
|
|
|
|
|
|
string code = 3;
|
|
|
|
|
|
bytes timeoutJSON = 4;
|
2021-06-23 13:13:58 +08:00
|
|
|
|
bool isPublic = 5;
|
|
|
|
|
|
string description = 6;
|
2021-11-17 16:15:01 +08:00
|
|
|
|
bool isGlobal = 7;
|
2022-06-15 19:22:56 +08:00
|
|
|
|
int64 serverId = 8;
|
2020-11-07 19:40:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message CreateIPListResponse {
|
|
|
|
|
|
int64 ipListId = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改IP列表
|
|
|
|
|
|
message UpdateIPListRequest {
|
|
|
|
|
|
int64 ipListId = 1;
|
|
|
|
|
|
string name = 2;
|
|
|
|
|
|
string code = 3;
|
|
|
|
|
|
bytes timeoutJSON = 4;
|
2021-06-23 13:13:58 +08:00
|
|
|
|
string description = 5;
|
2020-11-07 19:40:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-06-23 13:13:58 +08:00
|
|
|
|
// 查找IP列表信息
|
2020-11-07 19:40:32 +08:00
|
|
|
|
message FindEnabledIPListRequest {
|
|
|
|
|
|
int64 ipListId = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message FindEnabledIPListResponse {
|
|
|
|
|
|
IPList ipList = 1;
|
2021-06-23 13:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 计算名单数量
|
|
|
|
|
|
message CountAllEnabledIPListsRequest {
|
|
|
|
|
|
string type = 1;
|
|
|
|
|
|
bool isPublic = 2;
|
|
|
|
|
|
string keyword = 3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 列出单页名单
|
|
|
|
|
|
message ListEnabledIPListsRequest {
|
|
|
|
|
|
string type = 1;
|
|
|
|
|
|
bool isPublic = 2;
|
|
|
|
|
|
string keyword = 3;
|
|
|
|
|
|
int64 offset = 4;
|
|
|
|
|
|
int64 size = 5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message ListEnabledIPListsResponse {
|
|
|
|
|
|
repeated IPList ipLists = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 删除IP名单
|
|
|
|
|
|
message DeleteIPListRequest {
|
|
|
|
|
|
int64 ipListId = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 检查IPList是否存在
|
|
|
|
|
|
message ExistsEnabledIPListRequest {
|
|
|
|
|
|
int64 ipListId = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message ExistsEnabledIPListResponse {
|
|
|
|
|
|
bool exists = 1;
|
2021-08-15 15:42:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 根据IP来搜索IP名单
|
|
|
|
|
|
message FindEnabledIPListContainsIPRequest {
|
|
|
|
|
|
string ip = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message FindEnabledIPListContainsIPResponse {
|
|
|
|
|
|
repeated IPList ipLists = 1;
|
2023-12-20 15:09:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 查找IP名单对应的网站ID
|
|
|
|
|
|
message FindServerIdWithIPListIdRequest {
|
|
|
|
|
|
int64 ipListId = 1; // IP名单ID
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message FindServerIdWithIPListIdResponse {
|
|
|
|
|
|
int64 serverId = 1; // 网站ID(如果是公共IP名单,则对应的网站ID为0)
|
2020-11-07 19:40:32 +08:00
|
|
|
|
}
|