feat: 添加是否获取地理位置的开关。

This commit is contained in:
YuleiLan 2020-11-12 14:48:27 +08:00
parent 642904c2b4
commit 05bd2702ef
3 changed files with 28 additions and 20 deletions

View File

@ -57,3 +57,5 @@ settings:
ssl:
key: keystring
pem: temp/pem.pem
public:
isLocation: 0

View File

@ -57,3 +57,5 @@ settings:
ssl:
key: keystring
pem: temp/pem.pem
public:
isLocation: 0

View File

@ -5,29 +5,33 @@ import (
"fmt"
"io/ioutil"
"net/http"
"github.com/spf13/viper"
)
func GetLocation(ip string) string {
if ip == "127.0.0.1" || ip == "localhost" {
return "内部IP"
}
resp, err := http.Get("https://restapi.amap.com/v3/ip?ip=" + ip + "&key=3fabc36c20379fbb9300c79b19d5d05e")
if err != nil {
panic(err)
var address = "已关闭位置获取"
if viper.GetBool("settings.public.isLocation") {
if ip == "127.0.0.1" || ip == "localhost" {
return "内部IP"
}
resp, err := http.Get("https://restapi.amap.com/v3/ip?ip=" + ip + "&key=3fabc36c20379fbb9300c79b19d5d05e")
if err != nil {
panic(err)
}
defer resp.Body.Close()
s, err := ioutil.ReadAll(resp.Body)
}
defer resp.Body.Close()
s, err := ioutil.ReadAll(resp.Body)
fmt.Printf(string(s))
m := make(map[string]string)
m := make(map[string]string)
err = json.Unmarshal(s, &m)
if err != nil {
fmt.Println("Umarshal failed:", err)
err = json.Unmarshal(s, &m)
if err != nil {
fmt.Println("Umarshal failed:", err)
}
if m["province"] == "" {
return "未知位置"
}
address = m["province"] + "-" + m["city"]
}
if m["province"] == "" {
return "未知位置"
}
return m["province"] + "-" + m["city"]
return address
}