focalboard/server/services/store/store.go

45 lines
1.7 KiB
Go
Raw Normal View History

//go:generate mockgen -destination=mockstore/mockstore.go -package mockstore . Store
2020-10-16 19:20:43 +02:00
package store
import "github.com/mattermost/mattermost-octo-tasks/server/model"
// Store represents the abstraction of the data storage.
2020-10-16 19:20:43 +02:00
type Store interface {
GetBlocksWithParentAndType(parentID string, blockType string) ([]model.Block, error)
GetBlocksWithParent(parentID string) ([]model.Block, error)
GetBlocksWithType(blockType string) ([]model.Block, error)
2020-11-12 19:16:59 +01:00
GetSubTree2(blockID string) ([]model.Block, error)
GetSubTree3(blockID string) ([]model.Block, error)
2020-10-16 19:20:43 +02:00
GetAllBlocks() ([]model.Block, error)
2021-01-13 03:49:08 +01:00
GetRootID(blockID string) (string, error)
2020-10-16 19:20:43 +02:00
GetParentID(blockID string) (string, error)
InsertBlock(block model.Block) error
2021-01-12 20:16:25 +01:00
DeleteBlock(blockID string, modifiedBy string) error
2021-01-13 00:35:30 +01:00
Shutdown() error
2021-01-13 00:35:30 +01:00
GetSystemSettings() (map[string]string, error)
SetSystemSetting(key string, value string) error
2021-01-13 00:35:30 +01:00
2021-01-14 01:56:01 +01:00
GetActiveUserCount() (int, error)
2020-11-06 16:46:35 +01:00
GetUserById(userID string) (*model.User, error)
GetUserByEmail(email string) (*model.User, error)
GetUserByUsername(username string) (*model.User, error)
CreateUser(user *model.User) error
UpdateUser(user *model.User) error
2021-01-13 00:35:30 +01:00
2020-12-07 17:04:35 +01:00
GetSession(token string, expireTime int64) (*model.Session, error)
2020-12-02 21:12:14 +01:00
CreateSession(session *model.Session) error
RefreshSession(session *model.Session) error
UpdateSession(session *model.Session) error
DeleteSession(sessionId string) error
2020-12-07 17:04:35 +01:00
CleanUpSessions(expireTime int64) error
2021-01-13 00:35:30 +01:00
UpsertSharing(sharing model.Sharing) error
GetSharing(rootID string) (*model.Sharing, error)
2021-01-14 01:56:01 +01:00
UpsertWorkspaceSignupToken(workspace model.Workspace) error
UpsertWorkspaceSettings(workspace model.Workspace) error
GetWorkspace(ID string) (*model.Workspace, error)
2020-10-16 19:20:43 +02:00
}