1bd52b9f90
What: Adds macaroon support to the server side Why: So that api keys are now macaroons
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package consoleql
|
|
|
|
import (
|
|
"github.com/graphql-go/graphql"
|
|
|
|
"storj.io/storj/satellite/console"
|
|
)
|
|
|
|
const (
|
|
// APIKeyInfoType is graphql type name for api key
|
|
APIKeyInfoType = "keyInfo"
|
|
// CreateAPIKeyType is graphql type name for createAPIKey struct
|
|
// which incapsulates the actual key and it's info
|
|
CreateAPIKeyType = "graphqlCreateAPIKey"
|
|
// FieldKey is field name for the actual key in createAPIKey
|
|
FieldKey = "key"
|
|
)
|
|
|
|
// graphqlAPIKeyInfo creates satellite.APIKeyInfo graphql object
|
|
func graphqlAPIKeyInfo() *graphql.Object {
|
|
return graphql.NewObject(graphql.ObjectConfig{
|
|
Name: APIKeyInfoType,
|
|
Fields: graphql.Fields{
|
|
FieldID: &graphql.Field{
|
|
Type: graphql.String,
|
|
},
|
|
FieldProjectID: &graphql.Field{
|
|
Type: graphql.String,
|
|
},
|
|
FieldName: &graphql.Field{
|
|
Type: graphql.String,
|
|
},
|
|
FieldCreatedAt: &graphql.Field{
|
|
Type: graphql.DateTime,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
// graphqlCreateAPIKey creates createAPIKey graphql object
|
|
func graphqlCreateAPIKey(types *TypeCreator) *graphql.Object {
|
|
return graphql.NewObject(graphql.ObjectConfig{
|
|
Name: CreateAPIKeyType,
|
|
Fields: graphql.Fields{
|
|
FieldKey: &graphql.Field{
|
|
Type: graphql.String,
|
|
},
|
|
APIKeyInfoType: &graphql.Field{
|
|
Type: types.apiKeyInfo,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
// createAPIKey holds macaroon.APIKey and console.APIKeyInfo
|
|
type createAPIKey struct {
|
|
Key string
|
|
KeyInfo *console.APIKeyInfo
|
|
}
|