广告平台(站长使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

248 lines
9.9 KiB

  1. package svc
  2. import (
  3. "applet/app/e"
  4. "applet/app/md"
  5. "applet/app/utils"
  6. db "code.fnuoos.com/zhimeng/model.git/src"
  7. "fmt"
  8. "github.com/gin-gonic/gin"
  9. "strings"
  10. "time"
  11. )
  12. func OperatorIndexTotal(c *gin.Context) {
  13. //昨天
  14. yesterday := utils.GetTimeRange("yesterday")
  15. yesterdayTotal := commOperatorTotal(c, time.Unix(yesterday["start"], 0).Format("2006-01-02"), time.Unix(yesterday["end"]-3600, 0).Format("2006-01-02"))
  16. //前天
  17. beforeYesterDayTotal := commOperatorTotal(c, time.Unix(yesterday["start"]-86400, 0).Format("2006-01-02"), time.Unix(yesterday["start"]-3600, 0).Format("2006-01-02"))
  18. //7天
  19. withinSevenDays := utils.GetTimeRange("new_within_seven_days")
  20. withinSevenDaysTotal := commOperatorTotal(c, time.Unix(withinSevenDays["start"], 0).Format("2006-01-02"), time.Unix(withinSevenDays["end"]-3600, 0).Format("2006-01-02"))
  21. //7天前的 7天
  22. beforeWithinSevenDaysTotal := commOperatorTotal(c, time.Unix(withinSevenDays["start"]-3600-7*86400, 0).Format("2006-01-02"), time.Unix(withinSevenDays["start"]-3600, 0).Format("2006-01-02"))
  23. //本月
  24. currentMonth := utils.GetTimeRange("current_month")
  25. currentMonthTotal := commOperatorTotal(c, time.Unix(currentMonth["start"], 0).Format("2006-01-02"), time.Unix(currentMonth["end"]-3600, 0).Format("2006-01-02"))
  26. //上月
  27. lastMonth := utils.GetTimeRange("last_month")
  28. lastMonthTotal := commOperatorTotal(c, time.Unix(lastMonth["start"], 0).Format("2006-01-02"), time.Unix(lastMonth["end"]-3600, 0).Format("2006-01-02"))
  29. //上上月
  30. beforeLastMonth := time.Unix(lastMonth["start"]-86400, 0)
  31. beforeLastMonthStr := time.Date(beforeLastMonth.Year(), beforeLastMonth.Month(), 1, 0, 0, 0, 0, beforeLastMonth.Location())
  32. beforeLastMonthTotal := commOperatorTotal(c, beforeLastMonthStr.Format("2006-01-02"), time.Unix(lastMonth["start"]-3600, 0).Format("2006-01-02"))
  33. res := []md.IndexAppListDataList{
  34. {Name: "昨日收益(媒体)", Type: "yesterday", Bili: commBili(c, beforeYesterDayTotal, yesterdayTotal, "media_revenue"), Value: utils.Float64ToStr(utils.StrToFloat64(yesterdayTotal[0]["media_revenue"]) / 100)},
  35. {Name: "七日收益(媒体)", Type: "within_seven_days", Bili: commBili(c, beforeWithinSevenDaysTotal, withinSevenDaysTotal, "media_revenue"), Value: utils.Float64ToStr(utils.StrToFloat64(withinSevenDaysTotal[0]["media_revenue"]) / 100)},
  36. {Name: "本月收益(媒体)", Type: "current_month", Bili: commBili(c, lastMonthTotal, currentMonthTotal, "media_revenue"), Value: utils.Float64ToStr(utils.StrToFloat64(currentMonthTotal[0]["media_revenue"]) / 100)},
  37. {Name: "上月收益(媒体)", Type: "last_month", Bili: commBili(c, beforeLastMonthTotal, lastMonthTotal, "media_revenue"), Value: utils.Float64ToStr(utils.StrToFloat64(lastMonthTotal[0]["media_revenue"]) / 100)},
  38. {Name: "昨日曝光量(媒体)", Type: "yesterday", Bili: commBili(c, beforeYesterDayTotal, yesterdayTotal, "exposure_count"), Value: yesterdayTotal[0]["exposure_count"]},
  39. {Name: "七日曝光量(媒体)", Type: "within_seven_days", Bili: commBili(c, beforeWithinSevenDaysTotal, withinSevenDaysTotal, "exposure_count"), Value: withinSevenDaysTotal[0]["exposure_count"]},
  40. {Name: "本月曝光量(媒体)", Type: "current_month", Bili: commBili(c, lastMonthTotal, currentMonthTotal, "exposure_count"), Value: currentMonthTotal[0]["exposure_count"]},
  41. {Name: "上月曝光量(媒体)", Type: "last_month", Bili: commBili(c, beforeLastMonthTotal, lastMonthTotal, "exposure_count"), Value: lastMonthTotal[0]["exposure_count"]},
  42. }
  43. e.OutSuc(c, res, nil)
  44. return
  45. }
  46. func OperatorBeforeSevenPoint(c *gin.Context, req md.IndexAppListTableReq) map[string][]string {
  47. start := utils.TimeStdParseUnix(req.StartDate + " 00:00:00")
  48. day := (utils.TimeStdParseUnix(req.EndDate+" 00:00:00")-start)/86400 + 1
  49. first := start - day*86400*6
  50. dayAll := (utils.TimeStdParseUnix(req.EndDate+" 00:00:00")-first)/86400 + 1
  51. firstTime := time.Unix(first, 0).Format("2006-01-02")
  52. appData := make(map[string][]string)
  53. for _, v := range req.AppId {
  54. appData[v] = make([]string, dayAll/day+1, dayAll/day+1)
  55. }
  56. dateList := make(map[int]string)
  57. j := 1
  58. for i := 0; i < int(dayAll); i++ {
  59. if i >= (j-1)*int(day) && i < j*int(day) {
  60. dateList[j-1] += "," + time.Unix(first+int64(i)*86400, 0).Format("2006-01-02")
  61. continue
  62. }
  63. j++
  64. dateList[j-1] += "," + time.Unix(first+int64(i)*86400, 0).Format("2006-01-02")
  65. }
  66. if len(req.AppId) > 0 {
  67. date := commOperatorTotalByDate(c, firstTime, req.EndDate, req.AppId)
  68. for _, v := range date {
  69. for k1, v1 := range dateList {
  70. if strings.Contains(v1, v["date"]) {
  71. appData[v["app_id"]][k1] = utils.Float64ToStr(utils.StrToFloat64(appData[v["app_id"]][k1]) + utils.StrToFloat64(v["media_revenue"])/100)
  72. }
  73. }
  74. }
  75. }
  76. for k, v := range appData {
  77. for k1, v1 := range v {
  78. if v1 == "" {
  79. appData[k][k1] = "0"
  80. }
  81. }
  82. }
  83. return appData
  84. }
  85. func OperatorIndexAppList(c *gin.Context, req md.IndexAppListReq) md.IndexAppListRes {
  86. appId := make([]string, 0)
  87. data := commOperatorTotalByApp(c, req, appId)
  88. for _, v := range data {
  89. appId = append(appId, v["app_id"])
  90. }
  91. start := utils.TimeStdParseUnix(req.StartDate + " 00:00:00")
  92. day := (utils.TimeStdParseUnix(req.EndDate+" 00:00:00") - start) / 86400
  93. req.EndDate = time.Unix(start-1, 0).Format("2006-01-02")
  94. req.StartDate = time.Unix(start-1-day*86400, 0).Format("2006-01-02")
  95. dataLast := commOperatorTotalByApp(c, req, appId)
  96. dataLastMap := make(map[string][]map[string]string)
  97. for _, v := range dataLast {
  98. dataLastMap[v["app_id"]] = make([]map[string]string, 0)
  99. dataLastMap[v["app_id"]] = append(dataLastMap[v["app_id"]], v)
  100. }
  101. list := make([]md.IndexAppListData, 0)
  102. for _, v := range data {
  103. _, ok := dataLastMap[v["app_id"]]
  104. if ok == false {
  105. dataLastMap[v["app_id"]] = []map[string]string{
  106. {"media_revenue": "0", "ecpm": "0", "exposure_count": "0", "click_count": "0", "click_rate": "0"},
  107. }
  108. }
  109. tmpList := []map[string]string{
  110. v,
  111. }
  112. dataList := []md.IndexAppListDataList{
  113. {Name: "广告预估收益", Type: "media_revenue", Bili: commBili(c, dataLastMap[v["app_id"]], tmpList, "media_revenue"), Value: utils.Float64ToStr(utils.StrToFloat64(v["media_revenue"]) / 100)},
  114. {Name: "ECPM", Type: "ecpm", Bili: commBili(c, dataLastMap[v["app_id"]], tmpList, "ecpm"), Value: utils.Float64ToStr(utils.StrToFloat64(v["ecpm"]) / 100 / utils.StrToFloat64(v["count"]))},
  115. {Name: "曝光量", Type: "exposure_count", Bili: commBili(c, dataLastMap[v["app_id"]], tmpList, "exposure_count"), Value: v["exposure_count"]},
  116. {Name: "点击量", Type: "click_count", Bili: commBili(c, dataLastMap[v["app_id"]], tmpList, "click_count"), Value: v["click_count"]},
  117. {Name: "点击率", Type: "click_rate", Bili: commBili(c, dataLastMap[v["app_id"]], tmpList, "click_rate"), Value: utils.GetPrec(v["click_rate"], "2") + "%"},
  118. }
  119. applet := GetAppletInfo(c, v["app_id"])
  120. tmp := md.IndexAppListData{
  121. Name: applet["name"],
  122. Logo: applet["logo"],
  123. List: dataList,
  124. TableList: []string{},
  125. }
  126. list = append(list, tmp)
  127. }
  128. res := md.IndexAppListRes{
  129. List: list,
  130. AppId: appId,
  131. Sort: []md.SelectData{
  132. {Name: "按收益最高", Value: "media_revenue desc"},
  133. {Name: "按ECPM最高", Value: "ecpm desc"},
  134. {Name: "按曝光量最高", Value: "exposure_count desc"},
  135. },
  136. }
  137. return res
  138. }
  139. func commOperatorTotal(c *gin.Context, startDate, endDate string) []map[string]string {
  140. sql := `
  141. SELECT
  142. SUM(exposure_count) as exposure_count,
  143. SUM(click_count) as click_count,
  144. SUM(click_rate) as click_rate,
  145. SUM(ecpm) as ecpm,
  146. SUM(media_revenue) as media_revenue
  147. FROM generate_wx_ad_data
  148. where %s
  149. `
  150. where := "is_generate_report=1 and uuid=" + c.GetString("mid")
  151. if startDate != "" {
  152. where += " and date>='" + startDate + "'"
  153. }
  154. if endDate != "" {
  155. where += " and date<='" + endDate + "'"
  156. }
  157. user := GetUser(c)
  158. appId := GetMediumIdStr(c, user.AdmId, "", "")
  159. if appId != "" {
  160. where += " and medium_id in(" + appId + ")"
  161. }
  162. sql = fmt.Sprintf(sql, where)
  163. nativeString, _ := db.QueryNativeString(db.Db, sql)
  164. if len(nativeString) == 0 {
  165. nativeString = []map[string]string{
  166. {
  167. "media_revenue": "0",
  168. },
  169. }
  170. }
  171. return nativeString
  172. }
  173. func commOperatorTotalByApp(c *gin.Context, req md.IndexAppListReq, appId []string) []map[string]string {
  174. sql := `
  175. SELECT
  176. COUNT(*) as count,
  177. app_id as app_id,
  178. SUM(exposure_count) as exposure_count,
  179. SUM(click_count) as click_count,
  180. SUM(click_count)/SUM(exposure_count)*100 as click_rate,
  181. SUM(ecpm) as ecpm,
  182. SUM(media_revenue) as media_revenue
  183. FROM generate_wx_ad_data
  184. where %s group by app_id order by %s,id asc limit 50
  185. `
  186. where := "is_generate_report=1 and uuid=" + c.GetString("mid")
  187. if req.StartDate != "" {
  188. where += " and date>='" + req.StartDate + "'"
  189. }
  190. if req.EndDate != "" {
  191. where += " and date<='" + req.EndDate + "'"
  192. }
  193. user := GetUser(c)
  194. appIds := GetMediumIdStr(c, user.AdmId, req.Name, "")
  195. if appIds != "" {
  196. where += " and medium_id in(" + appIds + ")"
  197. }
  198. if len(appId) > 0 {
  199. where += " and app_id in('" + strings.Join(appId, ",") + "')"
  200. }
  201. if req.Sort == "" {
  202. req.Sort = "media_revenue desc"
  203. }
  204. sql = fmt.Sprintf(sql, where, req.Sort)
  205. nativeString, _ := db.QueryNativeString(db.Db, sql)
  206. return nativeString
  207. }
  208. func commOperatorTotalByDate(c *gin.Context, startDate, endDate string, appId []string) []map[string]string {
  209. sql := `
  210. SELECT
  211. app_id as app_id,
  212. date as date,
  213. SUM(exposure_count) as exposure_count,
  214. SUM(click_count) as click_count,
  215. SUM(click_count)/SUM(exposure_count)*100 as click_rate,
  216. SUM(ecpm) as ecpm,
  217. SUM(media_revenue) as media_revenue
  218. FROM generate_wx_ad_data
  219. where %s group by date,app_id
  220. `
  221. where := "is_generate_report=1 and uuid=" + c.GetString("mid")
  222. if startDate != "" {
  223. where += " and date>='" + startDate + "'"
  224. }
  225. if endDate != "" {
  226. where += " and date<='" + endDate + "'"
  227. }
  228. if len(appId) > 0 {
  229. where += " and app_id in('" + strings.Join(appId, ",") + "')"
  230. }
  231. sql = fmt.Sprintf(sql, where)
  232. nativeString, err := db.QueryNativeString(db.Db, sql)
  233. fmt.Println(err)
  234. return nativeString
  235. }