2025-03-26 14:57:44 +08:00
|
|
|
|
package services
|
|
|
|
|
|
|
2025-03-26 16:34:54 +08:00
|
|
|
|
import (
|
|
|
|
|
|
"encoding/json"
|
|
|
|
|
|
"fmt"
|
|
|
|
|
|
"platform/pkg/orm"
|
|
|
|
|
|
)
|
2025-03-26 14:57:44 +08:00
|
|
|
|
|
|
|
|
|
|
var Node = &nodeService{}
|
|
|
|
|
|
|
|
|
|
|
|
type nodeService struct{}
|
|
|
|
|
|
|
2025-03-26 16:34:54 +08:00
|
|
|
|
func (s *nodeService) Filter(userId int32, count int, config ...NodeFilterConfig) ([]*FilteredNode, error) {
|
|
|
|
|
|
_config := NodeFilterConfig{}
|
|
|
|
|
|
if len(config) > 0 {
|
|
|
|
|
|
_config = config[0]
|
|
|
|
|
|
}
|
2025-03-26 14:57:44 +08:00
|
|
|
|
|
2025-03-26 16:34:54 +08:00
|
|
|
|
// 筛选符合条件且未分配给用户过的节点
|
|
|
|
|
|
// 静态条件:省,市,运营商
|
|
|
|
|
|
// 排序方式,1.分配给该用户的次数 2.分配给全部用户的次数 3.todo 节点的健康状态
|
|
|
|
|
|
var nodes []*FilteredNode
|
|
|
|
|
|
orm.DB.Raw(filterSqlRaw, userId, _config.Isp, _config.Prov, _config.City).
|
|
|
|
|
|
Limit(count).
|
|
|
|
|
|
Find(&nodes)
|
|
|
|
|
|
|
|
|
|
|
|
rs, _ := json.Marshal(nodes)
|
|
|
|
|
|
fmt.Printf(string(rs))
|
|
|
|
|
|
|
|
|
|
|
|
// 返回节点列表
|
|
|
|
|
|
return nodes, nil
|
2025-03-26 14:57:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type NodeFilterConfig struct {
|
2025-03-26 16:34:54 +08:00
|
|
|
|
Isp string
|
|
|
|
|
|
Prov string
|
|
|
|
|
|
City string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const filterSqlRaw = `
|
|
|
|
|
|
select
|
|
|
|
|
|
n.id as id,
|
|
|
|
|
|
n.name as name,
|
|
|
|
|
|
n.fwd_port as port,
|
|
|
|
|
|
count(c.*) as total,
|
|
|
|
|
|
count(c.*) filter ( where c.user_id = ? ) as assigned
|
|
|
|
|
|
from
|
|
|
|
|
|
node n
|
|
|
|
|
|
left join public.channel c
|
|
|
|
|
|
on n.id = c.node_id and c.expiration > now() and c.deleted_at is null
|
|
|
|
|
|
where
|
|
|
|
|
|
n.isp = ? and
|
|
|
|
|
|
n.prov = ? and
|
|
|
|
|
|
n.city = ?
|
|
|
|
|
|
group by
|
|
|
|
|
|
n.id
|
|
|
|
|
|
order by
|
|
|
|
|
|
assigned, total
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
|
|
|
|
type FilteredNode struct {
|
|
|
|
|
|
Id int32 `json:"id"`
|
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
|
Port int32 `json:"port"`
|
|
|
|
|
|
Total int32 `json:"total"`
|
|
|
|
|
|
Assigned int32 `json:"assigned"`
|
2025-03-26 14:57:44 +08:00
|
|
|
|
}
|