|
@@ -8,6 +8,7 @@ import (
|
|
|
"net/http"
|
|
|
"net/url"
|
|
|
"github.com/beego/beego/v2/server/web"
|
|
|
+ "strings"
|
|
|
|
|
|
"github.com/rdlucklib/rdluck_tools/log"
|
|
|
)
|
|
@@ -31,7 +32,14 @@ func (this *BaseAuthController) Prepare() {
|
|
|
fmt.Println("enter prepare")
|
|
|
method := this.Ctx.Input.Method()
|
|
|
uri := this.Ctx.Input.URI()
|
|
|
- fmt.Println("Url:", uri)
|
|
|
+ ip := this.Ctx.Input.IP()
|
|
|
+ fmt.Println("Url:", uri+";ip:"+ip)
|
|
|
+ if strings.Contains(ip, "61.140.25.94") {
|
|
|
+ this.JSON(models.BaseResponse{Ret: 6000, Msg: "该图表已被删除", ErrMsg: "该图表已被删除"}, false, false)
|
|
|
+ this.StopRun()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
if method != "HEAD" {
|
|
|
if method == "POST" || method == "GET" {
|
|
|
//authorization := this.Ctx.Input.Header("authorization")
|