From b3bbf71c228160cf12f4034c9e196d4b29537bde Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Sat, 14 Oct 2023 15:31:18 -0600 Subject: [PATCH] Removed unused functions --- gql.go | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/gql.go b/gql.go index 21831d4..3a5c8d7 100644 --- a/gql.go +++ b/gql.go @@ -39,25 +39,6 @@ import ( "github.com/google/uuid" ) -func AuthorizationHeader(node *Node) (string, error) { - key_ser, err := x509.MarshalPKCS8PrivateKey(node.Key) - if err != nil { - return "", err - } - - id_bytes, err := node.ID.MarshalBinary() - if err != nil { - return "", err - } - id_str := base64.StdEncoding.EncodeToString(id_bytes) - key_str := base64.StdEncoding.EncodeToString(key_ser) - - bytes := append([]byte(id_str), ':') - bytes = append(bytes, []byte(key_str)...) - - return base64.StdEncoding.EncodeToString(bytes), nil -} - func NodeInterfaceDefaultIsType(required_extensions []ExtType) func(graphql.IsTypeOfParams) bool { return func(p graphql.IsTypeOfParams) bool { ctx, ok := p.Context.Value("resolve").(*ResolveContext) @@ -322,24 +303,6 @@ func (e GQLUnauthorized) MarshalJSON() ([]byte, error) { }, "", " ") } -func checkForAuthHeader(header http.Header) (string, bool) { - auths, ok := header["Authorization"] - if ok == false { - return "", false - } - for _, auth := range(auths) { - parts := strings.SplitN(auth, " ", 2) - if len(parts) != 2 { - continue - } - if parts[0] == "TM" { - return parts[1], true - } - } - - return "", false -} - // Context passed to each resolve execution type ResolveContext struct { // Resolution ID