task.go 25 KB

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