get_charts_logic.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package dashboard
  2. import (
  3. "context"
  4. "fmt"
  5. "time"
  6. "wechat-api/internal/svc"
  7. "wechat-api/internal/types"
  8. "github.com/zeromicro/go-zero/core/logx"
  9. )
  10. type GetChartsLogic struct {
  11. logx.Logger
  12. ctx context.Context
  13. svcCtx *svc.ServiceContext
  14. }
  15. func NewGetChartsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetChartsLogic {
  16. return &GetChartsLogic{
  17. Logger: logx.WithContext(ctx),
  18. ctx: ctx,
  19. svcCtx: svcCtx}
  20. }
  21. func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp, err error) {
  22. // 获取组织id
  23. var organizationId uint64 = 0
  24. isAdmin := l.ctx.Value("isAdmin").(bool)
  25. if isAdmin && req.OrganizationId != nil && *req.OrganizationId != 0 {
  26. organizationId = *req.OrganizationId
  27. } else {
  28. organizationId = l.ctx.Value("organizationId").(uint64)
  29. }
  30. // 解析起始和截止时间
  31. layouts := []string{
  32. "2006-01", // 对应 "2024-01"
  33. "2006-01-02", // 对应 "2024-01-01"
  34. }
  35. var layoutsType int
  36. var startTime time.Time
  37. for i, layout := range layouts {
  38. startTime, err = time.Parse(layout, *req.StartDate)
  39. if err == nil {
  40. break
  41. }
  42. layoutsType = i
  43. }
  44. if err != nil {
  45. fmt.Println("解析开始时间失败:", err)
  46. return
  47. }
  48. var endTime time.Time
  49. for _, layout := range layouts {
  50. endTime, err = time.Parse(layout, *req.EndDate)
  51. if err == nil {
  52. break
  53. }
  54. }
  55. if err != nil {
  56. fmt.Println("解析结束时间失败:", err)
  57. return
  58. }
  59. // 判断截止日期是否包含当前日
  60. var isCurrentDay bool
  61. now := time.Now()
  62. if layoutsType == 0 {
  63. isCurrentDay = endTime.Year() == now.Year() && endTime.Month() == now.Month()
  64. } else {
  65. isCurrentDay = endTime.Year() == now.Year() && endTime.Month() == now.Month() && endTime.Day() == now.Day()
  66. }
  67. if isCurrentDay && layoutsType == 1 && req.StartDate == req.EndDate {
  68. //
  69. }
  70. return
  71. }