pull in even longer ago long ago honks
This commit is contained in:
parent
add60c10e8
commit
d272b8110a
16
database.go
16
database.go
|
@ -243,12 +243,16 @@ func gethonksforme(userid int64, wanted int64) []*Honk {
|
||||||
}
|
}
|
||||||
func gethonksfromlongago(userid int64, wanted int64) []*Honk {
|
func gethonksfromlongago(userid int64, wanted int64) []*Honk {
|
||||||
now := time.Now().UTC()
|
now := time.Now().UTC()
|
||||||
now = time.Date(now.Year()-1, now.Month(), now.Day(), now.Hour(), now.Minute(),
|
var honks []*Honk
|
||||||
now.Second(), 0, now.Location())
|
for i := 1; i <= 3; i++ {
|
||||||
dt1 := now.Add(-36 * time.Hour).Format(dbtimeformat)
|
dt := time.Date(now.Year()-i, now.Month(), now.Day(), now.Hour(), now.Minute(),
|
||||||
dt2 := now.Add(12 * time.Hour).Format(dbtimeformat)
|
now.Second(), 0, now.Location())
|
||||||
rows, err := stmtHonksFromLongAgo.Query(wanted, userid, dt1, dt2, userid)
|
dt1 := dt.Add(-36 * time.Hour).Format(dbtimeformat)
|
||||||
return getsomehonks(rows, err)
|
dt2 := dt.Add(12 * time.Hour).Format(dbtimeformat)
|
||||||
|
rows, err := stmtHonksFromLongAgo.Query(wanted, userid, dt1, dt2, userid)
|
||||||
|
honks = append(honks, getsomehonks(rows, err)...)
|
||||||
|
}
|
||||||
|
return honks
|
||||||
}
|
}
|
||||||
func getsavedhonks(userid int64, wanted int64) []*Honk {
|
func getsavedhonks(userid int64, wanted int64) []*Honk {
|
||||||
rows, err := stmtHonksISaved.Query(wanted, userid)
|
rows, err := stmtHonksISaved.Query(wanted, userid)
|
||||||
|
|
Loading…
Reference in New Issue