task.go 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. package services
  2. import (
  3. "context"
  4. "errors"
  5. "fmt"
  6. "github.com/beego/beego/v2/task"
  7. "hongze/hongze_task/models"
  8. "hongze/hongze_task/services/company"
  9. "hongze/hongze_task/services/company_contract"
  10. "hongze/hongze_task/services/data"
  11. "hongze/hongze_task/services/roadshow"
  12. "hongze/hongze_task/utils"
  13. "strconv"
  14. "strings"
  15. "sync"
  16. "time"
  17. )
  18. func Task() {
  19. fmt.Println("task start")
  20. //如果是生产环境,才需要走这些任务
  21. if utils.RunMode == "release" {
  22. releaseTask()
  23. }
  24. //每日定时合同处理
  25. handleCompanyContract := task.NewTask("handleCompanyContract", "0 1 2 * * *", company_contract.HandleCompanyContract)
  26. task.AddTask("每日定时合同处理", handleCompanyContract)
  27. //正式->试用
  28. companyTryOut := task.NewTask("companyTryOut", "0 5 2 * * *", CompanyTryOut)
  29. task.AddTask("正式->试用", companyTryOut)
  30. //试用->冻结
  31. companyFreeze := task.NewTask("companyFreeze", "0 10 2 * * *", CompanyFreeze)
  32. task.AddTask("试用->冻结", companyFreeze)
  33. //冻结->流失
  34. companyLoss := task.NewTask("companyLoss", "0 20 2 * * *", CompanyLoss)
  35. task.AddTask("冻结->流失", companyLoss)
  36. //用户产品权限正式-->试用
  37. companyReportPermissionTryOut := task.NewTask("companyReportPermissionTryOut", "0 30 2 * * *", CompanyReportPermissionTryOut)
  38. task.AddTask("用户产品权限正式-->试用", companyReportPermissionTryOut)
  39. //用户产品权限试用-->关闭
  40. companyReportPermissionClose := task.NewTask("companyReportPermissionClose", "0 35 2 * * *", CompanyReportPermissionClose)
  41. task.AddTask("用户产品权限试用-->关闭", companyReportPermissionClose)
  42. // 存量客户数据统计
  43. stackCompanyStatistic := task.NewTask("stackCompanyStatistic", "0 35 2 * * *", StackCompanyStatistic)
  44. task.AddTask("存量客户数据统计", stackCompanyStatistic)
  45. // 定时往同花顺推送报告
  46. sendWaitReport := task.NewTask("sendWaitReport", "0 */1 * * * * ", SendWaitReport)
  47. task.AddTask("定时往同花顺推送报告", sendWaitReport)
  48. // 研报电话会提醒
  49. ybTelRemind := task.NewTask("YbTelRemind", "0 */1 * * * * ", YbTelRemind)
  50. task.AddTask("研报电话会提醒", ybTelRemind)
  51. // 研报沙龙提醒
  52. ybSalonRemind := task.NewTask("ybSalonRemind", "0 */1 * * * * ", YbSalonRemind)
  53. task.AddTask("研报沙龙提醒", ybSalonRemind)
  54. // 定时新增手工指标数据提醒
  55. addEdbTask := task.NewTask("sendWaitReport", "1 0 2 * * * ", AddEdbTask)
  56. task.AddTask("定时新增手工指标数据提醒", addEdbTask)
  57. //每次服务启动都需要执行一次的
  58. _ = AddEdbTask(nil)
  59. //每日用户阅读数据统计
  60. statisticsUserView := task.NewTask("statisticsUserView", "0 5 2 * * *", StatisticsUserView)
  61. task.AddTask("每日用户阅读数据统计", statisticsUserView)
  62. //路演-活动状态修改
  63. modifyRsCalendarStatus := task.NewTask("modifyRsCalendarStatus", "0 */1 * * * * ", roadshow.ModifyRsCalendarResearcherStatus)
  64. task.AddTask("modifyRsCalendarStatus", modifyRsCalendarStatus)
  65. addReportRecord := task.NewTask("addReportRecord", "0 0 */1 * * *", roadshow.AddReportRecord)
  66. task.AddTask("addReportRecord", addReportRecord)
  67. //ficc存量客户数据统计
  68. addCompanyReportRecord := task.NewTask("addCompanyReportRecord", "0 0 */1 * * *", company.AddCompanyReportRecord)
  69. task.AddTask("addCompanyReportRecord", addCompanyReportRecord)
  70. //rai存量客户数据统计
  71. addRaiCompanyReportRecord := task.NewTask("addRaiCompanyReportRecord", "0 0 */1 * * *", company.AddRaiCompanyReportRecord)
  72. task.AddTask("addRaiCompanyReportRecord", addRaiCompanyReportRecord)
  73. //CRM 6.3 客户列表路演次数统计
  74. roadShowTotal := task.NewTask("roadShowTotal", "0 */30 * * * *", roadshow.RoadShow)
  75. task.AddTask("roadShowTotal", roadShowTotal)
  76. //每半个小时用户阅读数据统计
  77. statisticsUserView1Hour := task.NewTask("statisticsUserView1Hour", "0 */30 * * * *", StatisticsUserView1Hour)
  78. task.AddTask("每半个小时用户阅读数据统计", statisticsUserView1Hour)
  79. //路演公开会议合并
  80. setPublicMeetingUnionCode := task.NewTask("setPublicMeetingUnionCode", "0 */10 * * * *", roadshow.SetPublicMeetingUnionCode)
  81. task.AddTask("setPublicMeetingUnionCode", setPublicMeetingUnionCode)
  82. //同步进门会议参会人员数据
  83. syncComeinMeeting := task.NewTask("SyncComeinMeeting", "0 1 */1 * * * ", SyncComeinMeeting)
  84. task.AddTask("SyncComeinMeeting", syncComeinMeeting)
  85. //同步user_record中的关注状态
  86. syncSubStatus := task.NewTask("syncSubStatus", "0 0 2 * * *", SyncSubStatus)
  87. task.AddTask("syncSubStatus", syncSubStatus)
  88. //删除日志 report_save_log,ppt_v2_save_log,保留一个月的
  89. deleteLog := task.NewTask("syncSubStatus", "0 0 2 1 * *", DeleteLog)
  90. task.AddTask("deleteLog", deleteLog)
  91. // 定时发布研报语音播报
  92. publishVoiceBroadcast := task.NewTask("publishVoiceBroadcast", "0 */1 * * * *", PublishVoiceBroadcast)
  93. task.AddTask("定时发布研报语音播报", publishVoiceBroadcast)
  94. // 定时生成本周研究汇总
  95. cygxResearchSummary := task.NewTask("cygxResearchSummary", "0 0 9 * * 4", CygxResearchSummary)
  96. task.AddTask("定时生成本周研究汇总", cygxResearchSummary)
  97. // 定时生成上周纪要汇总
  98. CygxLastWeekSummary := task.NewTask("CygxLastWeekSummary", "0 0 8 * * 4", CygxLastWeekSummary)
  99. task.AddTask("定时生成上周纪要汇总", CygxLastWeekSummary)
  100. //CygxResearchSummary()
  101. //CygxLastWeekSummary()
  102. task.StartTask()
  103. fmt.Println("task end")
  104. }
  105. //func Task() {
  106. // fmt.Println("start")
  107. // cont := new(context.Context)
  108. // roadshow.SetPublicMeetingUnionCode(*cont)
  109. // fmt.Println("end")
  110. //}
  111. //生产环境需要走的任务
  112. func releaseTask() {
  113. //隆众调研指标获取
  114. getLzSurveyProduct := task.NewTask("getLzSurveyProduct", "0 5 08-19/1 * * * ", GetLzSurveyProduct)
  115. task.AddTask("getLzSurveyProduct", getLzSurveyProduct)
  116. //隆众调研指标数据获取
  117. getLzSurveyProductData := task.NewTask("getLzSurveyProductData", "0 10 08-20/1 * * * ", GetLzSurveyProductData)
  118. task.AddTask("getLzSurveyProductData", getLzSurveyProductData)
  119. //发送邮件
  120. sendEmail := task.NewTask("sendEmail", "0 0 12 * * 0 ", SendEmail)
  121. task.AddTask("sendEmail", sendEmail)
  122. // 正式/试用 用户到期提醒
  123. companyRemind := task.NewTask("companyRemind", "0 30 08 * * *", CompanyRemind)
  124. task.AddTask("companyRemind", companyRemind)
  125. //潜在客户
  126. freeViewerDetail := task.NewTask("freeViewerDetail", "0 0 9 * * 1 ", FreeViewerDetail)
  127. task.AddTask("潜在客户", freeViewerDetail)
  128. //上周增量客户列表
  129. incrementCompany := task.NewTask("incrementCompany", "0 0 9 * * 1 ", IncrementCompany)
  130. task.AddTask("上周增量客户列表", incrementCompany)
  131. //刷新指标数据
  132. refreshData := task.NewTask("refreshData", "0 1 0,19 * * *", RefreshData)
  133. task.AddTask("refreshData", refreshData)
  134. //刷新交易所指标数据
  135. refreshTradeData := task.NewTask("refreshData", "0 1 4 * * *", RefreshTradeData)
  136. task.AddTask("refreshTradeData", refreshTradeData)
  137. //刷新欧洲天然气指标数据
  138. refreshEicData := task.NewTask("refreshData", "0 1 3,7 * * *", RefreshEicData)
  139. task.AddTask("refreshEicData", refreshEicData)
  140. //刷新指标基础数据
  141. refreshBaseData := task.NewTask("refreshBaseData", "0 */30 * * * * ", RefreshBaseData)
  142. task.AddTask("refreshBaseData", refreshBaseData)
  143. //同步弘则数据库中来自,钢联,隆众,有色,人工等基础数据--每隔五分钟,同步一次最新数据
  144. syncBaseData := task.NewTask("syncBaseData", "0 */5 * * * * ", SyncBaseData)
  145. task.AddTask("syncBaseData", syncBaseData)
  146. syncBaseDataExt := task.NewTask("syncBaseDataExt", "0 */30 * * * * ", SyncBaseDataExt)
  147. task.AddTask("syncBaseDataExt", syncBaseDataExt)
  148. // 定时往同花顺同步微信群的截止日期(凌晨4点)
  149. syncThsWxGroupEveryDay := task.NewTask("syncThsWxGroupEveryDay", "0 1 4 * * * ", SyncWxGroupEveryDay)
  150. task.AddTask("定时往同花顺同步微信群的截止日期", syncThsWxGroupEveryDay)
  151. //检测数据服务器
  152. checkDataServer := task.NewTask("checkDataServer", "0 */2 * * * * ", checkDataServer)
  153. task.AddTask("checkDataServer", checkDataServer)
  154. //初始化指标更新状态
  155. resetEdbInfoIsUpdate := task.NewTask("resetEdbInfoIsUpdate", "0 0 0 * * *", data.ResetEdbInfoIsUpdate)
  156. task.AddTask("resetEdbInfoIsUpdate", resetEdbInfoIsUpdate)
  157. // 定时检测同花顺客群推送消息状态
  158. checkThsReportList := task.NewTask("checkThsReportList", "0 */2 * * * * ", CheckThsReportList)
  159. task.AddTask("checkThsReportList", checkThsReportList)
  160. }
  161. func TaskTest() {
  162. fmt.Println("The task is start")
  163. //companyReportPermissionClose := task.NewTask("companyTryOut", "0 5 0 * * *", CompanyReportPermissionClose)
  164. //companyReportPermissionClose := task.NewTask("companyReportPermissionClose", "0/30 * * * * *", CompanyReportPermissionClose)
  165. //task.AddTask("用户产品权限试用-->关闭", companyReportPermissionClose)
  166. //publishVoiceBroadcast := task.NewTask("publishVoiceBroadcast", "0 */1 * * * *", PublishVoiceBroadcast)
  167. //task.AddTask("定时发布研报语音播报", publishVoiceBroadcast)
  168. task.StartTask()
  169. fmt.Println("The task is end")
  170. }
  171. func SendEmail(cont context.Context) (err error) {
  172. //报告历史访问次数
  173. go ReportViewTimes()
  174. //报告访问详情
  175. go ReportViewDetail()
  176. //用户权限统计
  177. go HongzeUsers()
  178. return
  179. }
  180. func OneMinute(cont context.Context) (err error) {
  181. //日度
  182. //FrequencyByDay()
  183. //周度
  184. FrequencyByWeek()
  185. //月度
  186. FrequencyByMonth()
  187. return
  188. }
  189. func RefreshData(cont context.Context) (err error) {
  190. wg := sync.WaitGroup{}
  191. wg.Add(11)
  192. //hour := time.Now().Hour()
  193. //if hour != 0 {
  194. //}
  195. go data.RefreshDataFromWind(&wg)
  196. //同花顺
  197. go data.RefreshDataFromThs(&wg)
  198. //彭博
  199. go data.RefreshDataFromPb(&wg)
  200. //彭博财务
  201. go data.RefreshDataFromPbFinance(&wg)
  202. //手工数据
  203. go data.RefreshDataFromManual(&wg)
  204. //隆众数据
  205. go data.RefreshDataFromLz(&wg)
  206. //有色
  207. go data.RefreshDataFromYs(&wg)
  208. //钢联
  209. go data.RefreshDataFromGl(&wg)
  210. //路透
  211. go data.RefreshDataFromLt(&wg)
  212. //煤炭
  213. go data.RefreshDataFromCoal(&wg)
  214. //谷歌出行数据
  215. go data.RefreshDataFromGoogleTravel(&wg)
  216. wg.Wait()
  217. ////计算指标
  218. data.RefreshDataFromCalculateAll()
  219. time.Sleep(5 * time.Second)
  220. data.RefreshNotice()
  221. fmt.Println("Refresh End")
  222. return
  223. }
  224. // RefreshTradeData 刷新交易所数据
  225. func RefreshTradeData(cont context.Context) (err error) {
  226. wg := sync.WaitGroup{}
  227. wg.Add(5)
  228. //郑商所
  229. go data.RefreshDataFromZz(&wg)
  230. //上期所
  231. go data.RefreshDataFromSh(&wg)
  232. //上期能源
  233. go data.RefreshDataFromShfe(&wg)
  234. //中金所
  235. go data.RefreshDataFromCffex(&wg)
  236. //大商所
  237. go data.RefreshDataFromDl(&wg)
  238. wg.Wait()
  239. //计算指标
  240. data.RefreshDataFromCalculateAll()
  241. return
  242. }
  243. // RefreshEicData 刷新欧洲天然气数据
  244. func RefreshEicData(cont context.Context) (err error) {
  245. wg := sync.WaitGroup{}
  246. wg.Add(1)
  247. //欧洲天然气
  248. go data.RefreshDataFromEic(&wg)
  249. wg.Wait()
  250. //计算指标
  251. data.RefreshDataFromCalculateAll()
  252. return
  253. }
  254. //刷新基础数据
  255. func RefreshBaseData(cont context.Context) (err error) {
  256. now := time.Now()
  257. if now.Hour() == 0 || now.Hour() == 19 {
  258. return nil
  259. }
  260. //同步有色基础指标数据
  261. go data.SyncSmmIndexDataBase()
  262. return
  263. }
  264. //刷新基础数据
  265. func SyncBaseData(cont context.Context) (err error) {
  266. now := time.Now()
  267. if now.Hour() == 0 || now.Hour() == 19 {
  268. return nil
  269. }
  270. //同步钢联基础数据
  271. go data.SyncGlDataBase()
  272. return
  273. }
  274. //刷新基础数据
  275. func SyncBaseDataExt(cont context.Context) (err error) {
  276. now := time.Now()
  277. if now.Hour() == 0 || now.Hour() == 19 {
  278. return nil
  279. }
  280. //同步隆众基础数据
  281. go data.SyncLzDataBase()
  282. //同步手工数据
  283. go data.SyncManualDataBase()
  284. //同步有色基础数据
  285. go data.SyncSmmDataBase()
  286. //刷新图表中,指标的最新日期
  287. go data.SetChartEdbEndDate()
  288. return
  289. }
  290. // EdbTaskNameMap 手工指标定时任务名称map集合
  291. var EdbTaskNameMap map[string]map[string]bool
  292. // EdbTaskNameChannel 手工指标定时任务名称channel
  293. var EdbTaskNameChannel chan string
  294. // EdbTaskStopChannel 手工指标定时任务停止channel
  295. var EdbTaskStopChannel chan string
  296. // EdbTaskRunNum 手工指标定时任务开始次数
  297. var EdbTaskRunNum int
  298. // AddEdbTask 新增手工指标数据录入提醒
  299. func AddEdbTask(cont context.Context) (err error) {
  300. //失败列表
  301. failList := make([]string, 0)
  302. defer func() {
  303. if len(failList) > 0 {
  304. fmt.Println("提醒失败:")
  305. for _, v := range failList {
  306. fmt.Println(v)
  307. }
  308. }
  309. }()
  310. list, err := models.GetEdbInfoByFrequencyNotDay()
  311. if err != nil {
  312. fmt.Println("查询获取频度非日度 且 提醒时间不为空 的指标数据失败,Err:", err.Error())
  313. }
  314. //如果还没有初始化map,那么先初始
  315. if EdbTaskNameMap == nil {
  316. EdbTaskNameMap = make(map[string]map[string]bool)
  317. }
  318. tmpEdbTaskNameMap := make(map[string]bool)
  319. // 今天的日期字符串(格式:2021-10-25)
  320. todayStr := time.Now().Format(utils.FormatDate)
  321. //当前周的周一与周日
  322. nowWeekFirstDay := utils.GetNowWeekMonday()
  323. nowWeekLastDay := utils.GetNowWeekLastDay()
  324. //当前月的一号与最后一天
  325. nowMonthFirstDay := utils.GetNowMonthFirstDay()
  326. nowMonthLastDay := utils.GetNowMonthLastDay()
  327. //当前季度的第一天与最后一天
  328. nowQuarterFirstDay := utils.GetNowQuarterFirstDay()
  329. nowQuarterLastDay := utils.GetNowQuarterLastDay()
  330. //当前半年的第一天与最后一天
  331. nowHalfYearFirstDay := utils.GetNowHalfYearFirstDay()
  332. nowHalfYearLastDay := utils.GetNowHalfYearLastDay()
  333. // 当前年的第一天与最后一天
  334. nowYearFirstDay := utils.GetNowYearFirstDay()
  335. nowYearLastDay := utils.GetNowYearLastDay()
  336. debugNoticeUserId := 0 //测试环境,需要发送消息的用户
  337. //测试环境也不发了
  338. //if utils.RunMode == "debug" {
  339. // tmpWxUser, tmpErr := models.GetWxUserByMobile("17634786714")
  340. // if tmpErr == nil && tmpWxUser != nil {
  341. // //debugNoticeUserId = 44078 //测试环境的话,发送邮箱给颜鹏
  342. // debugNoticeUserId = int(tmpWxUser.UserId) //测试环境的话,发送邮箱给嘉豪
  343. // }
  344. //}
  345. //task.globalTaskManager.adminTaskList
  346. for _, edb := range list {
  347. if edb.UserId <= 0 {
  348. continue //没有配置user_id的话,那么不需要提醒
  349. }
  350. tmpEdb := edb //指标信息
  351. isNotice := false //是否需要提醒
  352. noticeTime := "12:00:00" //提醒时间
  353. var dataDtTime time.Time
  354. edbData, tmpErr := models.GetLastEdbdataInfo(tmpEdb.TradeCode)
  355. if tmpErr != nil {
  356. if tmpErr.Error() != utils.ErrNoRow() {
  357. failList = append(failList, fmt.Sprint(tmpEdb.TradeCode, "失败,Err:", tmpErr.Error()))
  358. continue
  359. }
  360. }
  361. //如果确实是有数据的
  362. if edbData != nil {
  363. tmpDataDtTime, _ := time.ParseInLocation(utils.FormatDate, edbData.Dt, time.Now().Location())
  364. dataDtTime = tmpDataDtTime
  365. }
  366. switch tmpEdb.Frequency {
  367. case "周度":
  368. modifyDate := nowWeekLastDay //下次更新日期
  369. if tmpEdb.NoticeTime != "" {
  370. addDay := 7
  371. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  372. if len(noticeArr) >= 2 {
  373. noticeTime = noticeArr[1]
  374. }
  375. noticeWeek := noticeArr[0]
  376. switch noticeWeek {
  377. case "周一":
  378. addDay = 1
  379. case "周二":
  380. addDay = 2
  381. case "周三":
  382. addDay = 3
  383. case "周四":
  384. addDay = 4
  385. case "周五":
  386. addDay = 5
  387. case "周六":
  388. addDay = 6
  389. case "周日":
  390. addDay = 7
  391. }
  392. modifyDate = modifyDate.AddDate(0, 0, addDay-7)
  393. }
  394. //如果正好是提醒日,同时本周没有过记录,那么需要提醒
  395. if todayStr == modifyDate.Format(utils.FormatDate) && !nowWeekFirstDay.Before(dataDtTime) {
  396. isNotice = true
  397. }
  398. case "月度":
  399. addDay := 0
  400. modifyDate := nowMonthLastDay //下次更新日期
  401. if tmpEdb.NoticeTime != "" {
  402. strArr := strings.Split(tmpEdb.NoticeTime, "日")
  403. if len(strArr) >= 2 {
  404. noticeTime = strArr[1]
  405. }
  406. tmpAddDay, tmpErr := strconv.Atoi(strArr[0])
  407. if tmpErr != nil {
  408. continue
  409. }
  410. addDay = tmpAddDay - 1
  411. modifyDate = nowMonthFirstDay.AddDate(0, 0, addDay)
  412. }
  413. //如果正好是提醒日,同时本月没有过记录,那么需要提醒
  414. if todayStr == modifyDate.Format(utils.FormatDate) && !nowMonthFirstDay.Before(dataDtTime) {
  415. isNotice = true
  416. }
  417. case "季度":
  418. //提醒时间
  419. if tmpEdb.NoticeTime != "" {
  420. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  421. if len(noticeArr) >= 2 {
  422. noticeTime = noticeArr[1]
  423. }
  424. }
  425. //每季度更新数据时间
  426. //如果正好是提醒日(每季度最后一天),同时本季度没有过记录,那么需要提醒
  427. if todayStr == nowQuarterLastDay.Format(utils.FormatDate) && !nowQuarterFirstDay.Before(dataDtTime) {
  428. isNotice = true
  429. }
  430. case "半年度":
  431. //提醒时间
  432. if tmpEdb.NoticeTime != "" {
  433. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  434. if len(noticeArr) >= 2 {
  435. noticeTime = noticeArr[1]
  436. }
  437. }
  438. //每半年度更新数据时间
  439. //如果正好是提醒日(每半年度最后一天),同时本半年度没有过记录,那么需要提醒
  440. if todayStr == nowHalfYearLastDay.Format(utils.FormatDate) && !nowHalfYearFirstDay.Before(dataDtTime) {
  441. isNotice = true
  442. }
  443. case "年度":
  444. //提醒时间
  445. if tmpEdb.NoticeTime != "" {
  446. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  447. if len(noticeArr) >= 2 {
  448. noticeTime = noticeArr[1]
  449. }
  450. }
  451. //每年度更新数据时间
  452. //如果正好是提醒日(每年度最后一天),同时半年度没有过记录,那么需要提醒
  453. if todayStr == nowYearLastDay.Format(utils.FormatDate) && !nowYearFirstDay.Before(dataDtTime) {
  454. isNotice = true
  455. }
  456. }
  457. if isNotice {
  458. taskName := "edb_task_" + todayStr + ":" + fmt.Sprint(tmpEdb.TradeCode)
  459. //fmt.Println(taskName, ";", tmpEdb.SecName)
  460. //定时任务
  461. tmpTaskFunc := func(ctx context.Context) (funcErr error) {
  462. //方法执行结束后,移除定时任务
  463. defer func() {
  464. EdbTaskNameChannel <- taskName
  465. }()
  466. // 匿名方法内判断是否发送提醒,因为可能时间到的时候,发现
  467. funcIsNotice := false
  468. // 再次获取指标数据详情
  469. edbData, tmpErr := models.GetLastEdbdataInfo(tmpEdb.TradeCode)
  470. if tmpErr != nil {
  471. if tmpErr.Error() != utils.ErrNoRow() {
  472. funcErr = tmpErr
  473. return
  474. }
  475. }
  476. if utils.RunMode == "debug" && debugNoticeUserId > 0 {
  477. tmpEdb.UserId = debugNoticeUserId //测试环境的话,发送邮箱给嘉豪
  478. }
  479. //数据过期时间
  480. var funcDataDtTime time.Time
  481. //如果确实是有数据的
  482. if edbData != nil {
  483. tmpDataDtTime, _ := time.ParseInLocation(utils.FormatDate, edbData.Dt, time.Now().Location())
  484. funcDataDtTime = tmpDataDtTime
  485. }
  486. //提示频度文案
  487. notifyFrequency := "每日"
  488. switch tmpEdb.Frequency {
  489. case "周度":
  490. notifyFrequency = "每周"
  491. modifyDate := nowWeekLastDay //下次更新日期
  492. if tmpEdb.NoticeTime != "" {
  493. addDay := 7
  494. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  495. if len(noticeArr) >= 2 {
  496. noticeTime = noticeArr[1]
  497. }
  498. noticeWeek := noticeArr[0]
  499. switch noticeWeek {
  500. case "周一":
  501. addDay = 1
  502. case "周二":
  503. addDay = 2
  504. case "周三":
  505. addDay = 3
  506. case "周四":
  507. addDay = 4
  508. case "周五":
  509. addDay = 5
  510. case "周六":
  511. addDay = 6
  512. case "周日":
  513. addDay = 7
  514. }
  515. modifyDate = modifyDate.AddDate(0, 0, addDay-7)
  516. }
  517. //如果正好是提醒日,同时本周没有过记录,那么需要提醒
  518. if todayStr == modifyDate.Format(utils.FormatDate) && !nowWeekFirstDay.Before(funcDataDtTime) {
  519. funcIsNotice = true
  520. }
  521. case "月度":
  522. notifyFrequency = "每月"
  523. addDay := 0
  524. modifyDate := nowMonthLastDay //下次更新日期
  525. if tmpEdb.NoticeTime != "" {
  526. strArr := strings.Split(tmpEdb.NoticeTime, "日")
  527. if len(strArr) >= 2 {
  528. noticeTime = strArr[1]
  529. }
  530. tmpAddDay, tmpErr := strconv.Atoi(strArr[0])
  531. if tmpErr != nil {
  532. funcErr = tmpErr
  533. }
  534. addDay = tmpAddDay - 1
  535. modifyDate = nowMonthFirstDay.AddDate(0, 0, addDay)
  536. }
  537. //如果正好是提醒日,同时本月没有过记录,那么需要提醒
  538. if todayStr == modifyDate.Format(utils.FormatDate) && !nowMonthFirstDay.Before(funcDataDtTime) {
  539. funcIsNotice = true
  540. }
  541. case "季度":
  542. notifyFrequency = "每季度"
  543. //提醒时间
  544. if tmpEdb.NoticeTime != "" {
  545. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  546. if len(noticeArr) >= 2 {
  547. noticeTime = noticeArr[1]
  548. }
  549. }
  550. //每季度更新数据时间
  551. //如果正好是提醒日(每季度最后一天),同时本季度没有过记录,那么需要提醒
  552. if todayStr == nowQuarterLastDay.Format(utils.FormatDate) && !nowQuarterFirstDay.Before(funcDataDtTime) {
  553. funcIsNotice = true
  554. }
  555. case "半年度":
  556. notifyFrequency = "每半年度"
  557. //提醒时间
  558. if tmpEdb.NoticeTime != "" {
  559. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  560. if len(noticeArr) >= 2 {
  561. noticeTime = noticeArr[1]
  562. }
  563. }
  564. //每半年度更新数据时间
  565. //如果正好是提醒日(每半年度最后一天),同时本半年度没有过记录,那么需要提醒
  566. if todayStr == nowHalfYearLastDay.Format(utils.FormatDate) && !nowHalfYearFirstDay.Before(funcDataDtTime) {
  567. funcIsNotice = true
  568. }
  569. case "年度":
  570. notifyFrequency = "每年"
  571. //提醒时间
  572. if tmpEdb.NoticeTime != "" {
  573. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  574. if len(noticeArr) >= 2 {
  575. noticeTime = noticeArr[1]
  576. }
  577. }
  578. //每年度更新数据时间
  579. //如果正好是提醒日(每年度最后一天),同时半年度没有过记录,那么需要提醒
  580. if todayStr == nowYearLastDay.Format(utils.FormatDate) && !nowYearFirstDay.Before(funcDataDtTime) {
  581. funcIsNotice = true
  582. }
  583. }
  584. //fmt.Println(tmpEdb.TradeCode, " funcIsNotice:", funcIsNotice)
  585. //如果还是要提醒
  586. if funcIsNotice {
  587. //用户微信openid列表数据
  588. openIdList := make([]*models.OpenIdList, 0)
  589. //获取用户信息
  590. isAdmin := true
  591. admin, err := models.GetAdminByAdminId(tmpEdb.UserId)
  592. if err != nil {
  593. if err.Error() == utils.ErrNoRow() {
  594. isAdmin = false
  595. } else {
  596. return err
  597. }
  598. }
  599. if admin == nil {
  600. isAdmin = false
  601. }
  602. if isAdmin {
  603. if admin.Mobile == "" {
  604. } else {
  605. wxUser, err := models.GetWxUserByMobile(admin.Mobile)
  606. if err != nil {
  607. return err
  608. }
  609. if wxUser == nil {
  610. funcErr = errors.New("用户信息不存在:mobile:" + admin.Mobile)
  611. return err
  612. }
  613. tmpOpenidList, err := models.GetUserOpenidListByUserId(int(wxUser.UserId))
  614. if err != nil {
  615. return err
  616. }
  617. openIdList = tmpOpenidList
  618. }
  619. } else {
  620. tmpOpenidList, err := models.GetUserOpenidListByUserId(tmpEdb.UserId)
  621. if err != nil {
  622. return err
  623. }
  624. openIdList = tmpOpenidList
  625. }
  626. //发送消息
  627. if len(openIdList) <= 0 {
  628. funcErr = errors.New("openId 列表为空" + strconv.Itoa(tmpEdb.UserId))
  629. return
  630. }
  631. first := "数据录入提醒"
  632. keyword1 := tmpEdb.SecName
  633. keyword2 := notifyFrequency + " " + tmpEdb.NoticeTime
  634. remark := tmpEdb.SecName + "该更新了"
  635. err = SendWxMsgWithFrequency(first, keyword1, keyword2, remark, openIdList)
  636. if err != nil {
  637. return err
  638. }
  639. //发送成功,记录发送日志
  640. {
  641. sendRecord := new(models.EdbinfoSendMsgRecord)
  642. sendRecord.UserId = tmpEdb.UserId
  643. sendRecord.TradeCode = tmpEdb.TradeCode
  644. sendRecord.CreateTime = time.Now()
  645. err = models.AddEdbinfoSendMsgRecord(sendRecord)
  646. if err != nil {
  647. return err
  648. }
  649. }
  650. }
  651. return
  652. }
  653. //添加定时任务(没有设置通知时间就不进行定时任务通知了)
  654. spec := ``
  655. if noticeTime != "" {
  656. noticeArr := strings.Split(noticeTime, ":")
  657. if len(noticeArr) == 3 {
  658. //spec = ` */20 * * * * * `
  659. spec = fmt.Sprintf(` %s %s %s * * * `, noticeArr[2], noticeArr[1], noticeArr[0])
  660. //定时任务开始的时间
  661. tmpTask := task.NewTask(taskName, spec, tmpTaskFunc)
  662. task.AddTask(taskName, tmpTask)
  663. tmpEdbTaskNameMap[taskName] = true
  664. }
  665. }
  666. }
  667. }
  668. //将当天的手工指标加入到手工指标池去
  669. EdbTaskNameMap[todayStr] = tmpEdbTaskNameMap
  670. //开启协程,用来清除定时任务
  671. go deleteTask()
  672. //如果当前定时任务执行次数大于0次,那么需要往手工指标定时任务停止channel写入数据,用来关闭昨天没有执行的的定时任务
  673. if EdbTaskRunNum > 0 {
  674. //清除昨天的数据
  675. EdbTaskStopChannel <- time.Now().AddDate(0, 0, -1).Format(utils.FormatDate)
  676. }
  677. //手工指标定时任务开始次数累加
  678. EdbTaskRunNum++
  679. return
  680. //fmt.Println(task.NewMapSorter())
  681. }
  682. // deleteTask 清除已通知的任务
  683. func deleteTask() {
  684. for {
  685. select {
  686. case taskName := <-EdbTaskNameChannel:
  687. task.DeleteTask(taskName)
  688. delete(EdbTaskNameMap, taskName)
  689. case dayStr := <-EdbTaskStopChannel: //收到停止信号,先清除掉那一天的定时任务,
  690. for taskName := range EdbTaskNameMap[dayStr] {
  691. task.DeleteTask(taskName)
  692. delete(EdbTaskNameMap, taskName)
  693. }
  694. break
  695. }
  696. }
  697. }
  698. //检测数据服务
  699. func checkDataServer(cont context.Context) (err error) {
  700. //检测wind新服务器
  701. go data.CheckWindDataInterface(cont)
  702. //检测同花顺数据服务器
  703. //go data.CheckThsDataInterface(cont)
  704. //检测路透数据服务器
  705. go data.CheckLtDataInterface(cont)
  706. //检测彭博
  707. go data.CheckPbDataInterface(cont)
  708. return
  709. }