55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type AdminCommandStatus string
|
|
|
|
const (
|
|
AdminCommandRunning AdminCommandStatus = "running"
|
|
AdminCommandCompleted AdminCommandStatus = "completed"
|
|
AdminCommandFailed AdminCommandStatus = "failed"
|
|
)
|
|
|
|
type AdminCommand struct {
|
|
CommandID string
|
|
Actor string
|
|
Action string
|
|
TargetUserID int64
|
|
TargetPeer Peer
|
|
DryRun bool
|
|
Reason string
|
|
RequestJSON []byte
|
|
ResultJSON []byte
|
|
Status AdminCommandStatus
|
|
Error string
|
|
CreatedAt time.Time
|
|
CompletedAt *time.Time
|
|
}
|
|
|
|
// AccountFreeze is the durable account-level read-only state advertised to
|
|
// Telegram clients through help.getAppConfig. Until is the appeal/deletion
|
|
// deadline; reaching it does not silently unfreeze the account.
|
|
type AccountFreeze struct {
|
|
UserID int64
|
|
Frozen bool
|
|
Version int64
|
|
Since time.Time
|
|
Until time.Time
|
|
AppealURL string
|
|
Reason string
|
|
Actor string
|
|
CommandID string
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
// AccountFreezeNotification is a durable, coalesced online refresh for one
|
|
// viewer. UpdateUser itself has no pts; offline clients always recover from the
|
|
// authoritative viewer-scoped user projection instead of replaying this row.
|
|
type AccountFreezeNotification struct {
|
|
ID int64
|
|
TargetUserID int64
|
|
FrozenUserID int64
|
|
Version int64
|
|
Frozen bool
|
|
Attempts int
|
|
}
|