Files
EdgeAPI/internal/rpc/services/sevice_http_gzip.go

116 lines
2.6 KiB
Go
Raw Normal View History

2020-09-16 09:09:21 +08:00
package services
import (
"context"
"encoding/json"
"github.com/TeaOSLab/EdgeAPI/internal/db/models"
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
)
type HTTPGzipService struct {
2020-11-24 17:36:47 +08:00
BaseService
2020-09-16 09:09:21 +08:00
}
2021-05-10 21:13:32 +08:00
// CreateHTTPGzip 创建Gzip配置
2020-09-16 09:09:21 +08:00
func (this *HTTPGzipService) CreateHTTPGzip(ctx context.Context, req *pb.CreateHTTPGzipRequest) (*pb.CreateHTTPGzipResponse, error) {
// 校验请求
2021-07-11 18:05:57 +08:00
_, err := this.ValidateAdmin(ctx, 0)
2020-09-16 09:09:21 +08:00
if err != nil {
return nil, err
}
minLengthJSON := []byte{}
if req.MinLength != nil {
minLengthJSON, err = (&shared.SizeCapacity{
Count: req.MinLength.Count,
Unit: req.MinLength.Unit,
}).AsJSON()
if err != nil {
return nil, err
}
}
maxLengthJSON := []byte{}
if req.MaxLength != nil {
maxLengthJSON, err = (&shared.SizeCapacity{
Count: req.MaxLength.Count,
Unit: req.MaxLength.Unit,
}).AsJSON()
if err != nil {
return nil, err
}
}
tx := this.NullTx()
gzipId, err := models.SharedHTTPGzipDAO.CreateGzip(tx, int(req.Level), minLengthJSON, maxLengthJSON, req.CondsJSON)
2020-09-16 09:09:21 +08:00
if err != nil {
return nil, err
}
2021-05-10 21:13:32 +08:00
return &pb.CreateHTTPGzipResponse{HttpGzipId: gzipId}, nil
2020-09-16 09:09:21 +08:00
}
2021-05-10 21:13:32 +08:00
// FindEnabledHTTPGzipConfig 查找Gzip
2020-09-16 09:09:21 +08:00
func (this *HTTPGzipService) FindEnabledHTTPGzipConfig(ctx context.Context, req *pb.FindEnabledGzipConfigRequest) (*pb.FindEnabledGzipConfigResponse, error) {
// 校验请求
2021-07-11 18:05:57 +08:00
_, err := this.ValidateAdmin(ctx, 0)
2020-09-16 09:09:21 +08:00
if err != nil {
return nil, err
}
tx := this.NullTx()
2021-05-10 21:13:32 +08:00
config, err := models.SharedHTTPGzipDAO.ComposeGzipConfig(tx, req.HttpGzipId)
2020-09-16 09:09:21 +08:00
if err != nil {
return nil, err
}
configData, err := json.Marshal(config)
if err != nil {
return nil, err
}
2021-05-10 21:13:32 +08:00
return &pb.FindEnabledGzipConfigResponse{HttpGzipJSON: configData}, nil
2020-09-16 09:09:21 +08:00
}
2021-05-10 21:13:32 +08:00
// UpdateHTTPGzip 修改Gzip配置
func (this *HTTPGzipService) UpdateHTTPGzip(ctx context.Context, req *pb.UpdateHTTPGzipRequest) (*pb.RPCSuccess, error) {
2020-09-16 09:09:21 +08:00
// 校验请求
2021-07-11 18:05:57 +08:00
_, err := this.ValidateAdmin(ctx, 0)
2020-09-16 09:09:21 +08:00
if err != nil {
return nil, err
}
minLengthJSON := []byte{}
if req.MinLength != nil {
minLengthJSON, err = (&shared.SizeCapacity{
Count: req.MinLength.Count,
Unit: req.MinLength.Unit,
}).AsJSON()
if err != nil {
return nil, err
}
}
maxLengthJSON := []byte{}
if req.MaxLength != nil {
maxLengthJSON, err = (&shared.SizeCapacity{
Count: req.MaxLength.Count,
Unit: req.MaxLength.Unit,
}).AsJSON()
if err != nil {
return nil, err
}
}
tx := this.NullTx()
2021-05-10 21:13:32 +08:00
err = models.SharedHTTPGzipDAO.UpdateGzip(tx, req.HttpGzipId, int(req.Level), minLengthJSON, maxLengthJSON, req.CondsJSON)
2020-09-16 09:09:21 +08:00
if err != nil {
return nil, err
}
2020-11-24 17:36:47 +08:00
return this.Success()
2020-09-16 09:09:21 +08:00
}