mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
253 lines
6.0 KiB
Go
253 lines
6.0 KiB
Go
package models
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/Tea"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"github.com/iwind/TeaGo/types"
|
|
)
|
|
|
|
const (
|
|
HTTPLocationStateEnabled = 1 // 已启用
|
|
HTTPLocationStateDisabled = 0 // 已禁用
|
|
)
|
|
|
|
type HTTPLocationDAO dbs.DAO
|
|
|
|
func NewHTTPLocationDAO() *HTTPLocationDAO {
|
|
return dbs.NewDAO(&HTTPLocationDAO{
|
|
DAOObject: dbs.DAOObject{
|
|
DB: Tea.Env,
|
|
Table: "edgeHTTPLocations",
|
|
Model: new(HTTPLocation),
|
|
PkName: "id",
|
|
},
|
|
}).(*HTTPLocationDAO)
|
|
}
|
|
|
|
var SharedHTTPLocationDAO *HTTPLocationDAO
|
|
|
|
func init() {
|
|
dbs.OnReady(func() {
|
|
SharedHTTPLocationDAO = NewHTTPLocationDAO()
|
|
})
|
|
}
|
|
|
|
// 初始化
|
|
func (this *HTTPLocationDAO) Init() {
|
|
this.DAOObject.Init()
|
|
this.DAOObject.OnUpdate(func() error {
|
|
return SharedSysEventDAO.CreateEvent(NewServerChangeEvent())
|
|
})
|
|
this.DAOObject.OnInsert(func() error {
|
|
return SharedSysEventDAO.CreateEvent(NewServerChangeEvent())
|
|
})
|
|
this.DAOObject.OnDelete(func() error {
|
|
return SharedSysEventDAO.CreateEvent(NewServerChangeEvent())
|
|
})
|
|
}
|
|
|
|
// 启用条目
|
|
func (this *HTTPLocationDAO) EnableHTTPLocation(id int64) error {
|
|
_, err := this.Query().
|
|
Pk(id).
|
|
Set("state", HTTPLocationStateEnabled).
|
|
Update()
|
|
return err
|
|
}
|
|
|
|
// 禁用条目
|
|
func (this *HTTPLocationDAO) DisableHTTPLocation(id int64) error {
|
|
_, err := this.Query().
|
|
Pk(id).
|
|
Set("state", HTTPLocationStateDisabled).
|
|
Update()
|
|
return err
|
|
}
|
|
|
|
// 查找启用中的条目
|
|
func (this *HTTPLocationDAO) FindEnabledHTTPLocation(id int64) (*HTTPLocation, error) {
|
|
result, err := this.Query().
|
|
Pk(id).
|
|
Attr("state", HTTPLocationStateEnabled).
|
|
Find()
|
|
if result == nil {
|
|
return nil, err
|
|
}
|
|
return result.(*HTTPLocation), err
|
|
}
|
|
|
|
// 根据主键查找名称
|
|
func (this *HTTPLocationDAO) FindHTTPLocationName(id int64) (string, error) {
|
|
return this.Query().
|
|
Pk(id).
|
|
Result("name").
|
|
FindStringCol("")
|
|
}
|
|
|
|
// 创建路径规则
|
|
func (this *HTTPLocationDAO) CreateLocation(parentId int64, name string, pattern string, description string, isBreak bool) (int64, error) {
|
|
op := NewHTTPLocationOperator()
|
|
op.IsOn = true
|
|
op.State = HTTPLocationStateEnabled
|
|
op.ParentId = parentId
|
|
op.Name = name
|
|
op.Pattern = pattern
|
|
op.Description = description
|
|
op.IsBreak = isBreak
|
|
err := this.Save(op)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return types.Int64(op.Id), nil
|
|
}
|
|
|
|
// 修改路径规则
|
|
func (this *HTTPLocationDAO) UpdateLocation(locationId int64, name string, pattern string, description string, isOn bool, isBreak bool) error {
|
|
if locationId <= 0 {
|
|
return errors.New("invalid locationId")
|
|
}
|
|
op := NewHTTPLocationOperator()
|
|
op.Id = locationId
|
|
op.Name = name
|
|
op.Pattern = pattern
|
|
op.Description = description
|
|
op.IsOn = isOn
|
|
op.IsBreak = isBreak
|
|
err := this.Save(op)
|
|
return err
|
|
}
|
|
|
|
// 组合配置
|
|
func (this *HTTPLocationDAO) ComposeLocationConfig(locationId int64) (*serverconfigs.HTTPLocationConfig, error) {
|
|
location, err := this.FindEnabledHTTPLocation(locationId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if location == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
config := &serverconfigs.HTTPLocationConfig{}
|
|
config.Id = int64(location.Id)
|
|
config.IsOn = location.IsOn == 1
|
|
config.Description = location.Description
|
|
config.Name = location.Name
|
|
config.Pattern = location.Pattern
|
|
config.URLPrefix = location.UrlPrefix
|
|
config.IsBreak = location.IsBreak == 1
|
|
|
|
// web
|
|
if location.WebId > 0 {
|
|
webConfig, err := SharedHTTPWebDAO.ComposeWebConfig(int64(location.WebId))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
config.Web = webConfig
|
|
}
|
|
|
|
// reverse proxy
|
|
if IsNotNull(location.ReverseProxy) {
|
|
ref := &serverconfigs.ReverseProxyRef{}
|
|
err = json.Unmarshal([]byte(location.ReverseProxy), ref)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
config.ReverseProxyRef = ref
|
|
if ref.ReverseProxyId > 0 {
|
|
reverseProxyConfig, err := SharedReverseProxyDAO.ComposeReverseProxyConfig(ref.ReverseProxyId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
config.ReverseProxy = reverseProxyConfig
|
|
}
|
|
}
|
|
|
|
return config, nil
|
|
}
|
|
|
|
// 查找反向代理设置
|
|
func (this *HTTPLocationDAO) FindLocationReverseProxy(locationId int64) (*serverconfigs.ReverseProxyRef, error) {
|
|
refString, err := this.Query().
|
|
Pk(locationId).
|
|
Result("reverseProxy").
|
|
FindStringCol("")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if IsNotNull(refString) {
|
|
ref := &serverconfigs.ReverseProxyRef{}
|
|
err = json.Unmarshal([]byte(refString), ref)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ref, nil
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// 更改反向代理设置
|
|
func (this *HTTPLocationDAO) UpdateLocationReverseProxy(locationId int64, reverseProxyJSON []byte) error {
|
|
if locationId <= 0 {
|
|
return errors.New("invalid locationId")
|
|
}
|
|
op := NewHTTPLocationOperator()
|
|
op.Id = locationId
|
|
op.ReverseProxy = JSONBytes(reverseProxyJSON)
|
|
err := this.Save(op)
|
|
return err
|
|
}
|
|
|
|
// 查找WebId
|
|
func (this *HTTPLocationDAO) FindLocationWebId(locationId int64) (int64, error) {
|
|
webId, err := this.Query().
|
|
Pk(locationId).
|
|
Result("webId").
|
|
FindIntCol(0)
|
|
return int64(webId), err
|
|
}
|
|
|
|
// 更改Web设置
|
|
func (this *HTTPLocationDAO) UpdateLocationWeb(locationId int64, webId int64) error {
|
|
if locationId <= 0 {
|
|
return errors.New("invalid locationId")
|
|
}
|
|
op := NewHTTPLocationOperator()
|
|
op.Id = locationId
|
|
op.WebId = webId
|
|
err := this.Save(op)
|
|
return err
|
|
}
|
|
|
|
// 转换引用为配置
|
|
func (this *HTTPLocationDAO) ConvertLocationRefs(refs []*serverconfigs.HTTPLocationRef) (locations []*serverconfigs.HTTPLocationConfig, err error) {
|
|
for _, ref := range refs {
|
|
config, err := this.ComposeLocationConfig(ref.LocationId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
children, err := this.ConvertLocationRefs(ref.Children)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
config.Children = children
|
|
locations = append(locations, config)
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// 根据WebId查找LocationId
|
|
func (this *HTTPLocationDAO) FindEnabledLocationIdWithWebId(webId int64) (locationId int64, err error) {
|
|
if webId <= 0 {
|
|
return
|
|
}
|
|
return this.Query().
|
|
Attr("webId", webId).
|
|
ResultPk().
|
|
FindInt64Col(0)
|
|
}
|