mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 21:15:35 +03:00
Properly calculate if certificate expires in 30 minutes or not.
This commit is contained in:
parent
28df187012
commit
bdec98f18e
1 changed files with 4 additions and 3 deletions
|
@ -1167,7 +1167,8 @@ func validateCertificates(data tlsConfig) (tlsConfig, error) {
|
|||
|
||||
// update status
|
||||
if mainCert != nil {
|
||||
data.StatusCertificate = fmt.Sprintf("Certificate expires on %s", mainCert.NotAfter) //, valid for hostname %s", mainCert.NotAfter, mainCert.Subject.CommonName)
|
||||
notAfter := mainCert.NotAfter
|
||||
data.StatusCertificate = fmt.Sprintf("Certificate expires on %s", notAfter) //, valid for hostname %s", mainCert.NotAfter, mainCert.Subject.CommonName)
|
||||
if len(mainCert.DNSNames) == 1 {
|
||||
data.StatusCertificate += fmt.Sprintf(", valid for hostname %s", mainCert.DNSNames[0])
|
||||
} else if len(mainCert.DNSNames) > 1 {
|
||||
|
@ -1176,8 +1177,8 @@ func validateCertificates(data tlsConfig) (tlsConfig, error) {
|
|||
|
||||
// issue a warning if certificate is about to expire
|
||||
now := time.Now()
|
||||
if mainCert.NotAfter.AddDate(0, 0, -30).After(now) {
|
||||
timeLeft := time.Until(mainCert.NotAfter)
|
||||
if now.AddDate(0, 0, 30).After(notAfter) {
|
||||
timeLeft := notAfter.Sub(now)
|
||||
if timeLeft > 0 {
|
||||
data.Warning = fmt.Sprintf("Your certificate expires in %.0f days, we recommend you update it soon", timeLeft.Hours()/24)
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue