代码拉取完成,页面将自动刷新
同步操作将从 aoe5188/foot 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package main
import (
"bufio"
"encoding/json"
"fmt"
"io"
"os"
"strings"
"tesou.io/platform/foot-parent/foot-api/common/base"
launch2 "tesou.io/platform/foot-parent/foot-core/launch"
service2 "tesou.io/platform/foot-parent/foot-core/module/core/service"
"tesou.io/platform/foot-parent/foot-core/module/leisu/constants"
"tesou.io/platform/foot-parent/foot-core/module/leisu/service"
"tesou.io/platform/foot-parent/foot-core/module/leisu/utils"
service3 "tesou.io/platform/foot-parent/foot-core/module/match/service"
"tesou.io/platform/foot-parent/foot-core/module/wechat/controller"
"tesou.io/platform/foot-parent/foot-spider/launch"
"time"
)
func main() {
HEAD:
inputReader := bufio.NewReader(os.Stdin)
fmt.Printf("Please enter:")
input, err := inputReader.ReadString('\n')
if err != nil {
fmt.Println("There were errors reading, exiting program.")
return
}
input = strings.ToLower(input)
switch input {
case "exit\n", "exit\r\n", "quit\n", "quit\r\n":
break;
case "\n", "\r\n":
goto HEAD
case "init\n", "init\r\n":
launch2.GenTable()
launch2.TruncateTable()
goto HEAD
case "spider\n", "spider\r\n":
launch.Spider()
goto HEAD
case "analy\n", "analy\r\n":
launch2.Analy(false)
goto HEAD
case "baseFace\n", "baseFace\r\n":
launch.Spider_match(4)
launch.Spider_asiaLastNew(true)
launch.Spider_baseFace(true)
goto HEAD
case "limit\n", "limit\r\n":
pubLimitService := new(service.PushLimitService)
publimit := pubLimitService.GetPublimit()
bytes, _ := json.Marshal(publimit)
fmt.Println("发布限制信息为:" + string(bytes))
goto HEAD
case "price\n", "price\r\n":
priceService := new(service.PriceService)
price := priceService.GetPrice()
bytes, _ := json.Marshal(price)
fmt.Println("收费信息为:" + string(bytes))
goto HEAD
case "matchpool\n", "matchpool\r\n":
//测试从雷速获取可发布的比赛池
readCloser := utils.Get(constants.MATCH_LIST_URL)
reader := bufio.NewReader(readCloser)
for {
line, err := reader.ReadBytes('\n')
if err == io.EOF {
break;
} else if err != nil {
fmt.Println(err)
break;
} else {
fmt.Println(string(line))
}
}
//尝试获取比赛列表
poolService := new(service.MatchPoolService)
list := poolService.GetMatchList()
for _, e := range list {
bytes, _ := json.Marshal(e)
fmt.Println(string(bytes))
}
goto HEAD
case "pub\n", "pub\r\n":
pubService := new(service.PushService)
pubService.PubBJDC()
goto HEAD
case "autospider\n", "autospider\r\n":
go func() {
for {
base.Log.Info("--------数据更新开始运行--------")
//1.安装数据库
//2.配置好数据库连接,打包程序发布
//3.程序执行流程,周期定制定为一天三次
//3.1 FS000Application 爬取数据
launch.Spider()
//3.2 FC002AnalyApplication 分析得出推荐列表
launch2.Analy(false)
configService := new(service2.ConfService)
base.Log.Info("--------数据更新周期结束--------")
time.Sleep(time.Duration(configService.GetSpiderCycleTime()) * time.Minute)
}
}()
goto HEAD
case "smh\n", "smh\r\n":
for {
base.Log.Info("--------开始抓取历史数据--------")
launch.Spider_History()
base.Log.Info("--------结束抓取历史数据--------")
time.Sleep(58 * time.Minute)
}
goto HEAD
case "autoleisu\n", "autoleisu\r\n":
go func() {
for {
base.Log.Info("--------发布开始运行--------")
//3.3 FW001PubApplication 执行发布到雷速
pubService := new(service.PushService)
pubService.PubBJDC()
base.Log.Info("--------发布周期结束--------")
time.Sleep(time.Duration(pubService.CycleTime()) * time.Minute)
}
}()
goto HEAD
case "autowechat\n", "autowechat\r\n":
go func() {
for {
base.Log.Info("--------发布公众号开始运行--------")
//3.3 FW001PubApplication 执行发布到雷速
materialController := new(controller.MaterialController)
materialController.ModifyNewsOnly()
base.Log.Info("--------发布公众号周期结束--------")
time.Sleep(10 * time.Minute)
}
}()
goto HEAD
case "auto\n", "auto\r\n":
go func() {
for {
base.Log.Info("--------全量数据更新开始运行--------")
//1.安装数据库
//2.配置好数据库连接,打包程序发布
//3.程序执行流程,周期定制定为一天三次
//3.1 FS000Application 爬取数据
//清空数据库数据,为爬虫作准备
launch.Clean()
launch.Spider()
//3.2 FC002AnalyApplication 分析得出推荐列表
launch2.Analy(false)
configService := new(service2.ConfService)
base.Log.Info("--------全量数据更新周期结束--------")
base.Log.Info("--------全量数据发布公众号开始运行--------")
//3.3 FW001PubApplication 执行发布到雷速
materialController := new(controller.MaterialController)
materialController.ModifyNewsOnly()
base.Log.Info("--------全量数据发布公众号周期结束--------")
time.Sleep(time.Duration(configService.GetSpiderCycleTime()) * time.Minute)
}
}()
//go func() {
// for {
// base.Log.Info("--------发布开始运行--------")
// //3.3 FW001PubApplication 执行发布到雷速
// pubService := new(service.PushService)
// pubService.PubBJDC()
// base.Log.Info("--------发布周期结束--------")
// time.Sleep(time.Duration(pubService.CycleTime()) * time.Minute)
// }
//}()
time.Sleep(10 * time.Second)
go func() {
for {
matchLastService := new(service3.MatchLastService)
matchLasts := matchLastService.FindNear()
if len(matchLasts) > 0 {
base.Log.Info("--------临场比赛,共",len(matchLasts),"场,更新开始运行--------")
launch.Spider_Near()
launch2.Analy_Near()
base.Log.Info("--------临场比赛,共",len(matchLasts),"场,更新周期结束--------")
base.Log.Info("--------临场比赛发布公众号开始运行--------")
//3.3 FW001PubApplication 执行发布到雷速
materialController := new(controller.MaterialController)
materialController.ModifyNewsOnly()
base.Log.Info("--------临场比赛发布公众号周期结束--------")
time.Sleep(5 * 2 * time.Minute)
}else{
time.Sleep(5 * time.Minute)
}
}
}()
goto HEAD
default:
goto HEAD
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。