ProfouzorsLinx/expiry.go

18 lines
350 B
Go
Raw Normal View History

2015-09-28 04:17:12 +02:00
package main
import (
"time"
)
// Determine if a file with expiry set to "ts" has expired yet
func isTsExpired(ts time.Time) bool {
now := time.Now()
return !ts.IsZero() && now.After(ts)
2015-09-28 04:17:12 +02:00
}
// Determine if the given filename is expired
func isFileExpired(filename string) bool {
exp, _ := metadataGetExpiry(filename)
return isTsExpired(exp)
2015-09-28 04:17:12 +02:00
}