-
Notifications
You must be signed in to change notification settings - Fork 9
/
locations_avg.go
63 lines (52 loc) · 1.54 KB
/
locations_avg.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
package main
/*
/locations/<location_id>/avg
Возможные GET-параметры:
fromDate - учитывать оценки только с visited_at > fromDate
toDate - учитывать оценки только с visited_at < toDate
fromAge - учитывать только путешественников, у которых возраст (считается от текущего timestamp) больше этого параметра
toAge - как предыдущее, но наоборот
gender - учитывать оценки только мужчин или женщин
*/
type (
LocationsAvg struct {
locations []LocationAvg
}
LocationAvg struct {
visitId int32
visitedAt int32
birthdate int64
gender byte
mark uint8
}
)
func (la *LocationsAvg) Add(location *Location, visit *Visit, user *User) bool {
la.locations = append(la.locations, LocationAvg{
visitId: visit.Id,
visitedAt: visit.VisitedAt,
birthdate: user.BirthDate,
gender: user.Gender,
mark: visit.Mark,
})
return true
}
func (la *LocationsAvg) MoveByVisitId(target *Location, visitId int32) bool {
currentPos := -1
for i, laItem := range la.locations {
if laItem.visitId == visitId {
currentPos = i
break
}
}
if currentPos == -1 {
return false
}
bak := la.locations[currentPos]
lastIdx := len(la.locations) - 1
if currentPos < lastIdx {
la.locations[currentPos] = la.locations[lastIdx]
}
la.locations = la.locations[:lastIdx]
target.cache.locations = append(target.cache.locations, bak)
return true
}