2020-09-26 08:07:07 +08:00
|
|
|
|
package nodes
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2023-11-10 16:36:35 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
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"
|
|
|
|
|
|
"net/http"
|
|
|
|
|
|
"os"
|
2023-07-07 11:50:10 +08:00
|
|
|
|
"path"
|
|
|
|
|
|
"strings"
|
2020-09-26 08:07:07 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// 调用临时关闭页面
|
|
|
|
|
|
func (this *HTTPRequest) doShutdown() {
|
2023-07-07 11:50:10 +08:00
|
|
|
|
var shutdown = this.web.Shutdown
|
2020-09-26 08:07:07 +08:00
|
|
|
|
if shutdown == nil {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-10 16:36:35 +08:00
|
|
|
|
if len(shutdown.BodyType) == 0 || shutdown.BodyType == serverconfigs.HTTPPageBodyTypeURL {
|
2022-03-31 15:17:30 +08:00
|
|
|
|
// URL
|
2023-06-16 09:56:37 +08:00
|
|
|
|
if urlSchemeRegexp.MatchString(shutdown.URL) {
|
2022-03-31 15:17:30 +08:00
|
|
|
|
this.doURL(http.MethodGet, shutdown.URL, "", shutdown.Status, true)
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-10-10 10:35:05 +08:00
|
|
|
|
// URL为空,则显示文本
|
|
|
|
|
|
if len(shutdown.URL) == 0 {
|
|
|
|
|
|
// 自定义响应Headers
|
|
|
|
|
|
if shutdown.Status > 0 {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), shutdown.Status)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
this.writer.WriteHeader(shutdown.Status)
|
|
|
|
|
|
} else {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), http.StatusOK)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
this.writer.WriteHeader(http.StatusOK)
|
|
|
|
|
|
}
|
2023-07-07 11:50:10 +08:00
|
|
|
|
_, _ = this.writer.WriteString("The site have been shutdown.")
|
2021-10-10 10:35:05 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 从本地文件中读取
|
2023-07-07 11:50:10 +08:00
|
|
|
|
var realpath = path.Clean(shutdown.URL)
|
|
|
|
|
|
if !strings.HasPrefix(realpath, "/pages/") && !strings.HasPrefix(realpath, "pages/") { // only files under "/pages/" can be used
|
|
|
|
|
|
var msg = "404 page not found: '" + shutdown.URL + "'"
|
|
|
|
|
|
this.writer.WriteHeader(http.StatusNotFound)
|
|
|
|
|
|
_, _ = this.writer.Write([]byte(msg))
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
var file = Tea.Root + Tea.DS + shutdown.URL
|
2021-10-10 10:35:05 +08:00
|
|
|
|
fp, err := os.Open(file)
|
|
|
|
|
|
if err != nil {
|
2023-07-07 11:50:10 +08:00
|
|
|
|
var msg = "404 page not found: '" + shutdown.URL + "'"
|
2021-10-10 10:35:05 +08:00
|
|
|
|
this.writer.WriteHeader(http.StatusNotFound)
|
2023-07-07 11:50:10 +08:00
|
|
|
|
_, _ = this.writer.Write([]byte(msg))
|
2021-10-10 10:35:05 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-07-07 11:50:10 +08:00
|
|
|
|
defer func() {
|
|
|
|
|
|
_ = fp.Close()
|
|
|
|
|
|
}()
|
|
|
|
|
|
|
2020-09-26 08:07:07 +08:00
|
|
|
|
// 自定义响应Headers
|
|
|
|
|
|
if shutdown.Status > 0 {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), shutdown.Status)
|
2020-09-26 08:07:07 +08:00
|
|
|
|
this.writer.WriteHeader(shutdown.Status)
|
|
|
|
|
|
} else {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), http.StatusOK)
|
2020-09-26 08:07:07 +08:00
|
|
|
|
this.writer.WriteHeader(http.StatusOK)
|
|
|
|
|
|
}
|
2023-07-07 11:50:10 +08:00
|
|
|
|
var 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)
|
2020-09-26 08:07:07 +08:00
|
|
|
|
if err != nil {
|
2021-10-10 10:35:05 +08:00
|
|
|
|
if !this.canIgnore(err) {
|
|
|
|
|
|
remotelogs.Warn("HTTP_REQUEST_SHUTDOWN", "write to client failed: "+err.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.writer.SetOk()
|
2020-09-26 08:07:07 +08:00
|
|
|
|
}
|
2023-11-10 16:36:35 +08:00
|
|
|
|
} else if shutdown.BodyType == serverconfigs.HTTPPageBodyTypeHTML {
|
2021-10-10 10:35:05 +08:00
|
|
|
|
// 自定义响应Headers
|
|
|
|
|
|
if shutdown.Status > 0 {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), shutdown.Status)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
this.writer.WriteHeader(shutdown.Status)
|
|
|
|
|
|
} else {
|
2023-06-11 10:46:20 +08:00
|
|
|
|
this.ProcessResponseHeaders(this.writer.Header(), http.StatusOK)
|
2021-10-10 10:35:05 +08:00
|
|
|
|
this.writer.WriteHeader(http.StatusOK)
|
2021-06-06 23:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-10-10 10:35:05 +08:00
|
|
|
|
_, err := this.writer.WriteString(this.Format(shutdown.Body))
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
if !this.canIgnore(err) {
|
|
|
|
|
|
remotelogs.Warn("HTTP_REQUEST_SHUTDOWN", "write to client failed: "+err.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.writer.SetOk()
|
|
|
|
|
|
}
|
2023-11-10 16:36:35 +08:00
|
|
|
|
} else if shutdown.BodyType == serverconfigs.HTTPPageBodyTypeRedirectURL {
|
|
|
|
|
|
var newURL = shutdown.URL
|
|
|
|
|
|
if len(newURL) == 0 {
|
|
|
|
|
|
newURL = "/"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if shutdown.Status > 0 && httpStatusIsRedirect(shutdown.Status) {
|
|
|
|
|
|
httpRedirect(this.writer, this.RawReq, newURL, shutdown.Status)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
httpRedirect(this.writer, this.RawReq, newURL, http.StatusTemporaryRedirect)
|
|
|
|
|
|
}
|
|
|
|
|
|
this.writer.SetOk()
|
2020-09-26 08:07:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|