46fdbf9048
* Initial Boards+Channels implementation * Adding draft code to list the boards in a channel * Adding the hability to link/unlink channels (fake channel for now) * Simplify slight the migrations * WIP * More changes to improve the implementation * Adding partial implementation of linking channel from board * Allow linking in both directions * Removing unused file * More work on channel binding * some refactoring * Improving code quality and interface * More improvements * Changing the API to search channels * Adding a limit of 10 channels in search * Add confirmation on linking public channels * Improve a bit the styling of the confirmation modal * Showing the current linked channel * Adding link board confirmation to channel interface * Fixing tests and linter errors * Fixing backend tests * Adding permissions tests * Fixing linter errors * Fixing small things * Fixing some typescript errors * Adding new boardSelectorItem tests * Improving a bit tests * Adding jest unit tests * Remove duplicated implementation (from merge, I guess) * Adding missed files * Addressing some of the PR review comments * Removing unneeded new wrapIntl implementation * Moving NotSupportedError to the store package to be share between all the store implementations or layers * Fixing one of the pendings ToDo * Creating a constructor for the NotSupportedError * Fixing linter error
137 lines
3.7 KiB
Go
137 lines
3.7 KiB
Go
package sqlstore
|
|
|
|
import (
|
|
"database/sql"
|
|
"net/url"
|
|
|
|
"github.com/mattermost/mattermost-server/v6/plugin"
|
|
|
|
sq "github.com/Masterminds/squirrel"
|
|
|
|
"github.com/mattermost/focalboard/server/model"
|
|
"github.com/mattermost/focalboard/server/services/store"
|
|
"github.com/mattermost/mattermost-plugin-api/cluster"
|
|
|
|
mmModel "github.com/mattermost/mattermost-server/v6/model"
|
|
"github.com/mattermost/mattermost-server/v6/shared/mlog"
|
|
)
|
|
|
|
// SQLStore is a SQL database.
|
|
type SQLStore struct {
|
|
db *sql.DB
|
|
dbType string
|
|
tablePrefix string
|
|
connectionString string
|
|
isPlugin bool
|
|
isSingleUser bool
|
|
logger *mlog.Logger
|
|
NewMutexFn MutexFactory
|
|
pluginAPI *plugin.API
|
|
isBinaryParam bool
|
|
}
|
|
|
|
// MutexFactory is used by the store in plugin mode to generate
|
|
// a cluster mutex.
|
|
type MutexFactory func(name string) (*cluster.Mutex, error)
|
|
|
|
// New creates a new SQL implementation of the store.
|
|
func New(params Params) (*SQLStore, error) {
|
|
if err := params.CheckValid(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
params.Logger.Info("connectDatabase", mlog.String("dbType", params.DBType))
|
|
store := &SQLStore{
|
|
// TODO: add replica DB support too.
|
|
db: params.DB,
|
|
dbType: params.DBType,
|
|
tablePrefix: params.TablePrefix,
|
|
connectionString: params.ConnectionString,
|
|
logger: params.Logger,
|
|
isPlugin: params.IsPlugin,
|
|
isSingleUser: params.IsSingleUser,
|
|
NewMutexFn: params.NewMutexFn,
|
|
pluginAPI: params.PluginAPI,
|
|
}
|
|
|
|
var err error
|
|
store.isBinaryParam, err = store.computeBinaryParam()
|
|
if err != nil {
|
|
params.Logger.Error(`Cannot compute binary parameter`, mlog.Err(err))
|
|
return nil, err
|
|
}
|
|
|
|
err = store.Migrate()
|
|
if err != nil {
|
|
params.Logger.Error(`Table creation / migration failed`, mlog.Err(err))
|
|
|
|
return nil, err
|
|
}
|
|
return store, nil
|
|
}
|
|
|
|
// computeBinaryParam returns whether the data source uses binary_parameters
|
|
// when using Postgres.
|
|
func (s *SQLStore) computeBinaryParam() (bool, error) {
|
|
if s.dbType != model.PostgresDBType {
|
|
return false, nil
|
|
}
|
|
|
|
url, err := url.Parse(s.connectionString)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return url.Query().Get("binary_parameters") == "yes", nil
|
|
}
|
|
|
|
// Shutdown close the connection with the store.
|
|
func (s *SQLStore) Shutdown() error {
|
|
return s.db.Close()
|
|
}
|
|
|
|
// DBHandle returns the raw sql.DB handle.
|
|
// It is used by the mattermostauthlayer to run their own
|
|
// raw SQL queries.
|
|
func (s *SQLStore) DBHandle() *sql.DB {
|
|
return s.db
|
|
}
|
|
|
|
// DBType returns the DB driver used for the store.
|
|
func (s *SQLStore) DBType() string {
|
|
return s.dbType
|
|
}
|
|
|
|
func (s *SQLStore) getQueryBuilder(db sq.BaseRunner) sq.StatementBuilderType {
|
|
builder := sq.StatementBuilder
|
|
if s.dbType == model.PostgresDBType || s.dbType == model.SqliteDBType {
|
|
builder = builder.PlaceholderFormat(sq.Dollar)
|
|
}
|
|
|
|
return builder.RunWith(db)
|
|
}
|
|
|
|
func (s *SQLStore) escapeField(fieldName string) string {
|
|
if s.dbType == model.MysqlDBType {
|
|
return "`" + fieldName + "`"
|
|
}
|
|
if s.dbType == model.PostgresDBType || s.dbType == model.SqliteDBType {
|
|
return "\"" + fieldName + "\""
|
|
}
|
|
return fieldName
|
|
}
|
|
|
|
func (s *SQLStore) getLicense(db sq.BaseRunner) *mmModel.License {
|
|
return nil
|
|
}
|
|
|
|
func (s *SQLStore) getCloudLimits(db sq.BaseRunner) (*mmModel.ProductLimits, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (s *SQLStore) searchUserChannels(db sq.BaseRunner, teamID, userID, query string) ([]*mmModel.Channel, error) {
|
|
return nil, store.NewNotSupportedError("search user channels not supported on standalone mode")
|
|
}
|
|
|
|
func (s *SQLStore) getChannel(db sq.BaseRunner, teamID, channel string) (*mmModel.Channel, error) {
|
|
return nil, store.NewNotSupportedError("get channel not supported on standalone mode")
|
|
}
|