fixed renewal date computing
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
8898e975e8
commit
6a708d748b
@ -31,11 +31,10 @@ func (u *User) Init(cfg *config.Config) (err error) {
|
|||||||
|
|
||||||
// GetEntry returns requested acme ressource in database relative to domain
|
// GetEntry returns requested acme ressource in database relative to domain
|
||||||
func (u *User) GetEntry(cfg *config.Config, domains []string) (Entry cert.Entry, err error) {
|
func (u *User) GetEntry(cfg *config.Config, domains []string) (Entry cert.Entry, err error) {
|
||||||
requireddate := time.Now().AddDate(0, 0, -cfg.ACME.MaxDaysBefore).Format("2006-01-02")
|
renewingdate := time.Now().AddDate(0, 0, -cfg.ACME.MaxDaysBefore).Format("2006-01-02")
|
||||||
|
|
||||||
has, err := cfg.Db.Where("domains = ?", strings.Join(domains, ",")).Where(
|
has, err := cfg.Db.Where("domains = ?", strings.Join(domains, ",")).Where(
|
||||||
"validity_begin >= now()").Where(
|
"validity_end >= ?::timestamp", renewingdate).Where(
|
||||||
"validity_end <= ?::timestamp", requireddate).Where(
|
|
||||||
"auth_url = ?", cfg.ACME.AuthURL).Desc(
|
"auth_url = ?", cfg.ACME.AuthURL).Desc(
|
||||||
"id").Get(&Entry)
|
"id").Get(&Entry)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user