-
Notifications
You must be signed in to change notification settings - Fork 2
/
api_chats.go
133 lines (107 loc) · 2.92 KB
/
api_chats.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package neocortex
import (
"net/http"
"strconv"
"github.com/araddon/dateparse"
"github.com/gin-gonic/gin"
)
func (api *API) registerChatsAPI(r *gin.RouterGroup) {
r.GET("/chat/:id", func(c *gin.Context) {
frame := TimeFrame{}
preset := TimeFramePreset(c.Query("preset"))
if preset != DayPreset && preset != WeekPreset && preset != MonthPreset && preset != YearPreset {
from, err := dateparse.ParseAny(c.Query("from"))
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "from date not found"})
return
}
to, err := dateparse.ParseAny(c.Query("to"))
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "to date not found"})
return
}
frame.From = from
frame.To = to
} else {
frame.Preset = preset
}
page, _ := strconv.Atoi(c.Query("page"))
size, _ := strconv.Atoi(c.Query("size"))
frame.PageNum = page
frame.PageSize = size
dialogs, err := api.repository.AllDialogs(frame)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
chats := api.analytics.processDialogs(dialogs)
userID := c.Param("id")
if userID == "" {
c.JSON(http.StatusInternalServerError, gin.H{"error": "invalid user ID, please select one or all"})
return
}
if userID == "all" {
timezone := c.Query("timezone")
totalChats := []*Chat{}
if timezone != "" {
for _, c := range chats {
if timezone == c.Person.Timezone {
totalChats = append(totalChats, c)
}
}
} else {
totalChats = chats
}
c.JSON(http.StatusOK, gin.H{
"data": totalChats,
})
return
}
chatFound := new(Chat)
for _, c := range chats {
if c.Person.ID == userID {
chatFound = c
}
}
if chatFound == nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "user ID not found in your time frame"})
return
}
c.JSON(http.StatusOK, gin.H{
"data": chatFound,
})
})
r.GET("/chats", func(c *gin.Context) {
frame := TimeFrame{}
preset := TimeFramePreset(c.Query("preset"))
if preset != DayPreset && preset != WeekPreset && preset != MonthPreset && preset != YearPreset {
from, err := dateparse.ParseAny(c.Query("from"))
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "from date not found"})
return
}
to, err := dateparse.ParseAny(c.Query("to"))
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "to date not found"})
return
}
frame.From = from
frame.To = to
} else {
frame.Preset = preset
}
page, _ := strconv.Atoi(c.Query("page"))
size, _ := strconv.Atoi(c.Query("size"))
frame.PageNum = page
frame.PageSize = size
dialogs, err := api.repository.AllDialogs(frame)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
chats := api.analytics.processDialogs(dialogs)
c.JSON(http.StatusOK, gin.H{
"data": chats,
})
})
}