-
Notifications
You must be signed in to change notification settings - Fork 402
/
database.go
46 lines (40 loc) · 1.49 KB
/
database.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package console
import (
"context"
"storj.io/storj/satellite/console/consoleauth"
)
// DB contains access to different satellite databases.
//
// architecture: Database
type DB interface {
// Users is a getter for Users repository.
Users() Users
// Projects is a getter for Projects repository.
Projects() Projects
// ProjectMembers is a getter for ProjectMembers repository.
ProjectMembers() ProjectMembers
// ProjectInvitations is a getter for ProjectInvitations repository.
ProjectInvitations() ProjectInvitations
// APIKeys is a getter for APIKeys repository.
APIKeys() APIKeys
// RegistrationTokens is a getter for RegistrationTokens repository.
RegistrationTokens() RegistrationTokens
// ResetPasswordTokens is a getter for ResetPasswordTokens repository.
ResetPasswordTokens() ResetPasswordTokens
// WebappSessions is a getter for WebappSessions repository.
WebappSessions() consoleauth.WebappSessions
// AccountFreezeEvents is a getter for AccountFreezeEvents repository.
AccountFreezeEvents() AccountFreezeEvents
// WithTx is a method for executing transactions with retrying as necessary.
WithTx(ctx context.Context, fn func(ctx context.Context, tx DBTx) error) error
}
// DBTx extends Database with transaction scope.
type DBTx interface {
DB
// Commit is a method for committing and closing transaction.
Commit() error
// Rollback is a method for rollback and closing transaction.
Rollback() error
}