user_read_record.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. package controllers
  2. import (
  3. "eta/eta_mini_crm/models"
  4. "eta/eta_mini_crm/models/response"
  5. "eta/eta_mini_crm/utils"
  6. "fmt"
  7. "strconv"
  8. "strings"
  9. "time"
  10. "github.com/beego/beego/v2/client/orm"
  11. "github.com/rdlucklib/rdluck_tools/paging"
  12. )
  13. type UserReadRecordController struct {
  14. BaseAuthController
  15. }
  16. // List
  17. // @Title 用户阅读统计列表
  18. // @Description 用户阅读统计列表
  19. // @Param PageSize query int true "每页数据条数"
  20. // @Param CurrentIndex query int true "当前页页码,从1开始"
  21. // @Param SellerId query int true "销售id"
  22. // @Param Status query string true "用户状态"
  23. // @Param KeyWord query string true "手机号/邮箱/姓名"
  24. // @Param IsRegistered query string true "是否注册"
  25. // @Param IsSubscribed query string true "是否关注"
  26. // @Param RegisterStartDate query string true "注册开始时间"
  27. // @Param RegisterEndDate query string true "注册结束时间"
  28. // @Param CreateStartDate query string true "创建开始时间"
  29. // @Param CreateEndDate query string true "创建结束时间"
  30. // @Param SortParam query string true "排序字段"
  31. // @Param SortType query string true "排序方式"
  32. // @Success 200 {object} response.UserListResp
  33. // @router /list [get]
  34. func (this *UserReadRecordController) List() {
  35. br := new(models.BaseResponse).Init()
  36. defer func() {
  37. this.Data["json"] = br
  38. this.ServeJSON()
  39. }()
  40. pageSize, _ := this.GetInt("PageSize")
  41. currentIndex, _ := this.GetInt("CurrentIndex")
  42. sellerIdStr := this.GetString("SellerId")
  43. status := this.GetString("Status")
  44. keyWord := this.GetString("KeyWord")
  45. IsRegistered := this.GetString("IsRegisterd")
  46. IsSubscribed := this.GetString("IsSubscribed")
  47. registerStartDate := this.GetString("RegisterStartDate")
  48. registerEndDate := this.GetString("RegisterEndDate")
  49. createStartDate := this.GetString("CreateStartDate")
  50. createEndDate := this.GetString("CreateEndDate")
  51. sortParma := this.GetString("SortParam")
  52. sortType := this.GetString("SortType")
  53. var condition string
  54. var sortCondition string
  55. var pars []interface{}
  56. if keyWord != "" {
  57. condition += ` AND (u.real_name LIKE ? OR u.phone LIKE ? OR u.email LIKE ? OR u.company LIKE ?) `
  58. pars = utils.GetLikeKeywordPars(pars, keyWord, 4)
  59. }
  60. if pageSize <= 0 {
  61. pageSize = utils.PageSize20
  62. } else if pageSize > utils.PageSize100 {
  63. pageSize = utils.PageSize100
  64. }
  65. if currentIndex <= 0 {
  66. currentIndex = 1
  67. }
  68. if sellerIdStr != "" {
  69. sellerIds := strings.Split(sellerIdStr, ",")
  70. if len(sellerIds) != 0 {
  71. condition += ` AND ( `
  72. for i, id := range sellerIds {
  73. if i == 0 {
  74. condition += ` u.seller_id = ? `
  75. pars = append(pars, id)
  76. } else {
  77. condition += ` OR u.seller_id = ? `
  78. pars = append(pars, id)
  79. }
  80. }
  81. condition += `) `
  82. }
  83. }
  84. if sortParma != "" && sortType != "" {
  85. sortCondition = " ORDER BY "
  86. var param, sort string
  87. switch sortParma {
  88. case "LastUpdateTime":
  89. param = "last_update_time"
  90. case "ReadCnt":
  91. param = "read_cnt"
  92. }
  93. switch sortType {
  94. case "asc":
  95. sort = " ASC "
  96. case "desc":
  97. sort = " DESC "
  98. }
  99. if param != "" && sort != "" {
  100. sortCondition += param + " " + sort
  101. } else {
  102. sortCondition = ""
  103. }
  104. }
  105. switch status {
  106. case fmt.Sprint(utils.UserStatusNo):
  107. condition += " AND u.status=? "
  108. pars = append(pars, 0)
  109. case fmt.Sprint(1):
  110. condition += " AND u.status=? "
  111. pars = append(pars, 2)
  112. default:
  113. condition += " AND (u.status=? OR u.status=?) "
  114. pars = append(pars, 0, 2)
  115. }
  116. switch IsRegistered {
  117. case "是":
  118. condition += " AND u.is_registered=? "
  119. pars = append(pars, true)
  120. case "否":
  121. condition += " AND u.is_registered=? "
  122. pars = append(pars, false)
  123. }
  124. switch IsSubscribed {
  125. case "是":
  126. condition += " AND u.is_subscribed=? "
  127. pars = append(pars, true)
  128. case "否":
  129. condition += " AND u.is_subscribed=? "
  130. pars = append(pars, false)
  131. }
  132. if registerStartDate != "" {
  133. registerStartTime, er := time.Parse(utils.FormatDate, registerStartDate)
  134. if er != nil {
  135. br.Msg = "日期格式有误"
  136. return
  137. }
  138. condition += " AND u.register_time>=? "
  139. registerStartDateStr := registerStartTime.Format(utils.FormatDateTime)
  140. pars = append(pars, registerStartDateStr)
  141. }
  142. if registerEndDate != "" {
  143. registerEndTime, er := time.Parse(utils.FormatDate, registerEndDate)
  144. if er != nil {
  145. br.Msg = "日期格式有误"
  146. return
  147. }
  148. condition += " AND u.register_time<=? "
  149. // 结束时间包含今天
  150. registerEndTime = registerEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  151. registerEndDateStr := registerEndTime.Format(utils.FormatDateTime)
  152. pars = append(pars, registerEndDateStr)
  153. }
  154. if createStartDate != "" {
  155. createStartTime, er := time.Parse(utils.FormatDate, createStartDate)
  156. if er != nil {
  157. br.Msg = "日期格式有误"
  158. return
  159. }
  160. condition += " AND u.create_time>=? "
  161. createStartDateStr := createStartTime.Format(utils.FormatDateTime)
  162. pars = append(pars, createStartDateStr)
  163. }
  164. if createEndDate != "" {
  165. createEndTime, er := time.Parse(utils.FormatDate, createEndDate)
  166. if er != nil {
  167. br.Msg = "日期格式有误"
  168. return
  169. }
  170. condition += " AND u.create_time<=? "
  171. // 结束时间包含今天
  172. createEndTime = createEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  173. createEndDateStr := createEndTime.Format(utils.FormatDateTime)
  174. pars = append(pars, createEndDateStr)
  175. }
  176. if pageSize <= 0 {
  177. pageSize = utils.PageSize20
  178. } else if pageSize > utils.PageSize100 {
  179. pageSize = utils.PageSize100
  180. }
  181. if currentIndex <= 0 {
  182. currentIndex = 1
  183. }
  184. startSize := utils.StartIndex(currentIndex, pageSize)
  185. total, err := models.GetUserReadCount(condition, pars)
  186. if err != nil {
  187. br.Msg = "获取失败"
  188. br.ErrMsg = "获取失败,Err:" + err.Error()
  189. return
  190. }
  191. userList, err := models.GetUserReadList(condition, sortCondition, pars, startSize, pageSize)
  192. if err != nil {
  193. br.Msg = "查询用户失败"
  194. br.Msg = "查询用户失败,系统错误,Err:" + err.Error()
  195. return
  196. }
  197. page := paging.GetPaging(currentIndex, pageSize, total)
  198. resp := new(response.UserListResp)
  199. resp.Paging = page
  200. resp.List = userList
  201. br.Data = resp
  202. br.Ret = 200
  203. br.Success = true
  204. br.Msg = "获取成功"
  205. }
  206. // Detail
  207. // @Title 用户阅读记录详情
  208. // @Description 用户阅读记录详情信息
  209. // @Param PageSize query int true "每页数据条数"
  210. // @Param CurrentIndex query int true "当前页页码,从1开始"
  211. // @Param ChartPermissionIds query string true "品种列表"
  212. // @Param ClassifyIds query string true "品种列表"
  213. // @Success 200 {object} models.LoginResp
  214. // @router /detail [get]
  215. func (this *UserReadRecordController) Detail() {
  216. br := new(models.BaseResponse).Init()
  217. defer func() {
  218. this.Data["json"] = br
  219. this.ServeJSON()
  220. }()
  221. UserId, _ := this.GetInt("UserId")
  222. pageSize, _ := this.GetInt("PageSize")
  223. currentIndex, _ := this.GetInt("CurrentIndex")
  224. chartPermissionids := this.GetString("ChartPermissionIds")
  225. classifyIds := this.GetString("ClassifyIds")
  226. if UserId <= 0 {
  227. br.Msg = "查询用户不存在"
  228. return
  229. }
  230. if pageSize <= 0 {
  231. pageSize = utils.PageSize20
  232. } else if pageSize > utils.PageSize100 {
  233. pageSize = utils.PageSize100
  234. }
  235. if currentIndex <= 0 {
  236. currentIndex = 1
  237. }
  238. startSize := utils.StartIndex(currentIndex, pageSize)
  239. user, err := models.GetUserById(UserId)
  240. if err != nil {
  241. if err == orm.ErrNoRows {
  242. br.Msg = "用户不存在或已删除,请刷新页面"
  243. return
  244. }
  245. br.Msg = "查询用户失败"
  246. br.ErrMsg = "查询用户失败,系统错误,Err:" + err.Error()
  247. return
  248. }
  249. if user == nil {
  250. br.Msg = "用户不存在或已删除,请刷新页面"
  251. return
  252. }
  253. var condition string
  254. var pars []interface{}
  255. if chartPermissionids != "" {
  256. ids := strings.Split(chartPermissionids, ",")
  257. if len(ids) != 0 {
  258. condition += ` AND ( `
  259. for i, id := range ids {
  260. if i == 0 {
  261. condition += ` urp2.chart_permission_id = ? `
  262. pars = append(pars, id)
  263. } else {
  264. condition += ` OR urp2.chart_permission_id = ? `
  265. pars = append(pars, id)
  266. }
  267. }
  268. condition += `) `
  269. }
  270. }
  271. if classifyIds != "" {
  272. ids := strings.Split(classifyIds, ",")
  273. if len(ids) != 0 {
  274. condition += ` AND ( `
  275. for i, id := range ids {
  276. if i == 0 {
  277. condition += ` classify_id2 = ? `
  278. pars = append(pars, id)
  279. } else {
  280. condition += ` OR classify_id2 = ? `
  281. pars = append(pars, id)
  282. }
  283. }
  284. condition += `) `
  285. }
  286. }
  287. total, err := models.GetUserReadRecordCountByUserId(UserId, condition, pars)
  288. if err != nil {
  289. br.Msg = "查询阅读记录失败"
  290. br.ErrMsg = "查询阅读记录失败,Err:" + err.Error()
  291. return
  292. }
  293. readList, err := models.GetUserReadRecordByUserId(UserId, condition, pars, startSize, pageSize)
  294. if err != nil {
  295. br.Msg = "查询阅读记录失败"
  296. br.ErrMsg = "查询阅读记录失败,系统错误,Err:" + err.Error()
  297. return
  298. }
  299. page := paging.GetPaging(currentIndex, pageSize, total)
  300. resp := new(response.UserReadRecordListResp)
  301. resp.Paging = page
  302. resp.List = readList
  303. br.Msg = "获取成功"
  304. br.Data = resp
  305. br.Success = true
  306. br.Ret = 200
  307. }
  308. // ReadCntChart
  309. // @Title 用户阅读量统计图信息
  310. // @Description 用户阅读量统计图信息
  311. // @Param ChartPermissionIds query string true "品种列表"
  312. // @Param ClassifyIds query string true "品种列表"
  313. // @Param StartDate query string true "开始时间"
  314. // @Param EndDate query string true "结束时间"
  315. // @Param UserId query int true "用户id"
  316. // @Success 200 {object} models.LoginResp
  317. // @router /readCntChart [get]
  318. func (this *UserReadRecordController) ReadCntChart() {
  319. br := new(models.BaseResponse).Init()
  320. defer func() {
  321. this.Data["json"] = br
  322. this.ServeJSON()
  323. }()
  324. userId, _ := this.GetInt("UserId")
  325. startDate := this.GetString("StartDate")
  326. endDate := this.GetString("EndDate")
  327. chartPermissionIds := this.GetString("ChartPermissionIds")
  328. classifyIds := this.GetString("ClassifyIds")
  329. var condition string
  330. var pars []interface{}
  331. if chartPermissionIds != "" {
  332. ids := strings.Split(chartPermissionIds, ",")
  333. if len(ids) != 0 {
  334. condition += ` AND ( `
  335. for i, id := range ids {
  336. if i == 0 {
  337. condition += ` urp.chart_permission_id = ? `
  338. pars = append(pars, id)
  339. } else {
  340. condition += ` OR urp.chart_permission_id = ? `
  341. pars = append(pars, id)
  342. }
  343. }
  344. condition += `) `
  345. }
  346. }
  347. if classifyIds != "" {
  348. ids := strings.Split(classifyIds, ",")
  349. if len(ids) != 0 {
  350. condition += ` AND ( `
  351. for i, id := range ids {
  352. if i == 0 {
  353. condition += ` classify_id2 = ? `
  354. pars = append(pars, id)
  355. } else {
  356. condition += ` OR classify_id2 = ? `
  357. pars = append(pars, id)
  358. }
  359. }
  360. condition += `) `
  361. }
  362. }
  363. if startDate == "" {
  364. startDate = time.Now().AddDate(-1, 0, 0).Format(utils.FormatDate)
  365. }
  366. if endDate == "" {
  367. endDate = time.Now().AddDate(0, 0, 1).Format(utils.FormatDate)
  368. }
  369. if userId > 0 {
  370. condition += ` AND ur.user_id = ? `
  371. pars = append(pars, userId)
  372. }
  373. readCnts, err := models.GetStaticReadCnt(condition, pars, startDate, endDate)
  374. if err != nil {
  375. br.Msg = "获取阅读统计失败"
  376. br.ErrMsg = "获取阅读统计失败,系统错误,Err:" + err.Error()
  377. return
  378. }
  379. br.Msg = "查询成功"
  380. br.Data = readCnts
  381. br.Ret = 200
  382. br.Success = true
  383. }
  384. // readPermissionChart
  385. // @Title 用户阅读品种图信息
  386. // @Description 用户阅读品种图信息
  387. // @Param UserId query string true "用户id"
  388. // @Success 200 {object} models.LoginResp
  389. // @router /readPermissionChart [get]
  390. func (this *UserReadRecordController) ReadPermissionChart() {
  391. br := new(models.BaseResponse).Init()
  392. defer func() {
  393. this.Data["json"] = br
  394. this.ServeJSON()
  395. }()
  396. userId, _ := this.GetInt("UserId")
  397. var condition string
  398. var pars []interface{}
  399. if userId > 0 {
  400. condition += ` AND ur.user_id = ? `
  401. pars = append(pars, userId)
  402. }
  403. permissionCnts, err := models.GetStaticPermissionCnt(condition, pars)
  404. if err != nil {
  405. br.Msg = "获取品种阅读统计失败"
  406. br.ErrMsg = "获取品种阅读统计失败,系统错误,Err:" + err.Error()
  407. return
  408. }
  409. var sum int
  410. for _, v := range permissionCnts {
  411. sum += v.Count
  412. }
  413. for _, v := range permissionCnts {
  414. percent := float64(v.Count) / float64(sum) * 100
  415. percentStr := fmt.Sprintf("%.0f", percent)
  416. parsedFloat, _ := strconv.ParseFloat(percentStr, 64)
  417. v.Percent = parsedFloat
  418. }
  419. br.Msg = "查询成功"
  420. br.Data = permissionCnts
  421. br.Ret = 200
  422. br.Success = true
  423. }