s3browser-backend/internal/gql/schema.go

275 lines
6.7 KiB
Go
Raw Normal View History

2021-09-24 13:39:23 +00:00
package gql
2021-07-26 12:52:36 +00:00
import (
"fmt"
"github.com/graph-gophers/dataloader"
"github.com/graphql-go/graphql"
2021-08-12 15:48:28 +00:00
2021-09-24 13:39:23 +00:00
helper "git.kapelle.org/niklas/s3browser/internal/helper"
types "git.kapelle.org/niklas/s3browser/internal/types"
2021-08-12 15:48:28 +00:00
log "github.com/sirupsen/logrus"
2021-07-26 12:52:36 +00:00
)
2021-09-24 13:39:23 +00:00
//GraphqlSchema generate the schema with its root query and mutation
func GraphqlSchema() (graphql.Schema, error) {
2021-07-26 12:52:36 +00:00
2021-08-06 23:19:36 +00:00
queryFields := graphql.Fields{
2021-07-26 12:52:36 +00:00
"files": &graphql.Field{
2021-08-10 09:22:10 +00:00
Type: graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphqlFileType))),
2021-07-26 12:52:36 +00:00
Args: graphql.FieldConfigArgument{
"path": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.String),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-07-26 12:52:36 +00:00
path, ok := p.Args["path"].(string)
if !ok {
return nil, nil
}
2021-08-12 15:48:28 +00:00
log.Debug("querry 'files': ", path)
2021-07-26 12:52:36 +00:00
loader := p.Context.Value("loader").(map[string]*dataloader.Loader)
thunk := loader["getFiles"].Load(p.Context, dataloader.StringKey(path))
return thunk()
},
},
"directorys": &graphql.Field{
2021-08-10 09:22:10 +00:00
Type: graphql.NewNonNull(graphql.NewList(graphql.NewNonNull(graphqlDirType))),
2021-07-26 12:52:36 +00:00
Args: graphql.FieldConfigArgument{
"path": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.String),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-07-26 12:52:36 +00:00
path, ok := p.Args["path"].(string)
if !ok {
return nil, nil
}
2021-08-12 15:48:28 +00:00
log.Debug("querry 'directorys': ", path)
2021-07-26 12:52:36 +00:00
loader := p.Context.Value("loader").(map[string]*dataloader.Loader)
thunk := loader["getDirs"].Load(p.Context, dataloader.StringKey(path))
return thunk()
},
},
"file": &graphql.Field{
Type: graphqlFileType,
Args: graphql.FieldConfigArgument{
"id": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-07-26 12:52:36 +00:00
id, ok := p.Args["id"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
2021-08-12 15:48:28 +00:00
log.Debug("querry 'file': ", id)
2021-09-24 13:39:23 +00:00
return types.File{
2021-07-26 12:52:36 +00:00
ID: id,
}, nil
},
},
"authorized": &graphql.Field{
Name: "authorized",
Type: graphql.NewNonNull(graphql.Boolean),
Description: "True if the user is authorized",
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
auth, _ := helper.IsAuth(p.Context)
return auth, nil
},
},
2021-07-26 12:52:36 +00:00
}
2021-08-06 23:19:36 +00:00
mutationFields := graphql.Fields{
"delete": &graphql.Field{
Type: graphql.String,
Args: graphql.FieldConfigArgument{
"id": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-08-06 23:19:36 +00:00
id, ok := p.Args["id"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
2021-08-12 15:48:28 +00:00
log.Debug("mutation 'delete': ", id)
2021-08-06 23:19:36 +00:00
return id, deleteMutation(p.Context, id)
},
},
"copy": &graphql.Field{
Type: graphqlFileType,
Args: graphql.FieldConfigArgument{
"src": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
"dest": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-08-06 23:19:36 +00:00
src, ok := p.Args["src"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
dest, ok := p.Args["dest"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
2021-08-12 15:48:28 +00:00
log.Debug("mutation 'copy': ", src, "-->", dest)
2021-08-06 23:19:36 +00:00
return copyMutation(p.Context, src, dest)
},
},
"move": &graphql.Field{
Type: graphqlFileType,
Args: graphql.FieldConfigArgument{
"src": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
"dest": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-08-06 23:19:36 +00:00
src, ok := p.Args["src"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
dest, ok := p.Args["dest"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
2021-08-12 15:48:28 +00:00
log.Debug("mutation 'move': ", src, "-->", dest)
2021-08-06 23:19:36 +00:00
return moveMutation(p.Context, src, dest)
},
},
2021-08-16 17:57:48 +00:00
"createDir": &graphql.Field{
Type: graphql.NewNonNull(graphqlDirType),
Args: graphql.FieldConfigArgument{
"path": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-08-16 17:57:48 +00:00
path, ok := p.Args["path"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
log.Debug("mutation 'createDir': ", path)
return createDirectory(p.Context, path)
},
},
2021-08-20 19:38:22 +00:00
"deleteDir": &graphql.Field{
Type: graphql.NewNonNull(graphql.String),
Args: graphql.FieldConfigArgument{
"path": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.ID),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
2021-09-24 13:39:23 +00:00
if is, err := helper.IsAuth(p.Context); !is {
2021-09-14 14:51:01 +00:00
return nil, err
}
2021-08-20 19:38:22 +00:00
path, ok := p.Args["path"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
log.Debug("mutation 'deleteDir': ", path)
return path, deleteDirectory(p.Context, path)
},
},
2021-09-14 13:16:37 +00:00
"login": &graphql.Field{
2021-09-14 14:22:32 +00:00
Type: graphql.NewNonNull(graphqlLoginResultType),
2021-09-14 13:16:37 +00:00
Args: graphql.FieldConfigArgument{
"username": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.String),
},
"password": &graphql.ArgumentConfig{
Type: graphql.NewNonNull(graphql.String),
},
},
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
username, ok := p.Args["username"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
password, ok := p.Args["password"].(string)
if !ok {
return nil, fmt.Errorf("Failed to parse args")
}
return login(p.Context, username, password)
},
},
2021-08-06 23:19:36 +00:00
}
2021-07-26 12:52:36 +00:00
rootQuery := graphql.ObjectConfig{
Name: "RootQuery",
2021-08-06 23:19:36 +00:00
Fields: queryFields,
}
rootMutation := graphql.ObjectConfig{
Name: "RootMutation",
Fields: mutationFields,
2021-07-26 12:52:36 +00:00
}
schemaConfig := graphql.SchemaConfig{
2021-08-06 23:19:36 +00:00
Query: graphql.NewObject(rootQuery),
Mutation: graphql.NewObject(rootMutation),
2021-07-26 12:52:36 +00:00
}
return graphql.NewSchema(schemaConfig)
}