internal/commands/interceptor/instance.go (127 lines of code) (raw):

// Licensed to Apache Software Foundation (ASF) under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Apache Software Foundation (ASF) licenses this file to you under // the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package interceptor import ( "encoding/base64" "fmt" "strings" "github.com/urfave/cli/v2" ) const ( instanceIDFlagName = "instance-id" instanceNameFlagName = "instance-name" destInstanceIDFlagName = "dest-instance-id" destInstanceNameFlagName = "dest-instance-name" InstanceIDListFlagName = "instance-id-list" instanceNameListFlagName = "instance-name-list" ) // ParseInstance parses the service instance id or service instance name, // and converts the present one to the missing one. // See flags.InstanceFlags. func ParseInstance(required bool) func(*cli.Context) error { return func(ctx *cli.Context) error { if err := ParseService(required)(ctx); err != nil { return err } return parseInstance(required, instanceIDFlagName, instanceNameFlagName, serviceIDFlagName)(ctx) } } // ParseInstanceList parses the service instance id slice or service instance name slice, // and converts the present one to the missing one. // See flags.InstanceSliceFlags. func ParseInstanceList(required bool) func(*cli.Context) error { return func(ctx *cli.Context) error { if err := ParseService(required)(ctx); err != nil { return err } return parseInstanceList(required, InstanceIDListFlagName, instanceNameListFlagName, serviceIDFlagName)(ctx) } } // ParseInstanceRelation parses the source and destination service instance id or service instance name, // and converts the present one to the missing one respectively. // See flags.InstanceRelationFlags. func ParseInstanceRelation(required bool) func(*cli.Context) error { return func(ctx *cli.Context) error { if err := ParseService(required)(ctx); err != nil { return err } if err := ParseInstance(required)(ctx); err != nil { return err } return parseInstance(required, destInstanceIDFlagName, destInstanceNameFlagName, destServiceIDFlagName)(ctx) } } func parseInstance(required bool, idFlagName, nameFlagName, serviceIDFlagName string) func(*cli.Context) error { return func(ctx *cli.Context) error { id := ctx.String(idFlagName) name := ctx.String(nameFlagName) serviceID := ctx.String(serviceIDFlagName) if id == "" && name == "" { if required { return fmt.Errorf(`either flags "--%s" or "--%s" must be given`, idFlagName, nameFlagName) } return nil } id, name, err := encode(serviceID, nameFlagName, id, name) if err != nil { return err } if err := ctx.Set(idFlagName, id); err != nil { return err } return ctx.Set(nameFlagName, name) } } func parseInstanceList(required bool, idListFlagName, nameListFlagName, serviceIDFlagName string) func(*cli.Context) error { return func(ctx *cli.Context) error { idsArg := ctx.String(idListFlagName) namesArgs := ctx.String(nameListFlagName) serviceID := ctx.String(serviceIDFlagName) if idsArg == "" && namesArgs == "" { if required { return fmt.Errorf(`either flags "--%s" or "--%s" must be given`, idListFlagName, nameListFlagName) } return nil } ids := strings.Split(idsArg, ",") names := strings.Split(namesArgs, ",") var sliceSize int if l := len(ids); idsArg != "" && l != 0 { sliceSize = l } else { sliceSize = len(names) } instanceIDSlice := make([]string, sliceSize) instanceNameSlice := make([]string, sliceSize) for i := 0; i < sliceSize; i++ { id := "" name := "" if len(ids) > i { id = ids[i] } if len(names) > i { name = names[i] } id, name, err := encode(serviceID, nameListFlagName, id, name) if err != nil { return err } instanceIDSlice[i] = id instanceNameSlice[i] = name } instanceIDSliceString := strings.Join(instanceIDSlice, ",") instanceNameSliceString := strings.Join(instanceNameSlice, ",") if err := ctx.Set(idListFlagName, instanceIDSliceString); err != nil { return err } return ctx.Set(nameListFlagName, instanceNameSliceString) } } func encode(serviceID, nameFlagName, id, name string) (encodedID, encodedName string, err error) { if id != "" { parts := strings.Split(id, "_") if len(parts) != 2 { return "", "", fmt.Errorf("invalid instance id, cannot be splitted into 2 parts. %v", id) } s, err := base64.StdEncoding.DecodeString(parts[1]) if err != nil { return "", "", err } name = string(s) } else if name != "" { if serviceID == "" { return "", "", fmt.Errorf(`"--%s" is specified but its related service name or id is not given`, nameFlagName) } id = serviceID + "_" + b64enc(name) } return id, name, nil }