| 123456789101112131415161718192021222324 |
- package controller
- import (
- "fmt"
- "github.com/wenstudio/gofly/models"
- "github.com/wenstudio/gofly/tools"
- "log"
- "strconv"
- )
- 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
- }
|