mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-23 01:20:11 +00:00
activity: Add initial data structure
This commit is contained in:
parent
43e36ee6fc
commit
69dcaf3797
30
storage.go
30
storage.go
@ -21,6 +21,36 @@ type telegramStore map[string]TelegramUser
|
|||||||
type matrixStore map[string]MatrixUser
|
type matrixStore map[string]MatrixUser
|
||||||
type emailStore map[string]EmailAddress
|
type emailStore map[string]EmailAddress
|
||||||
|
|
||||||
|
type ActivityType int
|
||||||
|
|
||||||
|
const (
|
||||||
|
ActivityCreation ActivityType = iota // FIXME
|
||||||
|
ActivityDeletion // FIXME
|
||||||
|
ActivityDisabled // FIXME
|
||||||
|
ActivityEnabled // FIXME
|
||||||
|
ActivityLinked // FIXME
|
||||||
|
ActivityChangePassword // FIXME
|
||||||
|
ActivityResetPassword // FIXME
|
||||||
|
ActivityCreateInvite // FIXME
|
||||||
|
)
|
||||||
|
|
||||||
|
type ActivitySource int
|
||||||
|
|
||||||
|
const (
|
||||||
|
ActivityUser ActivitySource = iota // Source = UserID. For ActivityCreation, this would mean the referrer.
|
||||||
|
ActivityAdmin // Source = Admin's UserID, or simply just "admin"
|
||||||
|
ActivityAnon // Source = Blank, or potentially browser info. For ActivityCreation, this would be via an invite
|
||||||
|
)
|
||||||
|
|
||||||
|
type Activity struct {
|
||||||
|
Type ActivityType `badgerhold:"index"`
|
||||||
|
UserID string
|
||||||
|
SourceType ActivitySource
|
||||||
|
Source string
|
||||||
|
InviteCode string // Only set for ActivityCreation
|
||||||
|
Time time.Time
|
||||||
|
}
|
||||||
|
|
||||||
type UserExpiry struct {
|
type UserExpiry struct {
|
||||||
JellyfinID string `badgerhold:"key"`
|
JellyfinID string `badgerhold:"key"`
|
||||||
Expiry time.Time
|
Expiry time.Time
|
||||||
|
Loading…
Reference in New Issue
Block a user