safing-portbase/database/model/meta.go
2018-09-04 17:09:32 +02:00

72 lines
1.8 KiB
Go

package model
import "time"
// Meta holds
type Meta struct {
created int64
modified int64
expires int64
deleted int64
secret bool // secrets must not be sent to the UI, only synced between nodes
cronjewel bool // crownjewels must never leave the instance, but may be read by the UI
}
// SetAbsoluteExpiry sets an absolute expiry time, that is not affected when the record is updated.
func (m *Meta) SetAbsoluteExpiry(time int64) {
m.expires = time
m.deleted = 0
}
// SetRelativateExpiry sets a relative expiry that is automatically updated whenever the record is updated/saved.
func (m *Meta) SetRelativateExpiry(duration int64) {
if duration >= 0 {
m.deleted = -duration
}
}
// MakeCrownJewel marks the database records as a crownjewel, meaning that it will not be sent/synced to other devices.
func (m *Meta) MakeCrownJewel() {
m.cronjewel = true
}
// MakeSecret sets the database record as secret, meaning that it may only be used internally, and not by interfacing processes, such as the UI.
func (m *Meta) MakeSecret() {
m.secret = true
}
// Update updates the internal meta states and should be called before writing the record to the database.
func (m *Meta) Update() {
now := time.Now().Unix()
m.modified = now
if m.created == 0 {
m.created = now
}
if m.deleted < 0 {
m.expires = now - m.deleted
}
}
// Reset resets all metadata, except for the secret and crownjewel status.
func (m *Meta) Reset() {
m.created = 0
m.modified = 0
m.expires = 0
m.deleted = 0
}
// CheckScope checks whether the current database record exists for the given scope.
func (m *Meta) CheckScope(now int64, local, internal bool) (recordExists bool) {
switch {
case m.deleted > 0:
return false
case m.expires < now:
return false
case !local && m.cronjewel:
return false
case !internal && m.secret:
return false
default:
return true
}
}