78f2470421
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
22 lines
435 B
Go
22 lines
435 B
Go
package pro
|
|
|
|
import "time"
|
|
|
|
// Session represents photoprism.pro api session data.
|
|
type Session struct {
|
|
MapKey string
|
|
ExpiresAt string
|
|
}
|
|
|
|
// Expired tests if the api session is expired.
|
|
func (p *Session) Expired() bool {
|
|
if p.ExpiresAt == "" {
|
|
return true
|
|
} else if date, err := time.Parse("2006-01-02T15:04:05", p.ExpiresAt); err != nil {
|
|
return true
|
|
} else if date.Before(time.Now()) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|