2020-10-21 09:56:03 +02:00
|
|
|
//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"
|
|
|
|
|
2020-10-22 15:22:36 +02:00
|
|
|
// 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
|
|
|
|
2020-10-16 22:26:47 +02:00
|
|
|
Shutdown() error
|
2021-01-13 00:35:30 +01:00
|
|
|
|
2020-10-19 14:55:20 +02: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-20 22:52:25 +01:00
|
|
|
UpdateUserPassword(username string, password string) error
|
2021-01-21 19:16:40 +01:00
|
|
|
UpdateUserPasswordByID(userID string, password string) 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
|
|
|
}
|