Files
EdgeAdmin/web/views/@default/servers/server/settings/origins/addPopup.js

52 lines
1.3 KiB
JavaScript
Raw Normal View History

Tea.context(function () {
this.addr = ""
this.protocol = ""
2021-06-06 09:22:59 +08:00
this.addrError = ""
if (this.isHTTP) {
this.protocol = "http"
2022-06-27 15:10:45 +08:00
} else if (this.serverType == "tcpProxy") {
this.protocol = "tcp"
} else if (this.serverType == "udpProxy") {
this.protocol = "udp"
}
2021-06-06 09:22:59 +08:00
this.changeProtocol = function () {
this.checkPort()
}
this.changeAddr = function () {
if (this.serverType == "httpProxy") {
if (this.addr.startsWith("http://")) {
this.protocol = "http"
} else if (this.addr.startsWith("https://")) {
this.protocol = "https"
}
}
2021-06-06 09:22:59 +08:00
this.checkPort()
}
this.checkPort = function () {
this.addrError = ""
// HTTP
if (this.protocol == "http") {
if (this.addr.endsWith(":443")) {
this.addrError = "443通常是HTTPS协议端口请确认源站协议选择是否正确。"
} else if (this.addr.endsWith(":8443")) {
this.addrError = "8443通常是HTTPS协议端口请确认源站协议选择是否正确。"
2021-06-06 09:22:59 +08:00
}
}
// HTTPS
if (this.protocol == "https") {
if (this.addr.endsWith(":80")) {
this.addrError = "80通常是HTTP协议端口请确认源站协议选择是否正确。"
} else if (this.addr.endsWith(":8080")) {
this.addrError = "8080通常是HTTP协议端口请确认源站协议选择是否正确。"
2021-06-06 09:22:59 +08:00
}
}
}
})