2024-07-27 14:15:25 +08:00
|
|
|
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
|
2022-05-04 20:32:34 +08:00
|
|
|
//go:build !plus
|
|
|
|
|
// +build !plus
|
|
|
|
|
|
|
|
|
|
package services
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2024-07-27 14:15:25 +08:00
|
|
|
|
2022-05-04 20:32:34 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// UpdateHTTPWebUAM 修改UAM设置
|
|
|
|
|
func (this *HTTPWebService) UpdateHTTPWebUAM(ctx context.Context, req *pb.UpdateHTTPWebUAMRequest) (*pb.RPCSuccess, error) {
|
|
|
|
|
return this.Success()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// FindHTTPWebUAM 查找UAM设置
|
|
|
|
|
func (this *HTTPWebService) FindHTTPWebUAM(ctx context.Context, req *pb.FindHTTPWebUAMRequest) (*pb.FindHTTPWebUAMResponse, error) {
|
|
|
|
|
return &pb.FindHTTPWebUAMResponse{UamJSON: nil}, nil
|
|
|
|
|
}
|
2023-03-09 12:10:58 +08:00
|
|
|
|
|
|
|
|
func (this *HTTPWebService) UpdateHTTPWebCC(ctx context.Context, req *pb.UpdateHTTPWebCCRequest) (*pb.RPCSuccess, error) {
|
|
|
|
|
return nil, this.NotImplementedYet()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// FindHTTPWebCC 查找UAM设置
|
|
|
|
|
func (this *HTTPWebService) FindHTTPWebCC(ctx context.Context, req *pb.FindHTTPWebCCRequest) (*pb.FindHTTPWebCCResponse, error) {
|
|
|
|
|
return nil, this.NotImplementedYet()
|
|
|
|
|
}
|
2023-12-23 20:56:11 +08:00
|
|
|
|
|
|
|
|
// UpdateHTTPWebRequestScripts 修改请求脚本
|
|
|
|
|
func (this *HTTPWebService) UpdateHTTPWebRequestScripts(ctx context.Context, req *pb.UpdateHTTPWebRequestScriptsRequest) (*pb.RPCSuccess, error) {
|
|
|
|
|
return nil, this.NotImplementedYet()
|
|
|
|
|
}
|
2024-01-14 20:36:47 +08:00
|
|
|
|
|
|
|
|
// UpdateHTTPWebHLS 修改HLS设置
|
|
|
|
|
func (this *HTTPWebService) UpdateHTTPWebHLS(ctx context.Context, req *pb.UpdateHTTPWebHLSRequest) (*pb.RPCSuccess, error) {
|
|
|
|
|
return nil, this.NotImplementedYet()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// FindHTTPWebHLS 查找HLS设置
|
|
|
|
|
func (this *HTTPWebService) FindHTTPWebHLS(ctx context.Context, req *pb.FindHTTPWebHLSRequest) (*pb.FindHTTPWebHLSResponse, error) {
|
|
|
|
|
return nil, this.NotImplementedYet()
|
|
|
|
|
}
|