genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/models/good_release.go

24 lines
611 B
Go
Raw Normal View History

package models
import (
"time"
"github.com/genofire/hs_master-kss-monolith/lib/database"
)
type GoodReleaseConfig struct {
After Duration `toml:"after"`
Every Duration `toml:"every"`
}
func NewGoodReleaseWorker(grc GoodReleaseConfig) *Worker {
return NewWorker(grc.Every.Duration, func() {
goodRelease(grc.After.Duration)
})
}
func goodRelease(unlockAfter time.Duration) int64 {
res := database.Write.Model(&Good{}).Where("locked_secret is not NULL and locked_at < ?", time.Now().Add(-unlockAfter)).Updates(map[string]interface{}{"locked_secret": "", "locked_at": nil})
return res.RowsAffected
}