user_read_record.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  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 "禁用":
  107. condition += " AND u.status=? "
  108. pars = append(pars, 0)
  109. case "潜在":
  110. condition += " AND u.status=? "
  111. pars = append(pars, 1)
  112. case "正式":
  113. condition += " AND u.status=? "
  114. pars = append(pars, 2)
  115. case "":
  116. condition += " AND (u.status=? OR u.status=?) "
  117. pars = append(pars, 0, 2)
  118. }
  119. switch IsRegistered {
  120. case "是":
  121. condition += " AND u.is_registered=? "
  122. pars = append(pars, true)
  123. case "否":
  124. condition += " AND u.is_registered=? "
  125. pars = append(pars, false)
  126. }
  127. switch IsSubscribed {
  128. case "是":
  129. condition += " AND u.is_subscribed=? "
  130. pars = append(pars, true)
  131. case "否":
  132. condition += " AND u.is_subscribed=? "
  133. pars = append(pars, false)
  134. }
  135. if registerStartDate != "" {
  136. condition += " AND u.register_time>? "
  137. pars = append(pars, registerStartDate)
  138. }
  139. if registerEndDate != "" {
  140. condition += " AND u.register_time<? "
  141. pars = append(pars, registerEndDate)
  142. }
  143. if createStartDate != "" {
  144. condition += " AND u.create_time>? "
  145. pars = append(pars, createStartDate)
  146. }
  147. if createEndDate != "" {
  148. condition += " AND u.create_time<? "
  149. pars = append(pars, createEndDate)
  150. }
  151. if pageSize <= 0 {
  152. pageSize = utils.PageSize20
  153. } else if pageSize > utils.PageSize100 {
  154. pageSize = utils.PageSize100
  155. }
  156. if currentIndex <= 0 {
  157. currentIndex = 1
  158. }
  159. startSize := utils.StartIndex(currentIndex, pageSize)
  160. total, err := models.GetUserReadCount(condition, pars)
  161. if err != nil {
  162. br.Msg = "获取失败"
  163. br.ErrMsg = "获取失败,Err:" + err.Error()
  164. return
  165. }
  166. userList, err := models.GetUserReadList(condition, sortCondition, pars, startSize, pageSize)
  167. if err != nil {
  168. br.Msg = "查询用户失败"
  169. br.Msg = "查询用户失败,系统错误,Err:" + err.Error()
  170. return
  171. }
  172. page := paging.GetPaging(currentIndex, pageSize, total)
  173. resp := new(response.UserListResp)
  174. resp.Paging = page
  175. resp.List = userList
  176. br.Data = resp
  177. br.Ret = 200
  178. br.Success = true
  179. br.Msg = "获取成功"
  180. }
  181. // Detail
  182. // @Title 用户阅读记录详情
  183. // @Description 用户阅读记录详情信息
  184. // @Param PageSize query int true "每页数据条数"
  185. // @Param CurrentIndex query int true "当前页页码,从1开始"
  186. // @Param ChartPermissionIds query string true "品种列表"
  187. // @Param ClassifyIds query string true "品种列表"
  188. // @Success 200 {object} models.LoginResp
  189. // @router /detail [get]
  190. func (this *UserReadRecordController) Detail() {
  191. br := new(models.BaseResponse).Init()
  192. defer func() {
  193. this.Data["json"] = br
  194. this.ServeJSON()
  195. }()
  196. UserId, _ := this.GetInt("UserId")
  197. pageSize, _ := this.GetInt("PageSize")
  198. currentIndex, _ := this.GetInt("CurrentIndex")
  199. chartPermissionids := this.GetString("ChartPermissionIds")
  200. classifyIds := this.GetString("ClassifyIds")
  201. if UserId <= 0 {
  202. br.Msg = "查询用户不存在"
  203. return
  204. }
  205. if pageSize <= 0 {
  206. pageSize = utils.PageSize20
  207. } else if pageSize > utils.PageSize100 {
  208. pageSize = utils.PageSize100
  209. }
  210. if currentIndex <= 0 {
  211. currentIndex = 1
  212. }
  213. startSize := utils.StartIndex(currentIndex, pageSize)
  214. user, err := models.GetUserById(UserId)
  215. if err != nil {
  216. if err == orm.ErrNoRows {
  217. br.Msg = "用户不存在或已删除,请刷新页面"
  218. return
  219. }
  220. br.Msg = "查询用户失败"
  221. br.ErrMsg = "查询用户失败,系统错误,Err:" + err.Error()
  222. return
  223. }
  224. if user == nil {
  225. br.Msg = "用户不存在或已删除,请刷新页面"
  226. return
  227. }
  228. var condition string
  229. var pars []interface{}
  230. if chartPermissionids != "" {
  231. ids := strings.Split(chartPermissionids, ",")
  232. if len(ids) != 0 {
  233. condition += ` AND ( `
  234. for i, id := range ids {
  235. if i == 0 {
  236. condition += ` urp2.chart_permission_id = ? `
  237. pars = append(pars, id)
  238. } else {
  239. condition += ` OR urp2.chart_permission_id = ? `
  240. pars = append(pars, id)
  241. }
  242. }
  243. condition += `) `
  244. }
  245. }
  246. if classifyIds != "" {
  247. ids := strings.Split(classifyIds, ",")
  248. if len(ids) != 0 {
  249. condition += ` AND ( `
  250. for i, id := range ids {
  251. if i == 0 {
  252. condition += ` classify_id2 = ? `
  253. pars = append(pars, id)
  254. } else {
  255. condition += ` OR classify_id2 = ? `
  256. pars = append(pars, id)
  257. }
  258. }
  259. condition += `) `
  260. }
  261. }
  262. total, err := models.GetUserReadRecordCountByUserId(UserId, condition, pars)
  263. if err != nil {
  264. br.Msg = "查询阅读记录失败"
  265. br.ErrMsg = "查询阅读记录失败,Err:" + err.Error()
  266. return
  267. }
  268. readList, err := models.GetUserReadRecordByUserId(UserId, condition, pars, startSize, pageSize)
  269. if err != nil {
  270. br.Msg = "查询阅读记录失败"
  271. br.ErrMsg = "查询阅读记录失败,系统错误,Err:" + err.Error()
  272. return
  273. }
  274. page := paging.GetPaging(currentIndex, pageSize, total)
  275. resp := new(response.UserReadRecordListResp)
  276. resp.Paging = page
  277. resp.List = readList
  278. br.Msg = "获取成功"
  279. br.Data = resp
  280. br.Success = true
  281. br.Ret = 200
  282. }
  283. // ReadCntChart
  284. // @Title 用户阅读量统计图信息
  285. // @Description 用户阅读量统计图信息
  286. // @Param ChartPermissionIds query string true "品种列表"
  287. // @Param ClassifyIds query string true "品种列表"
  288. // @Param StartDate query string true "开始时间"
  289. // @Param EndDate query string true "结束时间"
  290. // @Param UserId query int true "用户id"
  291. // @Success 200 {object} models.LoginResp
  292. // @router /readCntChart [get]
  293. func (this *UserReadRecordController) ReadCntChart() {
  294. br := new(models.BaseResponse).Init()
  295. defer func() {
  296. this.Data["json"] = br
  297. this.ServeJSON()
  298. }()
  299. userId, _ := this.GetInt("UserId")
  300. startDate := this.GetString("StartDate")
  301. endDate := this.GetString("EndDate")
  302. chartPermissionIds := this.GetString("ChartPermissionIds")
  303. classifyIds := this.GetString("ClassifyIds")
  304. var condition string
  305. var pars []interface{}
  306. if chartPermissionIds != "" {
  307. ids := strings.Split(chartPermissionIds, ",")
  308. if len(ids) != 0 {
  309. condition += ` AND ( `
  310. for i, id := range ids {
  311. if i == 0 {
  312. condition += ` urp.chart_permission_id = ? `
  313. pars = append(pars, id)
  314. } else {
  315. condition += ` OR urp.chart_permission_id = ? `
  316. pars = append(pars, id)
  317. }
  318. }
  319. condition += `) `
  320. }
  321. }
  322. if classifyIds != "" {
  323. ids := strings.Split(classifyIds, ",")
  324. if len(ids) != 0 {
  325. condition += ` AND ( `
  326. for i, id := range ids {
  327. if i == 0 {
  328. condition += ` classify_id2 = ? `
  329. pars = append(pars, id)
  330. } else {
  331. condition += ` OR classify_id2 = ? `
  332. pars = append(pars, id)
  333. }
  334. }
  335. condition += `) `
  336. }
  337. }
  338. if startDate == "" {
  339. startDate = time.Now().AddDate(-1, 0, 0).Format(utils.FormatDate)
  340. }
  341. if endDate == "" {
  342. endDate = time.Now().AddDate(0, 0, 1).Format(utils.FormatDate)
  343. }
  344. if userId > 0 {
  345. condition += ` AND ur.user_id = ? `
  346. pars = append(pars, userId)
  347. }
  348. readCnts, err := models.GetStaticReadCnt(condition, pars, startDate, endDate)
  349. if err != nil {
  350. br.Msg = "获取阅读统计失败"
  351. br.ErrMsg = "获取阅读统计失败,系统错误,Err:" + err.Error()
  352. return
  353. }
  354. br.Msg = "查询成功"
  355. br.Data = readCnts
  356. br.Ret = 200
  357. br.Success = true
  358. }
  359. // readPermissionChart
  360. // @Title 用户阅读品种图信息
  361. // @Description 用户阅读品种图信息
  362. // @Param UserId query string true "用户id"
  363. // @Success 200 {object} models.LoginResp
  364. // @router /readPermissionChart [get]
  365. func (this *UserReadRecordController) ReadPermissionChart() {
  366. br := new(models.BaseResponse).Init()
  367. defer func() {
  368. this.Data["json"] = br
  369. this.ServeJSON()
  370. }()
  371. userId, _ := this.GetInt("UserId")
  372. var condition string
  373. var pars []interface{}
  374. if userId > 0 {
  375. condition += ` AND ur.user_id = ? `
  376. pars = append(pars, userId)
  377. }
  378. permissionCnts, err := models.GetStaticPermissionCnt(condition, pars)
  379. if err != nil {
  380. br.Msg = "获取品种阅读统计失败"
  381. br.ErrMsg = "获取品种阅读统计失败,系统错误,Err:" + err.Error()
  382. return
  383. }
  384. var sum int
  385. for _, v := range permissionCnts {
  386. sum += v.Count
  387. }
  388. for _, v := range permissionCnts {
  389. percent := float64(v.Count) / float64(sum) * 100
  390. percentStr := fmt.Sprintf("%.0f", percent)
  391. parsedFloat, _ := strconv.ParseFloat(percentStr, 64)
  392. v.Percent = parsedFloat
  393. }
  394. br.Msg = "查询成功"
  395. br.Data = permissionCnts
  396. br.Ret = 200
  397. br.Success = true
  398. }