发送微信serverjiang

pull/23/head
陶士涵 4 years ago
parent bb51e931f2
commit 71297ddc6c

@ -1,12 +1,8 @@
package tools package tools
import ( import (
"fmt"
"github.com/taoshihan1991/imaptool/models"
"io/ioutil" "io/ioutil"
"log"
"net/http" "net/http"
"strconv"
) )
func Get(url string) string { func Get(url string) string {
@ -21,17 +17,3 @@ func Get(url string) string {
} }
return string(robots) return string(robots)
} }
func SendServerJiang(content string) string {
noticeServerJiang, err := strconv.ParseBool(models.FindConfig("NoticeServerJiang"))
serverJiangAPI := models.FindConfig("ServerJiangAPI")
if err != nil || !noticeServerJiang || serverJiangAPI == "" {
log.Println("do not notice serverjiang:", serverJiangAPI, noticeServerJiang)
return ""
}
sendStr := fmt.Sprintf("%s,访客来了", content)
desp := "[登录](https://gofly.sopans.com/main)"
url := serverJiangAPI + "?text=" + sendStr + "&desp=" + desp
//log.Println(url)
res := Get(url)
return res
}

@ -5,7 +5,6 @@ import (
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"github.com/taoshihan1991/imaptool/models" "github.com/taoshihan1991/imaptool/models"
"github.com/taoshihan1991/imaptool/tools"
"log" "log"
) )
@ -32,7 +31,7 @@ func NewVisitorServer(c *gin.Context) {
Id: vistorInfo.VisitorId, Id: vistorInfo.VisitorId,
To_id: vistorInfo.ToId, To_id: vistorInfo.ToId,
} }
go tools.SendServerJiang(vistorInfo.Name) go SendServerJiang(vistorInfo.Name)
AddVisitorToList(user) AddVisitorToList(user)
for { for {

@ -1,9 +1,14 @@
package ws package ws
import ( import (
"fmt"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"github.com/taoshihan1991/imaptool/models"
"github.com/taoshihan1991/imaptool/tools"
"log"
"net/http" "net/http"
"strconv"
"sync" "sync"
) )
@ -55,3 +60,17 @@ func init() {
} }
} }
func SendServerJiang(content string) string {
noticeServerJiang, err := strconv.ParseBool(models.FindConfig("NoticeServerJiang"))
serverJiangAPI := models.FindConfig("ServerJiangAPI")
if err != nil || !noticeServerJiang || serverJiangAPI == "" {
log.Println("do not notice serverjiang:", serverJiangAPI, noticeServerJiang)
return ""
}
sendStr := fmt.Sprintf("%s,访客来了", content)
desp := "[登录](https://gofly.sopans.com/main)"
url := serverJiangAPI + "?text=" + sendStr + "&desp=" + desp
//log.Println(url)
res := tools.Get(url)
return res
}

Loading…
Cancel
Save