2020-04-10 04:40:22 +02:00
|
|
|
package graph
|
|
|
|
|
|
|
|
import (
|
2020-04-20 05:02:55 +02:00
|
|
|
"context"
|
2020-08-01 03:01:14 +02:00
|
|
|
"errors"
|
2020-04-10 04:40:22 +02:00
|
|
|
"net/http"
|
2020-04-11 04:22:22 +02:00
|
|
|
"os"
|
2020-08-01 03:01:14 +02:00
|
|
|
"reflect"
|
2020-04-11 04:22:22 +02:00
|
|
|
"time"
|
2020-04-10 04:40:22 +02:00
|
|
|
|
2020-08-01 03:01:14 +02:00
|
|
|
"github.com/99designs/gqlgen/graphql"
|
2020-04-11 04:22:22 +02:00
|
|
|
"github.com/99designs/gqlgen/graphql/handler"
|
|
|
|
"github.com/99designs/gqlgen/graphql/handler/extension"
|
|
|
|
"github.com/99designs/gqlgen/graphql/handler/lru"
|
|
|
|
"github.com/99designs/gqlgen/graphql/handler/transport"
|
|
|
|
"github.com/99designs/gqlgen/graphql/playground"
|
2020-04-20 05:02:55 +02:00
|
|
|
"github.com/google/uuid"
|
2020-08-07 03:50:35 +02:00
|
|
|
"github.com/jordanknott/taskcafe/internal/auth"
|
|
|
|
"github.com/jordanknott/taskcafe/internal/db"
|
2020-08-22 06:08:30 +02:00
|
|
|
"github.com/jordanknott/taskcafe/internal/utils"
|
2020-08-01 03:01:14 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2020-04-10 04:40:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewHandler returns a new graphql endpoint handler.
|
2020-08-13 05:17:42 +02:00
|
|
|
func NewHandler(repo db.Repository) http.Handler {
|
2020-08-01 03:01:14 +02:00
|
|
|
c := Config{
|
2020-04-10 04:40:22 +02:00
|
|
|
Resolvers: &Resolver{
|
|
|
|
Repository: repo,
|
|
|
|
},
|
2020-08-01 03:01:14 +02:00
|
|
|
}
|
|
|
|
c.Directives.HasRole = func(ctx context.Context, obj interface{}, next graphql.Resolver, roles []RoleLevel, level ActionLevel, typeArg ObjectType) (interface{}, error) {
|
|
|
|
role, ok := GetUserRole(ctx)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("user ID is missing")
|
|
|
|
}
|
|
|
|
if role == "admin" {
|
|
|
|
return next(ctx)
|
|
|
|
} else if level == ActionLevelOrg {
|
|
|
|
return nil, errors.New("must be an org admin")
|
|
|
|
}
|
|
|
|
|
|
|
|
var subjectID uuid.UUID
|
|
|
|
in := graphql.GetResolverContext(ctx).Args["input"]
|
|
|
|
if typeArg == ObjectTypeProject || typeArg == ObjectTypeTeam {
|
|
|
|
val := reflect.ValueOf(in) // could be any underlying type
|
|
|
|
fieldName := "ProjectID"
|
|
|
|
if typeArg == ObjectTypeTeam {
|
|
|
|
fieldName = "TeamID"
|
|
|
|
}
|
|
|
|
subjectID, ok = val.FieldByName(fieldName).Interface().(uuid.UUID)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("error while casting subject uuid")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if level == ActionLevelProject {
|
|
|
|
roles, err := GetProjectRoles(ctx, repo, subjectID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if roles.TeamRole == "admin" || roles.ProjectRole == "admin" {
|
|
|
|
log.WithFields(log.Fields{"teamRole": roles.TeamRole, "projectRole": roles.ProjectRole}).Info("is team or project role")
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
return nil, errors.New("must be a team or project admin")
|
|
|
|
} else if level == ActionLevelTeam {
|
|
|
|
userID, ok := GetUserID(ctx)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("user id is missing")
|
|
|
|
}
|
|
|
|
role, err := repo.GetTeamRoleForUserID(ctx, db.GetTeamRoleForUserIDParams{UserID: userID, TeamID: subjectID})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if role.RoleCode == "admin" {
|
|
|
|
return next(ctx)
|
|
|
|
}
|
|
|
|
return nil, errors.New("must be a team admin")
|
|
|
|
|
|
|
|
}
|
|
|
|
return nil, errors.New("invalid path")
|
|
|
|
}
|
|
|
|
srv := handler.New(NewExecutableSchema(c))
|
2020-04-11 04:22:22 +02:00
|
|
|
srv.AddTransport(transport.Websocket{
|
|
|
|
KeepAlivePingInterval: 10 * time.Second,
|
|
|
|
})
|
|
|
|
srv.AddTransport(transport.Options{})
|
|
|
|
srv.AddTransport(transport.GET{})
|
|
|
|
srv.AddTransport(transport.POST{})
|
|
|
|
srv.AddTransport(transport.MultipartForm{})
|
|
|
|
|
|
|
|
srv.SetQueryCache(lru.New(1000))
|
|
|
|
|
|
|
|
srv.Use(extension.AutomaticPersistedQuery{
|
|
|
|
Cache: lru.New(100),
|
|
|
|
})
|
|
|
|
if isProd := os.Getenv("PRODUCTION") == "true"; isProd {
|
|
|
|
srv.Use(extension.FixedComplexityLimit(10))
|
|
|
|
} else {
|
|
|
|
srv.Use(extension.Introspection{})
|
|
|
|
}
|
|
|
|
return srv
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewPlaygroundHandler returns a new GraphQL Playground handler.
|
|
|
|
func NewPlaygroundHandler(endpoint string) http.Handler {
|
2020-04-11 04:22:22 +02:00
|
|
|
return playground.Handler("GraphQL Playground", endpoint)
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
2020-07-17 02:40:23 +02:00
|
|
|
|
2020-08-21 01:11:24 +02:00
|
|
|
// GetUserID retrieves the UserID out of a context
|
2020-04-20 05:02:55 +02:00
|
|
|
func GetUserID(ctx context.Context) (uuid.UUID, bool) {
|
2020-08-22 06:08:30 +02:00
|
|
|
userID, ok := ctx.Value(utils.UserIDKey).(uuid.UUID)
|
2020-04-20 05:02:55 +02:00
|
|
|
return userID, ok
|
|
|
|
}
|
2020-08-21 01:11:24 +02:00
|
|
|
|
|
|
|
// GetUserRole retrieves the user role out of a context
|
2020-08-01 03:01:14 +02:00
|
|
|
func GetUserRole(ctx context.Context) (auth.Role, bool) {
|
2020-08-22 06:08:30 +02:00
|
|
|
role, ok := ctx.Value(utils.OrgRoleKey).(auth.Role)
|
2020-08-01 03:01:14 +02:00
|
|
|
return role, ok
|
|
|
|
}
|
|
|
|
|
2020-08-21 01:11:24 +02:00
|
|
|
// GetUser retrieves both the user id & user role out of a context
|
2020-08-01 03:01:14 +02:00
|
|
|
func GetUser(ctx context.Context) (uuid.UUID, auth.Role, bool) {
|
|
|
|
userID, userOK := GetUserID(ctx)
|
|
|
|
role, roleOK := GetUserRole(ctx)
|
|
|
|
return userID, role, userOK && roleOK
|
|
|
|
}
|
2020-07-17 02:40:23 +02:00
|
|
|
|
2020-08-21 01:11:24 +02:00
|
|
|
// GetRestrictedMode retrieves the restricted mode code out of a context
|
2020-07-17 02:40:23 +02:00
|
|
|
func GetRestrictedMode(ctx context.Context) (auth.RestrictedMode, bool) {
|
2020-08-22 06:08:30 +02:00
|
|
|
restricted, ok := ctx.Value(utils.RestrictedModeKey).(auth.RestrictedMode)
|
2020-07-17 02:40:23 +02:00
|
|
|
return restricted, ok
|
|
|
|
}
|
2020-08-01 03:01:14 +02:00
|
|
|
|
2020-08-21 01:11:24 +02:00
|
|
|
// GetProjectRoles retrieves the team & project role for the given project ID
|
2020-08-01 03:01:14 +02:00
|
|
|
func GetProjectRoles(ctx context.Context, r db.Repository, projectID uuid.UUID) (db.GetUserRolesForProjectRow, error) {
|
|
|
|
userID, ok := GetUserID(ctx)
|
|
|
|
if !ok {
|
|
|
|
return db.GetUserRolesForProjectRow{}, errors.New("user ID is not found")
|
|
|
|
}
|
|
|
|
return r.GetUserRolesForProject(ctx, db.GetUserRolesForProjectParams{UserID: userID, ProjectID: projectID})
|
|
|
|
}
|
|
|
|
|
2020-08-21 01:11:24 +02:00
|
|
|
// ConvertToRoleCode converts a role code string to a RoleCode type
|
2020-08-01 03:01:14 +02:00
|
|
|
func ConvertToRoleCode(r string) RoleCode {
|
|
|
|
if r == RoleCodeAdmin.String() {
|
|
|
|
return RoleCodeAdmin
|
|
|
|
}
|
|
|
|
if r == RoleCodeMember.String() {
|
|
|
|
return RoleCodeMember
|
|
|
|
}
|
|
|
|
return RoleCodeObserver
|
|
|
|
}
|