2020-09-26 08:07:07 +08:00
|
|
|
|
package nodes
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2023-05-22 17:31:26 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
2021-10-10 10:35:05 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
2021-06-06 23:42:11 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/remotelogs"
|
2021-09-21 09:29:17 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils"
|
2020-09-26 08:07:07 +08:00
|
|
|
|
"github.com/iwind/TeaGo/Tea"
|
|
|
|
|
|
"github.com/iwind/TeaGo/logs"
|
|
|
|
|
|
"net/http"
|
|
|
|
|
|
"os"
|
|
|
|
|
|
"regexp"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
var urlPrefixRegexp = regexp.MustCompile("^(?i)(http|https|ftp)://")
|
|
|
|
|
|
|
|
|
|
|
|
// 请求特殊页面
|
|
|
|
|
|
func (this *HTTPRequest) doPage(status int) (shouldStop bool) {
|
|
|
|
|
|
if len(this.web.Pages) == 0 {
|
2023-05-22 17:31:26 +08:00
|
|
|
|
// 集群自定义页面
|
|
|
|
|
|
if this.nodeConfig != nil && this.ReqServer != nil {
|
|
|
|
|
|
var httpPagesPolicy = this.nodeConfig.FindHTTPPagesPolicyWithClusterId(this.ReqServer.ClusterId)
|
|
|
|
|
|
if httpPagesPolicy != nil && httpPagesPolicy.IsOn && len(httpPagesPolicy.Pages) > 0 {
|
|
|
|
|
|
return this.doPageLookup(httpPagesPolicy.Pages, status)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-26 08:07:07 +08:00
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-22 17:31:26 +08:00
|
|
|
|
// 查找当前网站自定义页面
|
|
|
|
|
|
shouldStop = this.doPageLookup(this.web.Pages, status)
|
|
|
|
|
|
if shouldStop {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 集群自定义页面
|
|
|
|
|
|
if this.nodeConfig != nil && this.ReqServer != nil {
|
|
|
|
|
|
var httpPagesPolicy = this.nodeConfig.FindHTTPPagesPolicyWithClusterId(this.ReqServer.ClusterId)
|
|
|
|
|
|
if httpPagesPolicy != nil && httpPagesPolicy.IsOn && len(httpPagesPolicy.Pages) > 0 {
|
|
|
|
|
|
return this.doPageLookup(httpPagesPolicy.Pages, status)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (this *HTTPRequest) doPageLookup(pages []*serverconfigs.HTTPPageConfig, status int) (shouldStop bool) {
|
|
|
|
|
|
for _, page := range pages {
|
2020-09-26 08:07:07 +08:00
|
|
|
|
if page.Match(status) {
|
2021-10-10 10:35:05 +08:00
|
|
|
|
if len(page.BodyType) == 0 || page.BodyType == shared.BodyTypeURL {
|
|
|
|
|
|
if urlPrefixRegexp.MatchString(page.URL) {
|
2021-11-05 14:10:43 +08:00
|
|
|
|
var newStatus = page.NewStatus
|
|
|
|
|
|
if newStatus <= 0 {
|
|
|
|
|
|
newStatus = status
|
|
|
|
|
|
}
|
|
|
|
|
|
this.doURL(http.MethodGet, page.URL, "", newStatus, true)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
return true
|
|
|
|
|
|
} else {
|
|
|
|
|
|
file := Tea.Root + Tea.DS + page.URL
|
|
|
|
|
|
fp, err := os.Open(file)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
logs.Error(err)
|
|
|
|
|
|
msg := "404 page not found: '" + page.URL + "'"
|
|
|
|
|
|
|
|
|
|
|
|
this.writer.WriteHeader(http.StatusNotFound)
|
|
|
|
|
|
_, err := this.writer.Write([]byte(msg))
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
logs.Error(err)
|
|
|
|
|
|
}
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
2020-09-26 08:07:07 +08:00
|
|
|
|
|
2021-10-16 12:21:28 +08:00
|
|
|
|
stat, err := fp.Stat()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
logs.Error(err)
|
|
|
|
|
|
msg := "404 could not read page content: '" + page.URL + "'"
|
|
|
|
|
|
|
|
|
|
|
|
this.writer.WriteHeader(http.StatusNotFound)
|
|
|
|
|
|
_, err := this.writer.Write([]byte(msg))
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
logs.Error(err)
|
|
|
|
|
|
}
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-10-10 10:35:05 +08:00
|
|
|
|
// 修改状态码
|
|
|
|
|
|
if page.NewStatus > 0 {
|
|
|
|
|
|
// 自定义响应Headers
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), page.NewStatus)
|
2022-02-15 14:55:49 +08:00
|
|
|
|
this.writer.Prepare(nil, stat.Size(), page.NewStatus, true)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
this.writer.WriteHeader(page.NewStatus)
|
|
|
|
|
|
} else {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), status)
|
2022-02-15 14:55:49 +08:00
|
|
|
|
this.writer.Prepare(nil, stat.Size(), status, true)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
this.writer.WriteHeader(status)
|
|
|
|
|
|
}
|
2021-12-19 11:32:26 +08:00
|
|
|
|
buf := utils.BytePool1k.Get()
|
2021-10-10 10:35:05 +08:00
|
|
|
|
_, err = utils.CopyWithFilter(this.writer, fp, buf, func(p []byte) []byte {
|
|
|
|
|
|
return []byte(this.Format(string(p)))
|
|
|
|
|
|
})
|
2021-12-19 11:32:26 +08:00
|
|
|
|
utils.BytePool1k.Put(buf)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
if !this.canIgnore(err) {
|
|
|
|
|
|
remotelogs.Warn("HTTP_REQUEST_PAGE", "write to client failed: "+err.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.writer.SetOk()
|
|
|
|
|
|
}
|
|
|
|
|
|
err = fp.Close()
|
2020-09-26 08:07:07 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
logs.Error(err)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-10-10 10:35:05 +08:00
|
|
|
|
return true
|
|
|
|
|
|
} else if page.BodyType == shared.BodyTypeHTML {
|
2021-12-02 14:46:40 +08:00
|
|
|
|
// 这里需要实现设置Status,因为在Format()中可以获取${status}等变量
|
|
|
|
|
|
if page.NewStatus > 0 {
|
|
|
|
|
|
this.writer.statusCode = page.NewStatus
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.writer.statusCode = status
|
|
|
|
|
|
}
|
2021-10-16 12:21:28 +08:00
|
|
|
|
var content = this.Format(page.Body)
|
|
|
|
|
|
|
2020-09-26 08:07:07 +08:00
|
|
|
|
// 修改状态码
|
|
|
|
|
|
if page.NewStatus > 0 {
|
|
|
|
|
|
// 自定义响应Headers
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), page.NewStatus)
|
2022-02-15 14:55:49 +08:00
|
|
|
|
this.writer.Prepare(nil, int64(len(content)), page.NewStatus, true)
|
2020-09-26 08:07:07 +08:00
|
|
|
|
this.writer.WriteHeader(page.NewStatus)
|
|
|
|
|
|
} else {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), status)
|
2022-02-15 14:55:49 +08:00
|
|
|
|
this.writer.Prepare(nil, int64(len(content)), status, true)
|
2020-09-26 08:07:07 +08:00
|
|
|
|
this.writer.WriteHeader(status)
|
|
|
|
|
|
}
|
2021-10-10 10:35:05 +08:00
|
|
|
|
|
2021-10-16 12:21:28 +08:00
|
|
|
|
_, err := this.writer.WriteString(content)
|
2020-09-26 08:07:07 +08:00
|
|
|
|
if err != nil {
|
2021-06-06 23:42:11 +08:00
|
|
|
|
if !this.canIgnore(err) {
|
|
|
|
|
|
remotelogs.Warn("HTTP_REQUEST_PAGE", "write to client failed: "+err.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.writer.SetOk()
|
2020-09-26 08:07:07 +08:00
|
|
|
|
}
|
2021-10-10 10:35:05 +08:00
|
|
|
|
return true
|
2020-09-26 08:07:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|