61a8af8f34
Co-authored-by: Paul Esch-Laurent <paul.esch-laurent@mattermost.com> Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
78 lines
2.5 KiB
Go
78 lines
2.5 KiB
Go
package app
|
|
|
|
import (
|
|
"github.com/mattermost/focalboard/server/model"
|
|
mmModel "github.com/mattermost/mattermost-server/v6/model"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (a *App) GetTeamBoardsInsights(userID string, teamID string, opts *mmModel.InsightsOpts) (*model.BoardInsightsList, error) {
|
|
// check if server is properly licensed, and user is not a guest
|
|
userPermitted, err := insightPermissionGate(a, userID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !userPermitted {
|
|
return nil, errors.New("User isn't authorized to access insights.")
|
|
}
|
|
boardIDs, err := getUserBoards(userID, teamID, a)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return a.store.GetTeamBoardsInsights(teamID, userID, opts.StartUnixMilli, opts.Page*opts.PerPage, opts.PerPage, boardIDs)
|
|
}
|
|
|
|
func (a *App) GetUserBoardsInsights(userID string, teamID string, opts *mmModel.InsightsOpts) (*model.BoardInsightsList, error) {
|
|
// check if server is properly licensed, and user is not a guest
|
|
userPermitted, err := insightPermissionGate(a, userID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !userPermitted {
|
|
return nil, errors.New("User isn't authorized to access insights.")
|
|
}
|
|
boardIDs, err := getUserBoards(userID, teamID, a)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return a.store.GetUserBoardsInsights(teamID, userID, opts.StartUnixMilli, opts.Page*opts.PerPage, opts.PerPage, boardIDs)
|
|
}
|
|
|
|
func insightPermissionGate(a *App, userID string) (bool, error) {
|
|
licenseError := errors.New("invalid license/authorization to use insights API")
|
|
guestError := errors.New("guests aren't authorized to use insights API")
|
|
lic := a.store.GetLicense()
|
|
if lic == nil {
|
|
a.logger.Debug("Deployment doesn't have a license")
|
|
return false, licenseError
|
|
}
|
|
user, err := a.store.GetUserByID(userID)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if lic.SkuShortName != mmModel.LicenseShortSkuProfessional && lic.SkuShortName != mmModel.LicenseShortSkuEnterprise {
|
|
return false, licenseError
|
|
}
|
|
if user.IsGuest {
|
|
return false, guestError
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
func (a *App) GetUserTimezone(userID string) (string, error) {
|
|
return a.store.GetUserTimezone(userID)
|
|
}
|
|
|
|
func getUserBoards(userID string, teamID string, a *App) ([]string, error) {
|
|
// get boards accessible by user and filter boardIDs
|
|
boards, err := a.store.GetBoardsForUserAndTeam(userID, teamID, true)
|
|
if err != nil {
|
|
return nil, errors.New("error getting boards for user")
|
|
}
|
|
boardIDs := make([]string, 0, len(boards))
|
|
|
|
for _, board := range boards {
|
|
boardIDs = append(boardIDs, board.ID)
|
|
}
|
|
return boardIDs, nil
|
|
}
|