mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
package domain
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
validation "github.com/go-ozzo/ozzo-validation/v4"
|
|
)
|
|
|
|
// Account represents an account we need to periodically check in the notifications worker.
|
|
type Account struct {
|
|
ID int64
|
|
|
|
// Reddit information
|
|
Username string
|
|
AccountID string
|
|
AccessToken string
|
|
RefreshToken string
|
|
ExpiresAt int64
|
|
|
|
// Tracking how far behind we are
|
|
LastMessageID string
|
|
LastCheckedAt float64
|
|
LastUnstuckAt float64
|
|
}
|
|
|
|
func (acct *Account) NormalizedUsername() string {
|
|
return strings.ToLower(acct.Username)
|
|
}
|
|
|
|
func (acct *Account) Validate() error {
|
|
return validation.ValidateStruct(acct,
|
|
validation.Field(&acct.Username, validation.Required, validation.Length(3, 32)),
|
|
validation.Field(&acct.AccountID, validation.Required, validation.Length(4, 9)),
|
|
)
|
|
}
|
|
|
|
// AccountRepository represents the account's repository contract
|
|
type AccountRepository interface {
|
|
GetByID(ctx context.Context, id int64) (Account, error)
|
|
GetByRedditID(ctx context.Context, id string) (Account, error)
|
|
GetByAPNSToken(ctx context.Context, token string) ([]Account, error)
|
|
|
|
CreateOrUpdate(ctx context.Context, acc *Account) error
|
|
Update(ctx context.Context, acc *Account) error
|
|
Create(ctx context.Context, acc *Account) error
|
|
Delete(ctx context.Context, id int64) error
|
|
Associate(ctx context.Context, acc *Account, dev *Device) error
|
|
Disassociate(ctx context.Context, acc *Account, dev *Device) error
|
|
|
|
PruneOrphaned(ctx context.Context) (int64, error)
|
|
PruneStale(ctx context.Context, before int64) (int64, error)
|
|
}
|