2024-05-17 17:56:37 +08:00
|
|
|
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
2022-10-24 15:42:18 +08:00
|
|
|
|
|
|
|
|
package headers
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type OptionsAction struct {
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *OptionsAction) RunPost(params struct {
|
|
|
|
|
Type string
|
|
|
|
|
}) {
|
|
|
|
|
if params.Type == "request" {
|
|
|
|
|
this.Data["headers"] = serverconfigs.AllHTTPCommonRequestHeaders
|
|
|
|
|
} else if params.Type == "response" {
|
|
|
|
|
this.Data["headers"] = serverconfigs.AllHTTPCommonResponseHeaders
|
|
|
|
|
} else {
|
|
|
|
|
this.Data["headers"] = []string{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.Success()
|
|
|
|
|
}
|