focalboard/server/services/store/sqlstore/sharing.go

71 lines
1.5 KiB
Go
Raw Normal View History

2021-01-13 00:35:30 +01:00
package sqlstore
import (
2021-01-26 23:13:46 +01:00
"github.com/mattermost/focalboard/server/model"
2021-03-26 19:01:54 +01:00
"github.com/mattermost/focalboard/server/services/store"
"github.com/mattermost/focalboard/server/utils"
2021-01-13 00:35:30 +01:00
sq "github.com/Masterminds/squirrel"
)
2021-03-26 19:01:54 +01:00
func (s *SQLStore) UpsertSharing(c store.Container, sharing model.Sharing) error {
now := utils.GetMillis()
2021-01-13 00:35:30 +01:00
query := s.getQueryBuilder().
2021-04-17 09:06:57 +02:00
Insert(s.tablePrefix+"sharing").
2021-01-13 00:35:30 +01:00
Columns(
"id",
"enabled",
"token",
"modified_by",
"update_at",
).
Values(
sharing.ID,
sharing.Enabled,
sharing.Token,
sharing.ModifiedBy,
now,
)
if s.dbType == mysqlDBType {
query = query.Suffix("ON DUPLICATE KEY UPDATE enabled = ?, token = ?, modified_by = ?, update_at = ?",
sharing.Enabled, sharing.Token, sharing.ModifiedBy, now)
} else {
query = query.Suffix(
`ON CONFLICT (id)
DO UPDATE SET enabled = EXCLUDED.enabled, token = EXCLUDED.token, modified_by = EXCLUDED.modified_by, update_at = EXCLUDED.update_at`,
)
}
2021-01-13 00:35:30 +01:00
_, err := query.Exec()
return err
}
2021-03-26 19:01:54 +01:00
func (s *SQLStore) GetSharing(c store.Container, rootID string) (*model.Sharing, error) {
2021-01-13 00:35:30 +01:00
query := s.getQueryBuilder().
Select(
"id",
"enabled",
"token",
"modified_by",
"update_at",
).
2021-04-17 09:06:57 +02:00
From(s.tablePrefix + "sharing").
2021-01-13 00:35:30 +01:00
Where(sq.Eq{"id": rootID})
row := query.QueryRow()
sharing := model.Sharing{}
err := row.Scan(
&sharing.ID,
&sharing.Enabled,
&sharing.Token,
&sharing.ModifiedBy,
&sharing.UpdateAt,
)
if err != nil {
return nil, err
}
return &sharing, nil
}